/* ==========================================================================
   Petfolio  -  warm editorial landing page
   Palette: terracotta #E07A5F, warm coral #F4A582, sage #81B29A,
            cream #F4F1DE, deep ocean #3D405B, ink #1A1A2E
   Type:    Fraunces (display)  /  Nunito Sans (body)
   ========================================================================== */

:root {
    --terracotta: #E07A5F;
    --coral: #F4A582;
    --sage: #81B29A;
    --cream: #F4F1DE;
    --ocean: #3D405B;
    --ink: #1A1A2E;

    --cream-deep: #EDE8D0;
    --cream-soft: #FBF9F0;
    --sage-deep: #6FA489;
    --terracotta-deep: #C9603F;
    --ink-soft: rgba(26, 26, 46, 0.72);
    --ink-faint: rgba(26, 26, 46, 0.55);

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Nunito Sans', 'Segoe UI', Helvetica, sans-serif;

    --shadow-sm: 0 2px 8px rgba(61, 64, 91, 0.08);
    --shadow-md: 0 14px 38px rgba(61, 64, 91, 0.14);
    --shadow-lg: 0 30px 70px rgba(61, 64, 91, 0.22);
    --shadow-device: 0 40px 80px -20px rgba(26, 26, 46, 0.45);

    --radius: 22px;
    --radius-lg: 34px;
    --maxw: 1200px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 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);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------  focus + accessibility  ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--ocean);
    outline-offset: 3px;
    border-radius: 6px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--ink);
    color: var(--cream);
    padding: 10px 18px;
    border-radius: 10px;
    z-index: 200;
}
.skip-link:focus { left: 12px; }

/* ----------  buttons  ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.01em;
    padding: 15px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), var(--coral));
    color: #fff;
    box-shadow: 0 10px 26px rgba(224, 122, 95, 0.42);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(224, 122, 95, 0.5); }

.btn-secondary {
    background: var(--ink);
    color: var(--cream);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-3px); background: var(--ocean); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--ink);
    border: 1.5px solid rgba(61, 64, 91, 0.18);
}
.btn-ghost:hover { background: #fff; transform: translateY(-3px); }

.btn-large { padding: 18px 36px; font-size: 17px; }

/* store badge */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: #fff;
    padding: 12px 26px 12px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.store-badge svg { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge .badge-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge .badge-small { font-size: 11px; font-weight: 600; opacity: 0.85; letter-spacing: 0.04em; }
.store-badge .badge-large { font-family: var(--font-display); font-size: 20px; font-weight: 600; }

/* ==========================================================================
   NAV
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 241, 222, 0.82);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid rgba(61, 64, 91, 0.08);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 23px;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink-soft);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 11px 22px; font-size: 15px; }
.nav-toggle { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(1100px 540px at 88% -8%, rgba(244, 165, 130, 0.32), transparent 60%),
        radial-gradient(900px 520px at -6% 18%, rgba(129, 178, 154, 0.30), transparent 58%),
        linear-gradient(180deg, var(--cream-soft), var(--cream));
}
.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(61, 64, 91, 0.12);
    color: var(--ocean);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow img { width: 20px; height: 20px; border-radius: 6px; }
.hero h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.3rem);
    margin: 22px 0 18px;
    font-weight: 600;
}
.hero h1 em {
    font-style: italic;
    color: var(--terracotta);
}
.hero-subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    color: var(--ink-soft);
    max-width: 33ch;
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 26px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink-faint);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--sage-deep); }

/* hero device */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
}
.hero-blob {
    position: absolute;
    width: 460px;
    height: 460px;
    background: linear-gradient(150deg, var(--sage), var(--coral));
    border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    filter: blur(6px);
    opacity: 0.55;
    z-index: 0;
    animation: blobFloat 9s ease-in-out infinite alternate;
}
@keyframes blobFloat {
    from { transform: translateY(-8px) rotate(-3deg) scale(1); }
    to   { transform: translateY(10px) rotate(4deg) scale(1.04); }
}
.hero-device { position: relative; z-index: 2; }
.hero-device .phone { transform: rotate(-3deg); }
.hero-pill {
    position: absolute;
    z-index: 3;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}
.hero-pill small { display: block; font-weight: 600; color: var(--ink-faint); font-size: 12px; }
.hero-pill .dot {
    width: 36px; height: 36px; border-radius: 11px;
    display: grid; place-items: center; flex-shrink: 0;
}
.hero-pill .dot svg { width: 20px; height: 20px; color: #fff; }
.hero-pill.one { top: 12%; left: -6%; animation: floatA 6s ease-in-out infinite; }
.hero-pill.two { bottom: 14%; right: -4%; animation: floatB 7s ease-in-out infinite; }
@keyframes floatA { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
@keyframes floatB { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(12px);} }

/* ----------  iPhone frame  ---------- */
.phone {
    width: 280px;
    background: #1c1c2b;
    border-radius: 46px;
    padding: 11px;
    box-shadow: var(--shadow-device), inset 0 0 0 2px rgba(255,255,255,0.06);
}
.phone-screen {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 1206 / 2622;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-notch {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 26px;
    background: #1c1c2b;
    border-radius: 100px;
    z-index: 4;
}

/* ==========================================================================
   VALUE STRIP
   ========================================================================== */
.value-strip {
    background: var(--ink);
    color: var(--cream);
    padding: 26px 0;
}
.value-strip .container {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
    text-align: center;
}
.value-strip .vs-item { flex: 1; min-width: 150px; }
.value-strip .vs-num {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 600;
    color: var(--coral);
}
.value-strip .vs-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(244, 241, 222, 0.78);
    margin-top: 2px;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section { padding: 100px 0; }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-eyebrow {
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    display: block;
    margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; margin-top: 16px; }

/* ==========================================================================
   FEATURES  (alternating editorial rows)
   ========================================================================== */
#features { background: linear-gradient(180deg, var(--cream), var(--cream-soft)); }

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 110px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }

.feature-copy .ftag {
    display: inline-block;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 14px;
}
.feature-copy h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.feature-copy > p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 24px; }

.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-weight: 600;
    color: var(--ink);
}
.feature-list .check {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 8px;
    background: rgba(129, 178, 154, 0.2);
    display: grid; place-items: center;
    margin-top: 2px;
}
.feature-list .check svg { width: 15px; height: 15px; color: var(--sage-deep); }
.feature-list small { display: block; font-weight: 500; color: var(--ink-faint); }

/* feature media */
.feature-media {
    position: relative;
    display: flex;
    justify-content: center;
}
.feature-media .media-panel {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 44px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.media-panel.warm { background: radial-gradient(circle at 30% 20%, rgba(244,165,130,0.5), rgba(224,122,95,0.28)); }
.media-panel.sage { background: radial-gradient(circle at 70% 20%, rgba(129,178,154,0.5), rgba(111,164,137,0.26)); }
.media-panel.ocean { background: radial-gradient(circle at 50% 15%, rgba(61,64,91,0.16), rgba(61,64,91,0.06)); }
.feature-media .phone { width: 248px; }

/* ==========================================================================
   FEATURE HUB GRID  (curated small cards)
   ========================================================================== */
.hub { background: var(--cream-soft); }
.hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.hub-card {
    background: #fff;
    border: 1px solid rgba(61, 64, 91, 0.08);
    border-radius: var(--radius);
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hub-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    display: grid; place-items: center;
    margin-bottom: 16px;
}
.hub-icon svg { width: 24px; height: 24px; color: #fff; }
.hub-card h4 { font-family: var(--font-body); font-weight: 800; font-size: 16px; margin-bottom: 6px; letter-spacing: 0; }
.hub-card p { font-size: 14px; color: var(--ink-faint); line-height: 1.5; }
.hub-note { text-align: center; margin-top: 36px; color: var(--ink-faint); font-weight: 700; }

/* ==========================================================================
   PRIVACY BAND (deep)
   ========================================================================== */
.privacy {
    background:
        radial-gradient(800px 400px at 85% 10%, rgba(129,178,154,0.22), transparent 60%),
        radial-gradient(700px 360px at 5% 90%, rgba(224,122,95,0.20), transparent 60%),
        var(--ocean);
    color: var(--cream);
    padding: 96px 0;
}
.privacy .section-eyebrow { color: var(--coral); }
.privacy h2 { color: #fff; }
.privacy .privacy-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.privacy .privacy-head p { color: rgba(244,241,222,0.82); font-size: 1.12rem; margin-top: 16px; }
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.privacy-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 30px 26px;
    backdrop-filter: blur(6px);
}
.privacy-card .pc-icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    background: rgba(244, 165, 130, 0.2);
    display: grid; place-items: center;
    margin-bottom: 18px;
}
.privacy-card .pc-icon svg { width: 25px; height: 25px; color: var(--coral); }
.privacy-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.privacy-card p { color: rgba(244,241,222,0.78); font-size: 15.5px; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing { background: linear-gradient(180deg, var(--cream-soft), var(--cream)); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}
.price-card {
    background: #fff;
    border: 1.5px solid rgba(61, 64, 91, 0.1);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
    position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
    border-color: transparent;
    background: linear-gradient(180deg, #fff, var(--cream-soft));
    box-shadow: 0 30px 60px rgba(224, 122, 95, 0.22);
    transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--terracotta), var(--sage));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--terracotta), var(--coral));
    color: #fff;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.price-kicker {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 10px;
}
.price-name { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
.price-amount .num { font-family: var(--font-display); font-weight: 600; font-size: 3rem; line-height: 1; }
.price-amount .per { font-weight: 700; color: var(--ink-faint); font-size: 1rem; }
.price-sub { color: var(--ink-soft); font-weight: 700; font-size: 14.5px; min-height: 22px; margin-bottom: 22px; }
.price-sub.save { color: var(--sage-deep); }
.price-features { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.price-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.price-features svg { width: 19px; height: 19px; color: var(--sage-deep); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { width: 100%; }
.price-fine { font-size: 12.5px; color: var(--ink-faint); text-align: center; margin-top: 14px; font-weight: 600; }

.pricing-disclaimer {
    max-width: 760px;
    margin: 44px auto 0;
    text-align: center;
    font-size: 14px;
    color: var(--ink-faint);
    line-height: 1.7;
}
.pricing-disclaimer a { color: var(--terracotta-deep); font-weight: 700; text-decoration: underline; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { padding: 30px 0 110px; background: var(--cream); }
.final-cta .cta-box {
    max-width: 1080px;
    margin: 0 auto;
    background:
        radial-gradient(700px 320px at 12% 0%, rgba(244,165,130,0.55), transparent 60%),
        radial-gradient(640px 320px at 100% 100%, rgba(129,178,154,0.45), transparent 60%),
        linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
    border-radius: 40px;
    padding: 72px 40px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.final-cta .cta-icon {
    width: 78px; height: 78px;
    border-radius: 22px;
    margin: 0 auto 24px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 46ch; margin: 0 auto 32px; }
.final-cta .store-badge { background: var(--ink); }
.final-cta .cta-trial { margin-top: 20px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(244,241,222,0.72); padding: 64px 0 30px; }
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .fb-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 12px; }
.footer-brand .fb-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); font-weight: 600; }
.footer-brand p { font-size: 14.5px; max-width: 30ch; }
.footer-col h4 {
    font-family: var(--font-body);
    color: var(--cream);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { font-size: 15px; color: rgba(244,241,222,0.72); transition: color 0.2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 26px;
    font-size: 14px;
}
.footer-bottom a { color: var(--coral); font-weight: 700; }

/* ==========================================================================
   LEGAL / CONTENT PAGES
   ========================================================================== */
.page-header {
    background:
        radial-gradient(700px 320px at 85% -10%, rgba(244,165,130,0.3), transparent 60%),
        linear-gradient(180deg, var(--cream-soft), var(--cream));
    padding: 70px 0 56px;
    text-align: center;
    border-bottom: 1px solid rgba(61,64,91,0.08);
}
.page-header h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.page-header p { color: var(--ink-soft); margin-top: 12px; font-size: 1.1rem; }

.page-content { padding: 64px 0 90px; }
.page-content .container { max-width: 840px; }
.page-content h2 {
    font-size: 1.7rem;
    margin: 44px 0 16px;
    padding-top: 8px;
}
.page-content h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.page-content p { color: var(--ink-soft); margin-bottom: 16px; }
.page-content ul { margin: 0 0 18px 22px; color: var(--ink-soft); }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--terracotta-deep); font-weight: 700; text-decoration: underline; }
.page-content strong { color: var(--ink); }
.last-updated { margin-top: 40px; font-style: italic; color: var(--ink-faint); font-size: 14px; }

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.pricing-table th, .pricing-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(61,64,91,0.1);
}
.pricing-table th { background: var(--cream-deep); font-family: var(--font-body); font-weight: 800; color: var(--ink); }
.pricing-table td { color: var(--ink-soft); }
.pricing-table tr:last-child td { border-bottom: none; }

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid rgba(61,64,91,0.08);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}
.faq-item h3 { margin: 0 0 8px; font-size: 1.15rem; }
.faq-item p { margin: 0; }

/* support form */
.contact-form {
    background: #fff;
    border: 1px solid rgba(61,64,91,0.08);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin: 16px 0 30px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 800; margin-bottom: 7px; font-size: 14.5px; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid rgba(61,64,91,0.16);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15.5px;
    background: var(--cream-soft);
    color: var(--ink);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* hero entrance */
.hero-anim { opacity: 0; transform: translateY(24px); animation: heroIn 0.9s var(--ease) forwards; }
.hero-anim.d1 { animation-delay: 0.05s; }
.hero-anim.d2 { animation-delay: 0.18s; }
.hero-anim.d3 { animation-delay: 0.31s; }
.hero-anim.d4 { animation-delay: 0.44s; }
.hero-anim.d5 { animation-delay: 0.6s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
    .hero .container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { min-height: 480px; }
    .feature-row { grid-template-columns: 1fr; gap: 36px; margin-bottom: 76px; }
    .feature-row.reverse .feature-media { order: 0; }
    .feature-row.reverse .feature-copy { order: 0; }
    .feature-copy { text-align: center; }
    .feature-list { max-width: 440px; margin: 0 auto; text-align: left; }
    .hub-grid { grid-template-columns: repeat(2, 1fr); }
    .privacy-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-6px); }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .nav-links {
        position: fixed;
        inset: 72px 0 auto 0;
        flex-direction: column;
        background: var(--cream-soft);
        padding: 22px 24px 30px;
        gap: 18px;
        border-bottom: 1px solid rgba(61,64,91,0.1);
        box-shadow: var(--shadow-md);
        transform: translateY(-130%);
        transition: transform 0.35s var(--ease);
        align-items: stretch;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { font-size: 17px; }
    .nav-cta { text-align: center; }
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px; height: 44px;
        background: none; border: none; cursor: pointer;
    }
    .nav-toggle span {
        display: block; height: 2.5px; width: 24px;
        background: var(--ink); border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .section { padding: 70px 0; }
    .hub-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .final-cta .cta-box { padding: 50px 24px; }
    .hero-pill { display: none; }
    .container { padding: 0 18px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-anim { opacity: 1; transform: none; }
}
