/* ═══════════════════════════════════════════════════════════
   BINQY — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
    --primary:        #7B4848;
    --primary-dark:   #5A2E2E;
    --primary-light:  #A07070;
    --primary-faint:  #F7EEEE;
    --secondary:      #E8B4A8;
    --secondary-faint:#FDF5F3;
    --accent:         #C8785C;
    --teal:           #7BBFB5;
    --blue:           #8AABCC;
    --green:          #7BBF8A;
    --red:            #CC6060;

    --bg:             #FFFFFF;
    --bg-soft:        #FDF8F7;
    --bg-surface:     #F7EEEE;
    --text-1:         #2A1A1A;
    --text-2:         #5A4040;
    --text-3:         #9A8080;
    --border:         #EDE0DC;
    --shadow-sm:      0 2px 8px rgba(123,72,72,.08);
    --shadow-md:      0 8px 32px rgba(123,72,72,.12);
    --shadow-lg:      0 20px 60px rgba(123,72,72,.16);
    --shadow-xl:      0 32px 80px rgba(123,72,72,.22);

    --grad-primary:   linear-gradient(135deg, #7B4848 0%, #E8B4A8 100%);
    --grad-soft:      linear-gradient(135deg, #FDF8F7 0%, #F7EEEE 50%, #FDF0EC 100%);
    --grad-dark:      linear-gradient(135deg, #2A1A1A 0%, #4A2A2A 100%);

    --radius-sm:      8px;
    --radius-md:      16px;
    --radius-lg:      24px;
    --radius-xl:      32px;
    --radius-full:    9999px;

    --font-head:      'Poppins', system-ui, sans-serif;
    --font-body:      'Inter', system-ui, sans-serif;

    --nav-h:          72px;
    --transition:     0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-1);
    background: var(--bg);
    overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-1);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--text-2); }

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-faint);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,.12); }
.btn:active { transform: scale(.97); }

.btn--primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(123,94,167,.35);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(123,94,167,.45); transform: translateY(-2px); }

.btn--dark { background: var(--text-1); color: white; }
.btn--dark:hover { background: #2D2350; transform: translateY(-2px); }

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn--outline:hover { background: var(--primary-faint); }

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 20px; font-size: .85rem; }

.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Store buttons */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--text-1);
    color: white;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,.1);
}
.store-btn:hover { background: #2D2350; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.store-btn__icon { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn__text { display: flex; flex-direction: column; }
.store-btn__text span { font-size: .75rem; opacity: .7; }
.store-btn__text strong { font-size: 1.1rem; font-family: var(--font-head); }

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
}
.badge--glow {
    background: rgba(123,94,167,.12);
    color: var(--primary);
    border: 1px solid rgba(123,94,167,.2);
    box-shadow: 0 0 20px rgba(123,94,167,.15);
}

/* ─── Navigation ─────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(255,255,255,.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.nav {
    display: flex;
    align-items: center;
    height: var(--nav-h);
    gap: 40px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo-img { height: 36px; width: auto; }
.nav__logo-text {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-1);
}
.logo-b { color: var(--secondary); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav__link {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: var(--primary-faint); }

.nav__actions { margin-left: 16px; }

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
    display: none;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
    background: white;
}
.nav__mobile.open { display: block; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.nav__mobile-cta { display: flex; flex-direction: column; gap: 10px; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grad-soft);
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}
.hero__bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero__bg-blob--1 {
    width: 600px; height: 600px;
    background: rgba(123,94,167,.15);
    top: -100px; right: -100px;
}
.hero__bg-blob--2 {
    width: 400px; height: 400px;
    background: rgba(255,107,138,.12);
    bottom: 50px; left: -80px;
}
.hero__bg-blob--3 {
    width: 300px; height: 300px;
    background: rgba(78,205,196,.1);
    top: 50%; left: 40%;
    transform: translate(-50%,-50%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 80px;
}
.hero__badge { margin-bottom: 24px; }
.hero__title { margin-bottom: 20px; }
.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-2);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.7;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-2);
}
.stars { color: #FFB347; font-size: 1rem; letter-spacing: 2px; }

.hero__phones {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__phones-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 10px 16px;
    font-size: .8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}
.hero__phones-badge--1 { top: 60px; left: -20px; animation-delay: 0s; }
.hero__phones-badge--2 { bottom: 100px; right: -10px; animation-delay: 1.5s; }

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* ─── Phone Mockup ───────────────────────────────────────── */
.phone-mockup {
    position: relative;
    z-index: 2;
}
.phone-mockup__frame {
    background: #1A1A2E;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        var(--shadow-xl),
        inset 0 0 0 1px rgba(255,255,255,.04);
    position: relative;
}
.phone-mockup__notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #1A1A2E;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}
.phone-mockup__notch--sm {
    width: 70px;
    height: 18px;
    top: 16px;
}
.phone-mockup__screen {
    border-radius: 34px;
    overflow: hidden;
    background: #F8F8FC;
}

.phone-mockup--front {
    width: 260px;
    position: absolute;
    left: 50%;
    transform: translateX(-20%);
    z-index: 4;
}
.phone-mockup--front .phone-mockup__screen { height: 520px; }

.phone-mockup--back {
    width: 230px;
    position: absolute;
    left: 50%;
    transform: translateX(-80%) rotate(-8deg);
    z-index: 3;
    opacity: .85;
}
.phone-mockup--back .phone-mockup__screen { height: 460px; }

.phone-mockup--lg {
    width: 300px;
}
.phone-mockup--lg .phone-mockup__screen { height: 580px; }

.phone-mockup--gallery {
    width: 170px;
    transition: transform var(--transition);
}
.phone-mockup--gallery:hover { transform: translateY(-8px) scale(1.03); }
.phone-mockup--gallery .phone-mockup__screen { height: 340px; }

.phone-mockup--cta {
    width: 280px;
}
.phone-mockup--cta .phone-mockup__screen { height: 540px; }

/* Real screenshot images inside phone frames */
.phone-mockup__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Phone Screen Variants */
.phone-screen { height: 100%; display: flex; flex-direction: column; padding: 44px 16px 16px; font-size: .75rem; background: white; }

.phone-screen--chat { background: #FAF8FF; }
.phone-screen--chat .ps-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.ps-ai-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-head);
    font-size: 1rem;
    flex-shrink: 0;
}
.ps-ai-avatar--lg { width: 44px; height: 44px; font-size: 1.2rem; }
.ps-name { font-weight: 700; font-size: .8rem; color: var(--text-1); }
.ps-online { color: var(--green); font-size: .65rem; }
.ps-age { color: var(--text-3); font-size: .65rem; }
.ps-messages { display: flex; flex-direction: column; gap: 8px; flex: 1; overflow: hidden; }
.ps-messages--full { flex: 1; }
.ps-msg {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: .72rem;
    line-height: 1.4;
    max-width: 85%;
}
.ps-msg--ai {
    background: white;
    color: var(--text-1);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}
.ps-msg--user {
    background: var(--grad-primary);
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.ps-typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: white;
    border-radius: 14px;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}
.ps-typing span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--text-3);
    animation: typing 1.2s infinite;
}
.ps-typing span:nth-child(2) { animation-delay: .2s; }
.ps-typing span:nth-child(3) { animation-delay: .4s; }
.ps-input {
    margin-top: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: 20px;
    color: var(--text-3);
    font-size: .7rem;
    border: 1px solid var(--border);
}
.ps-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.ps-quick-replies span {
    padding: 5px 10px;
    background: var(--primary-faint);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: .65rem;
    font-weight: 600;
    cursor: pointer;
}

.phone-screen--milestones { background: #FAF8FF; }
.phone-screen--milestones .ps-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ps-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.ps-title {
    font-weight: 700;
    font-size: .8rem;
    color: var(--text-1);
    margin-bottom: 10px;
}
.ps-milestone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: .72rem;
    margin-bottom: 6px;
}
.ps-milestone--done { background: rgba(107,203,119,.12); color: #3a8a46; }
.ps-milestone--active { background: rgba(123,94,167,.1); color: var(--primary); }
.ps-check { color: var(--green); font-weight: 700; }
.ps-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); display: block; }
.ps-progress { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.ps-progress-label { font-size: .65rem; color: var(--text-3); flex-shrink: 0; }
.ps-progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.ps-progress-fill { height: 100%; background: var(--grad-primary); border-radius: 4px; }
.ps-progress-value { font-size: .65rem; font-weight: 700; color: var(--primary); }

.phone-screen--home { background: #FAF8FF; padding: 40px 14px 14px; }
.ps-home-header { margin-bottom: 14px; }
.ps-home-greeting { font-size: .7rem; color: var(--text-3); }
.ps-home-name { font-size: .95rem; font-weight: 700; color: var(--text-1); }
.ps-home-card {
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
    color: white;
}
.ps-home-card--purple { background: var(--grad-primary); }
.ps-home-week { font-size: .65rem; opacity: .8; margin-bottom: 4px; }
.ps-home-baby { font-size: .8rem; font-weight: 700; }
.ps-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.ps-home-tile {
    background: white;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-size: .65rem;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
}
.ps-home-tile b { font-size: .75rem; color: var(--text-1); }
.ps-home-ai {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 12px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}
.ps-home-ai-msg { font-size: .7rem; color: var(--text-2); }

.phone-screen--full { padding-top: 52px; }

/* ─── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item { text-align: center; flex: 1; min-width: 120px; }
.trust-item__number {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-1);
    line-height: 1;
}
.trust-item__label { font-size: .8rem; color: var(--text-3); margin-top: 4px; }
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ─── Journey ────────────────────────────────────────────── */
.journey__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.journey__line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--teal), var(--accent));
    transform: translateX(-50%);
}
.journey__item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: start;
    gap: 0;
    padding: 40px 0;
}
.journey__item:nth-child(odd) .journey__card { grid-column: 1; grid-row: 1; text-align: right; padding-right: 48px; }
.journey__item:nth-child(odd) .journey__dot  { grid-column: 2; grid-row: 1; }
.journey__item:nth-child(even) .journey__dot  { grid-column: 2; grid-row: 1; }
.journey__item:nth-child(even) .journey__card { grid-column: 3; grid-row: 1; padding-left: 48px; }

.journey__item--right .journey__card { grid-column: 3; grid-row: 1; padding-left: 48px; text-align: left !important; }
.journey__item--right .journey__dot  { grid-column: 2; }

.journey__dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    position: relative;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    justify-self: center;
    margin-top: 8px;
}
.journey__dot--pregnancy { background: #F0EAFA; }
.journey__dot--newborn   { background: #FFE8F0; }
.journey__dot--infant    { background: #E8FFF0; }
.journey__dot--toddler   { background: #FFF4E0; }

.journey__card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.journey__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.journey__week {
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.journey__title { font-size: 1.3rem; margin-bottom: 10px; }
.journey__card p { font-size: .9rem; margin-bottom: 16px; line-height: 1.6; }
.journey__features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.journey__features li {
    font-size: .82rem;
    color: var(--text-2);
    padding-left: 16px;
    position: relative;
}
.journey__features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}
.journey__item:nth-child(odd) .journey__features li { padding-left: 0; padding-right: 16px; }
.journey__item:nth-child(odd) .journey__features li::before { left: auto; right: 0; }

/* ─── Features Grid ─────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-faint);
}
.feature-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.feature-card__icon--purple { background: rgba(123,94,167,.12); }
.feature-card__icon--pink   { background: rgba(255,107,138,.12); }
.feature-card__icon--blue   { background: rgba(69,183,209,.12); }
.feature-card__icon--green  { background: rgba(107,203,119,.12); }
.feature-card__icon--orange { background: rgba(255,179,71,.12); }
.feature-card__icon--red    { background: rgba(255,107,107,.12); }
.feature-card__icon--teal   { background: rgba(78,205,196,.12); }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p  { font-size: .85rem; }

.features-overview__cta { text-align: center; margin-top: 48px; }

/* ─── AI Showcase ───────────────────────────────────────── */
.ai-showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ai-showcase__content { order: 1; }
.ai-showcase__phone   { order: 2; display: flex; justify-content: center; }
.ai-showcase__content .section-label { margin-bottom: 12px; }
.ai-showcase__content h2 { margin-bottom: 16px; }
.ai-showcase__content > p { margin-bottom: 32px; line-height: 1.7; }
.ai-showcase__list { display: flex; flex-direction: column; gap: 20px; }
.ai-showcase__list li { display: flex; gap: 16px; align-items: flex-start; }
.ai-showcase__check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary-faint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.ai-showcase__list strong { display: block; font-size: .95rem; color: var(--text-1); margin-bottom: 2px; }
.ai-showcase__list span  { font-size: .85rem; color: var(--text-3); }

/* ─── Gallery ───────────────────────────────────────────── */
.gallery__phones {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.gallery__phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateY(calc(var(--i) * 8px));
}
.gallery__phone-wrap:nth-child(odd) { transform: translateY(0); }
.gallery__phone-wrap:nth-child(3) { transform: translateY(-16px); }
.gallery__screenshot { width: 100%; height: 100%; object-fit: cover; }
.gallery__placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.gallery__placeholder-icon { font-size: 2.5rem; }
.gallery__placeholder-label { font-size: .75rem; font-weight: 600; color: var(--text-2); }
.gallery__phone-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-3);
    text-align: center;
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card__text { font-size: .9rem; line-height: 1.6; margin-bottom: 20px; color: var(--text-2); font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: .9rem; color: var(--text-1); }
.testimonial-card__role { font-size: .78rem; color: var(--text-3); }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq__inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 0;
}
.faq__inner .section-header { text-align: left; }
.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-1);
    gap: 20px;
    transition: color var(--transition);
}
.faq__question:hover { color: var(--primary); }
.faq__icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition);
    line-height: 1;
}
.faq__item.open .faq__icon { background: var(--primary); border-color: var(--primary); color: white; transform: rotate(45deg); }
.faq__answer { display: none; padding-bottom: 20px; }
.faq__item.open .faq__answer { display: block; }
.faq__answer p { font-size: .92rem; line-height: 1.7; }

/* ─── Download CTA ──────────────────────────────────────── */
.download-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--grad-dark);
}
.download-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.download-cta__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.download-cta__blob--1 {
    width: 500px; height: 500px;
    background: rgba(123,94,167,.3);
    top: -100px; left: -100px;
}
.download-cta__blob--2 {
    width: 400px; height: 400px;
    background: rgba(255,107,138,.2);
    bottom: -100px; right: -50px;
}
.download-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.download-cta__title {
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}
.download-cta__subtitle { color: rgba(255,255,255,.7); margin-bottom: 40px; font-size: 1.1rem; }
.download-cta__buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.download-cta__note { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ─── Footer ────────────────────────────────────────────── */
.footer { background: var(--text-1); color: rgba(255,255,255,.7); }
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 72px 0 48px;
}
.footer__logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer__logo img {
    height: 36px;
    width: auto;
    background: white;
    padding: 6px 14px;
    border-radius: 10px;
}
.footer__tagline { font-size: .88rem; line-height: 1.6; margin-bottom: 28px; }
.footer__stores { display: flex; flex-direction: column; gap: 10px; }
/* Footer store buttons */
.footer__stores { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.footer-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1.5px solid rgba(232,180,168,.25);
    background: rgba(232,180,168,.08);
    color: rgba(255,255,255,.9);
    transition: all var(--transition);
    width: fit-content;
}
.footer-store-btn:hover {
    background: rgba(232,180,168,.18);
    border-color: rgba(232,180,168,.5);
    transform: translateY(-2px);
}
.footer-store-btn__icon {
    color: var(--secondary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.footer-store-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-store-btn__text small {
    font-size: .68rem;
    opacity: .6;
    font-weight: 400;
}
.footer-store-btn__text strong {
    font-size: .95rem;
    font-family: var(--font-head);
    font-weight: 600;
}

/* Social icons */
.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(232,180,168,.2);
    background: rgba(232,180,168,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    transition: all var(--transition);
}
.social-icon:hover {
    background: rgba(232,180,168,.2);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}
.footer__heading {
    color: white;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
    font-weight: 600;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    transition: color var(--transition);
}
.footer__list a:hover { color: white; }
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    flex-wrap: wrap;
    gap: 12px;
}
.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 760px;
    margin: 32px auto 0;
    padding: 20px 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.contact-address__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-address__company { font-size: .82rem; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.contact-address__detail  { font-size: .82rem; color: var(--text-3); line-height: 1.5; }

/* ─── Other Pages ───────────────────────────────────────── */
.page-hero {
    padding: calc(var(--nav-h) + 80px) 0 80px;
    background: var(--grad-soft);
    text-align: center;
}
.page-hero__label { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p   { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.prose-section { padding: 80px 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.1rem; margin: 28px 0 8px; }
.prose p  { margin-bottom: 16px; line-height: 1.75; }
.prose ul { margin: 0 0 16px 20px; list-style: disc; }
.prose ul li { margin-bottom: 6px; line-height: 1.6; color: var(--text-2); }

/* Contact form */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--text-1); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: .95rem;
    color: var(--text-1);
    background: white;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(123,94,167,.1); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* Form feedback */
.form-success {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-success__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.6rem; margin-bottom: 8px; }
.form-success p  { color: var(--text-2); }

.form-error {
    background: #FFF0F0;
    border: 1.5px solid #FFCCCC;
    color: #C0392B;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: .9rem;
}

.required { color: var(--primary); margin-left: 2px; }
.optional  {
    font-size: .75rem;
    font-weight: 400;
    color: var(--text-3);
    background: var(--bg-soft);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    vertical-align: middle;
}

/* Turnstile widget alignment */
.cf-turnstile { display: flex; }

/* 404 */
.not-found {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 40px) 24px 80px;
}
.not-found__number { font-size: 8rem; font-weight: 800; color: var(--primary-faint); line-height: 1; }
.not-found h1 { font-size: 2rem; margin-bottom: 12px; }
.not-found p  { margin-bottom: 32px; }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: .4; }
    30%            { transform: translateY(-4px); opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

[data-animate] { opacity: 0; }
[data-animate].animated[data-animate="fade-up"]    { animation: fadeUp .7s ease forwards; }
[data-animate].animated[data-animate="fade-left"]  { animation: fadeLeft .7s ease forwards; }
[data-animate].animated[data-animate="fade-right"] { animation: fadeRight .7s ease forwards; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top   { grid-template-columns: 1fr 1fr; }
    .ai-showcase__inner { gap: 48px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__subtitle { margin: 0 auto 36px; }
    .hero__cta { justify-content: center; }
    .hero__social-proof { justify-content: center; }
    .hero__phones {
        height: 420px;
        margin-top: -20px;
        order: -1;
    }
    .phone-mockup--front { width: 200px; }
    .phone-mockup--front .phone-mockup__screen { height: 400px; }
    .phone-mockup--back { width: 175px; }
    .phone-mockup--back .phone-mockup__screen { height: 350px; }

    .trust-divider { display: none; }
    .trust-bar__inner { justify-content: center; }

    .journey__line { display: none; }
    .journey__item { grid-template-columns: 1fr; gap: 12px; }
    .journey__item:nth-child(n) .journey__card { grid-column: 1; text-align: left !important; padding: 24px !important; }
    .journey__item:nth-child(n) .journey__dot  { grid-column: 1; justify-self: flex-start; }
    .journey__item:nth-child(n) .journey__features li { padding-left: 16px; padding-right: 0; }
    .journey__item:nth-child(n) .journey__features li::before { left: 0; right: auto; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-showcase__inner { grid-template-columns: 1fr; }
    .ai-showcase__phone { display: none; }
    .testimonials__grid { grid-template-columns: 1fr; }

    .download-cta__inner { grid-template-columns: 1fr; }
    .download-cta__phone { display: none; }
    .download-cta__buttons { justify-content: center; }
    .download-cta__content { text-align: center; }

    .footer__top { grid-template-columns: 1fr 1fr; }

    .nav__links, .nav__actions { display: none; }
    .nav__hamburger { display: flex; }
    .nav { gap: 0; }
    .nav__logo { margin-right: auto; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer__top   { grid-template-columns: 1fr; }
    .gallery__phones { gap: 8px; }
    .gallery__phone-wrap { transform: none !important; }
    .phone-mockup--gallery { width: 130px; }
    .phone-mockup--gallery .phone-mockup__screen { height: 260px; }
    .download-cta__buttons { flex-direction: column; align-items: center; }
}
