* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --sage: #4a5c50;
    --sage-light: #6b8275;
    --sage-bg: #f1f5f0;
    --cream: #faf8f5;
    --warm: #f6f1ea;
    --ink: #1a1f1c;
    --text: #4a4f4c;
    --text-light: #8a8f8c;
    --border: #e0ddd7;
    --font-heading: 'Fraunces', serif;
    --white: #fff;
    --black: #000;

    /* WhatsApp colors */
    --wa-green: #25d366;
    --wa-teal: #075e54;
    --wa-light-green: #dcf8c6;
    --wa-chat-bg: #efeae2;
    --wa-header-bg: #075e54;
    --wa-input-bg: #f0f0f0;
    --wa-time: #667781;
    --wa-check: #53bdeb;

    /* Phone frame */
    --phone-frame: #7a756f;
    --phone-frame-light: #918b85;
    --phone-frame-dark: #8a8680;
    --phone-frame-mid: #6b6560;
    --phone-btn-shadow: #827c76;

    /* Shadows */
    --shadow-md: 0 12px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.06);

    /* UI colors */
    --google-blue: #1a73e8;
    --error-bg: #fef2f0;
}

html { scroll-behavior: smooth; }

/* Keyboard navigation focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
    border-radius: 4px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
}

h1, h2, h3, .logo, .trust-item .num, .step-num,
.pricing-card .plan-name, .pricing-card .price,
.footer-brand .logo-footer {
    font-family: var(--font-heading);
}

/* Header */
header {
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
}
.logo {
    font-weight: 600; font-size: 22px;
    color: var(--ink);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
}
nav { display: flex; align-items: center; gap: 32px; }
nav a {
    text-decoration: none; color: var(--text-light);
    font-size: 14px; font-weight: 500;
}
nav a:hover { color: var(--sage); }
.btn-sage {
    background: var(--sage); color: var(--white);
    padding: 10px 28px; border-radius: 24px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.3s;
}
.btn-sage:hover { background: var(--sage-light); }
.btn-sage svg { width: 18px; height: 18px; fill: var(--white); }
.btn-outline {
    border: 1.5px solid var(--sage); color: var(--sage);
    background: transparent;
    padding: 9px 24px; border-radius: 24px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--sage); color: var(--white);
}

/* Language switcher */
.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--warm);
    border-radius: 20px;
    padding: 3px;
}
.lang-option {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.2s;
}
.lang-option.active {
    background: var(--sage);
    color: var(--white);
}
.lang-option:hover:not(.active) {
    color: var(--ink);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer;
    width: 32px; height: 32px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    z-index: 101;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--ink);
    transition: 0.3s;
    display: block;
}

/* HERO */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--sage);
    font-size: 13px; font-weight: 600;
    margin-bottom: 20px;
}
.hero-label .dot {
    width: 6px; height: 6px;
    background: var(--sage);
    border-radius: 50%;
}
.hero h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    color: var(--sage);
}
.hero-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
}
.hero-btns { display: flex; gap: 16px; align-items: center; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--sage); color: var(--white);
    padding: 16px 36px; border-radius: 28px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: all 0.3s;
    border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sage-light); }
.btn-text {
    color: var(--sage);
    text-decoration: none;
    font-weight: 600; font-size: 15px;
}
.btn-text:hover { text-decoration: underline; }
.hero-badges {
    display: flex; gap: 20px; margin-top: 28px;
    flex-wrap: wrap;
}
.hero-badges span {
    font-size: 13px; color: var(--text-light);
    display: flex; align-items: center; gap: 6px;
}
.hero-badges .ch { color: var(--sage); font-weight: 700; }

/* iPhone 17 Pro mockup */
.hero-visual {
    position: relative;
}
.iphone {
    width: 300px;
    margin: 0 auto;
    position: relative;
}
.iphone-frame {
    background: linear-gradient(145deg, var(--phone-frame-dark), var(--phone-frame-mid), var(--phone-frame-dark));
    border-radius: 48px;
    padding: 3px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.2),
        0 2px 4px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
}
.iphone-frame::before {
    content: '';
    position: absolute;
    right: -2px; top: 140px;
    width: 3px; height: 56px;
    background: linear-gradient(180deg, var(--phone-frame), var(--phone-frame-light), var(--phone-frame));
    border-radius: 0 2px 2px 0;
}
.iphone-frame::after {
    content: '';
    position: absolute;
    left: -2px; top: 120px;
    width: 3px; height: 36px;
    background: linear-gradient(180deg, var(--phone-frame), var(--phone-frame-light), var(--phone-frame));
    border-radius: 2px 0 0 2px;
    box-shadow: 0 48px 0 0 var(--phone-btn-shadow);
}
.iphone-body {
    background: var(--black);
    border-radius: 46px;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.iphone-screen {
    background: var(--white);
    margin: 0;
    min-height: 580px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    position: relative;
    z-index: 2;
    height: 54px;
}
.status-bar .time {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.status-bar .icons {
    display: flex;
    align-items: center;
    gap: 6px;
}
.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 1.5px;
    height: 11px;
    margin-left: 2px;
}
.signal-bars .bar {
    width: 3px;
    background: var(--black);
    border-radius: 0.5px;
}
.signal-bars .bar:nth-child(1) { height: 4px; }
.signal-bars .bar:nth-child(2) { height: 6px; }
.signal-bars .bar:nth-child(3) { height: 8px; }
.signal-bars .bar:nth-child(4) { height: 11px; }
.battery {
    display: flex;
    align-items: center;
    gap: 1px;
}
.battery-body {
    width: 24px; height: 12px;
    border: 1.5px solid var(--black);
    border-radius: 3px;
    padding: 1.5px;
    position: relative;
}
.battery-body::after {
    content: '';
    position: absolute;
    right: -4px; top: 50%;
    transform: translateY(-50%);
    width: 2px; height: 5px;
    background: var(--black);
    border-radius: 0 1px 1px 0;
}
.battery-level {
    width: 75%;
    height: 100%;
    background: var(--black);
    border-radius: 1px;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 34px;
    background: var(--black);
    border-radius: 20px;
    z-index: 3;
}

/* WhatsApp UI */
.wa-navbar {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: var(--wa-teal);
    gap: 8px;
}
.wa-back {
    display: flex; align-items: center;
    gap: 2px;
}
.wa-back svg { width: 10px; height: 16px; }
.wa-avatar {
    width: 32px; height: 32px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 600; font-size: 12px;
    flex-shrink: 0;
}
.wa-navbar-info {
    flex: 1;
}
.wa-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}
.wa-status {
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    line-height: 1.2;
}
.wa-actions {
    display: flex; gap: 14px; align-items: center;
}
.wa-actions svg { width: 18px; height: 18px; }

/* Chat area */
.wa-chat {
    flex: 1;
    background: var(--wa-chat-bg);
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}
.wa-date {
    align-self: center;
    background: rgba(255,255,255,0.9);
    color: var(--wa-time);
    font-size: 10.5px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.chat-bubble {
    padding: 5px 9px 3px;
    border-radius: 8px;
    font-size: 11.5px;
    line-height: 1.35;
    max-width: 84%;
    position: relative;
}
.chat-bot {
    background: var(--white);
    color: var(--black);
    border-top-left-radius: 0;
    align-self: flex-start;
}
.chat-user {
    background: var(--wa-light-green);
    color: var(--black);
    border-top-right-radius: 0;
    align-self: flex-end;
}
.msg-time {
    font-size: 9px;
    color: var(--wa-time);
    text-align: right;
    margin-top: 1px;
    line-height: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3px;
}
.msg-checks {
    display: inline-flex;
    color: var(--wa-check);
    font-size: 10px;
}
.maps-link {
    color: var(--google-blue);
    text-decoration: underline;
    font-size: 10px;
}
.bot-location {
    margin: 3px 0;
    line-height: 1.4;
}
.bot-location strong {
    font-weight: 600;
}

/* Input bar */
.wa-input-bar {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    gap: 6px;
    background: var(--wa-input-bg);
}
.wa-emoji {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.wa-input-field {
    flex: 1;
    background: var(--white);
    border-radius: 18px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--wa-time);
}
.wa-attach {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wa-attach svg { width: 20px; height: 20px; }
.wa-mic {
    width: 34px; height: 34px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wa-mic svg { width: 18px; height: 18px; }

/* Home indicator */
.home-indicator {
    height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--wa-input-bg);
}
.home-indicator-bar {
    width: 120px; height: 4px;
    background: var(--black);
    border-radius: 2px;
    opacity: 0.2;
}

/* Floating notification cards */
.notif {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    font-size: 13px;
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}
.notif-1 { top: 45%; left: -40px; z-index: 10; animation-delay: 0s; }
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.notif .icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.notif .icon-green { background: var(--sage-bg); }
.notif strong { color: var(--ink); }
.notif span { color: var(--text-light); }

/* TRUST strip */
.trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 48px;
    display: flex;
    justify-content: center;
    gap: 56px;
    align-items: center;
}
.trust-item { text-align: center; }
.trust-item .num {
    font-size: 32px; font-weight: 700;
    color: var(--sage);
}
.trust-item .lbl {
    font-size: 12px; color: var(--text-light);
    margin-top: 4px;
}

/* PROBLEM / SOLUTION */
.problem-solution {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}
.ps-top {
    text-align: center;
    margin-bottom: 56px;
}
.ps-top h2 {
    font-size: 40px; color: var(--ink);
    margin-bottom: 12px;
}
.ps-top p { color: var(--text-light); font-size: 16px; }
.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.ps-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}
.ps-card.problem { border-left: 4px solid #e8927c; }
.ps-card.solution { border-left: 4px solid var(--sage); }
.ps-card h3 {
    font-size: 20px; font-weight: 600;
    color: var(--ink);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.ps-card h3 .ps-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.ps-card.problem h3 .ps-icon { background: var(--error-bg); }
.ps-card.solution h3 .ps-icon { background: var(--sage-bg); }
.ps-list {
    list-style: none;
    margin-bottom: 20px;
}
.ps-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text);
    display: flex; align-items: flex-start; gap: 10px;
    line-height: 1.6;
}
.ps-list li .li-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
}
.ps-card .ps-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* FEATURES */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}
.section-top {
    text-align: center;
    margin-bottom: 56px;
}
.section-top .badge {
    display: inline-block;
    background: var(--sage-bg);
    color: var(--sage);
    font-size: 12px; font-weight: 600;
    padding: 6px 16px; border-radius: 16px;
    margin-bottom: 16px;
}
.section-top h2 {
    font-size: 40px; color: var(--ink);
    margin-bottom: 12px;
}
.section-top p { color: var(--text-light); font-size: 16px; max-width: 560px; margin: 0 auto; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}
.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feat-card .emoji {
    width: 44px; height: 44px;
    background: var(--sage-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.feat-card h3 {
    font-size: 16px; font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.feat-card p {
    font-size: 14px; color: var(--text-light);
    line-height: 1.7;
}

/* HOW IT WORKS — AGENCIES */
.how {
    background: var(--sage-bg);
    padding: 80px 48px;
    color: var(--ink);
}
.how-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.how h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}
.step { text-align: center; }
.step-num {
    font-size: 48px; font-weight: 700;
    color: var(--sage-light);
    opacity: 0.4;
    margin-bottom: 12px;
}
.step h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* HOW IT WORKS — TOURISTS */
.tourist-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}
.tourist-flow h2 {
    font-size: 40px; color: var(--ink);
    text-align: center;
    margin-bottom: 16px;
}
.tourist-flow > p {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 56px;
}
.tourist-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.tourist-step {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
}
.tourist-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.tourist-step .step-icon {
    width: 64px; height: 64px;
    background: var(--sage-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
}
.tourist-step .step-label {
    display: inline-block;
    background: var(--sage-bg);
    color: var(--sage);
    font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 12px;
    margin-bottom: 16px;
}
.tourist-step h4 {
    font-size: 16px; font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.tourist-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* FREE TRIAL */
.trial {
    background: var(--warm);
    padding: 80px 48px;
}
.trial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.trial h2 {
    font-size: 40px; color: var(--ink);
    margin-bottom: 12px;
}
.trial > .trial-inner > p:first-of-type {
    color: var(--text-light); font-size: 16px;
    margin-bottom: 48px;
}
.trial-sub {
    color: var(--text-light); font-size: 16px;
    margin-bottom: 48px;
}
.trial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    text-align: left;
    box-shadow: var(--shadow-lg);
    max-width: 560px;
    margin: 0 auto;
}
.trial-card .trial-badge {
    display: inline-block;
    background: var(--sage-bg);
    color: var(--sage);
    font-size: 12px; font-weight: 600;
    padding: 6px 16px; border-radius: 16px;
    margin-bottom: 16px;
}
.trial-card h3 {
    font-size: 22px; font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.trial-card .trial-desc {
    color: var(--text-light); font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.trial-card .trial-list {
    list-style: none;
    margin-bottom: 28px;
}
.trial-card .trial-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    display: flex; align-items: center; gap: 10px;
}
.trial-card .trial-list li .ch {
    color: var(--sage); font-weight: 700;
}
.trial-btns {
    display: flex; gap: 12px;
    flex-wrap: wrap;
}

/* PRICING */
.pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
    text-align: center;
}
.pricing h2 {
    font-size: 40px; color: var(--ink);
    margin-bottom: 12px;
}
.pricing > p {
    color: var(--text-light); font-size: 16px;
    margin-bottom: 48px;
}
.pricing-card {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 56px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.pricing-card .plan-name {
    font-size: 22px; font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.pricing-card .tag {
    display: inline-block;
    background: var(--sage-bg);
    color: var(--sage);
    font-size: 12px; font-weight: 600;
    padding: 6px 16px; border-radius: 16px;
    margin-bottom: 20px;
}
.pricing-card .price {
    font-size: 56px; font-weight: 700;
    color: var(--ink);
}
.pricing-card .price span { font-size: 18px; color: var(--text-light); font-weight: 400; }
.pricing-card .desc {
    color: var(--text-light);
    font-size: 14px;
    margin: 8px 0 24px;
    line-height: 1.6;
}
.pricing-card .items {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}
.pricing-card .items li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    display: flex; align-items: center; gap: 10px;
}
.pricing-card .items li .ch {
    color: var(--sage); font-weight: 700;
}
.pricing-card .btn-primary { width: 100%; text-align: center; justify-content: center; }
.pricing-roi {
    max-width: 560px;
    margin: 32px auto 0;
    padding: 20px 28px;
    background: var(--sage-bg);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
}
/* FAQ */
.faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 48px;
}
.faq h2 {
    font-size: 40px;
    color: var(--ink);
    text-align: center;
    margin-bottom: 40px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    gap: 16px;
}
.faq-q:hover { color: var(--sage); }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sage-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--sage);
    transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-a p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

/* FOUNDER */
.founder {
    padding: 80px 48px;
    border-top: 1px solid var(--border);
}
.founder-inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
}
.founder-avatar {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.founder-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.founder-body blockquote {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.65;
    color: var(--ink);
    font-style: italic;
    margin: 0 0 20px;
}
.founder-body blockquote::before {
    content: '\201C';
    font-size: 56px;
    color: var(--sage);
    line-height: 0;
    vertical-align: -20px;
    margin-right: 2px;
    font-family: var(--font-heading);
}
.founder-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}
.founder-name span {
    font-weight: 400;
    color: var(--text-light);
}

/* SHARE HINT */
.share-hint {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--sage-bg);
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}
.share-hint .share-emoji {
    font-size: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}
.share-hint strong {
    color: var(--ink);
}

/* SCENARIOS */
.scenarios {
    background: var(--warm);
    padding: 80px 48px;
}
.scenarios-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.scenarios-inner > h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--ink);
    text-align: center;
    margin-bottom: 16px;
}
.scenarios-inner > p {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 56px;
}
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.scenario-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}
.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.scenario-card .scenario-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}
.scenario-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}
.scenario-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .founder-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* CTA */
.cta {
    background: var(--warm);
    padding: 80px 48px;
}
.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}
.cta h2 {
    font-size: 40px; color: var(--ink);
    margin-bottom: 16px;
}
.cta p { color: var(--text-light); font-size: 17px; margin-bottom: 32px; max-width: 560px; }
.cta-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

/* FOOTER */
footer {
    background: var(--sage);
    color: rgba(255,255,255,0.7);
    padding: 64px 48px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo-footer {
    font-weight: 600; font-size: 20px;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
}
.footer-title {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }

/* Legal pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}
.legal-page h1 {
    font-size: 36px; color: var(--ink);
    margin-bottom: 8px;
}
.legal-page .legal-date {
    color: var(--text-light); font-size: 14px;
    margin-bottom: 40px;
}
.legal-page h2 {
    font-size: 22px; color: var(--ink);
    margin: 32px 0 12px;
}
.legal-page p, .legal-page li {
    font-size: 15px; color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-page a {
    color: var(--sage);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .scenarios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    header { padding: 0 24px; }
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--cream);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        z-index: 100;
        gap: 16px;
    }
    nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
    .hero h1 { font-size: 36px; }
    .hero-visual { order: -1; padding: 0 40px; }
    .notif-1 { left: 0px; }
    .features { padding: 60px 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .scenarios-grid { grid-template-columns: 1fr; }
    .scenarios { padding: 60px 24px; }
    .problem-solution { padding: 60px 24px; }
    .ps-grid { grid-template-columns: 1fr; }
    .how { padding: 60px 24px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .tourist-flow { padding: 60px 24px; }
    .tourist-steps { grid-template-columns: 1fr; }
    .trial { padding: 60px 24px; }
    .trial-card { padding: 32px 24px; }
    .pricing { padding: 60px 24px; }
    .pricing-card { padding: 36px 28px; }
    .faq { padding: 60px 24px; }
    .cta { padding: 60px 24px; }
    .cta h2 { font-size: 32px; }
    .trust { gap: 32px; padding: 24px; flex-wrap: wrap; }
    footer { padding: 48px 24px 24px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom a { margin-left: 0; margin-right: 24px; }
    .section-top h2, .ps-top h2 { font-size: 32px; }
    .legal-page { padding: 32px 24px; }
    .legal-page h1 { font-size: 28px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .notif { font-size: 11px; padding: 10px 14px; }
    .notif .icon { width: 30px; height: 30px; font-size: 14px; }
    .section-top h2, .how h2, .pricing h2, .tourist-flow h2, .ps-top h2, .trial h2 { font-size: 30px; }
    .steps { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    nav a { font-size: 13px; }
    .trial-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: flex-start; }
}
