/* ============================================================
   SAYPH THEME - Fresh B2C Parent-Focused Design
   Colours: #FE5757, #132d4d, #fe8a8a, #fe2424, #1d4576, #091524
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --color-red: #FE5757;
    --color-red-light: #fe8a8a;
    --color-red-dark: #fe2424;
    --color-navy: #132d4d;
    --color-navy-mid: #1d4576;
    --color-navy-dark: #091524;

    --color-bg: #ffffff;
    --color-bg-soft: #f7f8fc;
    --color-bg-warm: #fff5f5;
    --color-bg-cream: #fefcfa;
    --color-text: #1a1a2e;
    --color-text-muted: #5a6378;
    --color-border: #e8ecf2;

    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.09);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.11);
    --shadow-glow: 0 4px 24px rgba(254, 87, 87, 0.15);

    --container-max: 1180px;
    --header-height: 72px;

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

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy-dark);
}

.highlight {
    color: var(--color-red);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--font-size-sm);
}

.btn-md {
    padding: 12px 28px;
    font-size: var(--font-size-base);
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--font-size-lg);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
}
.btn-primary:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
}
.btn-secondary:hover {
    background: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-border);
}
.btn-outline:hover {
    border-color: var(--color-navy);
    background: var(--color-bg-soft);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--color-red);
    border-color: #fff;
    font-weight: 700;
}
.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--color-navy);
    border-color: transparent;
}
.btn-ghost:hover {
    background: var(--color-bg-soft);
}

.btn-ghost-white {
    background: transparent;
    color: #fff;
    border-color: transparent;
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    height: var(--header-height);
    transition: all var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-img {
    height: 34px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav-menu li a:hover {
    color: var(--color-navy);
    background: var(--color-bg-soft);
}

.nav-cta {
    margin-left: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================================
   HERO — Split layout with phone mockup
   ============================================================ */
.hero-split {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f7f8fc 0%, #fff5f5 50%, #fefcfa 100%);
    overflow: hidden;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(254, 138, 138, 0.08);
    pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-split-content {
    position: relative;
    z-index: 2;
}

.hero-split .hero-badge {
    background: var(--color-bg-warm);
    color: var(--color-red);
    border: 1px solid rgba(254, 87, 87, 0.15);
    backdrop-filter: none;
}

.hero-split .hero-title {
    color: var(--color-navy-dark);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-split .hero-subtitle {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-split .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-split .hero-actions .btn-ghost {
    font-weight: 700;
    color: var(--color-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-split .hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-split .hero-trust-item {
    color: var(--color-text-muted);
}

.hero-split .hero-trust-item svg {
    color: var(--color-red);
}

/* Phone Mockup */
.hero-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phone-mockup {
    width: 260px;
    aspect-ratio: 9 / 19.5;
    background: #fff;
    border-radius: 36px;
    border: 8px solid #1a1a2e;
    box-shadow: 0 32px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy-dark);
}

.phone-status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.phone-screen {
    padding: 20px 24px 40px;
    flex: 1;
}

.phone-greeting {
    margin-bottom: 32px;
}

.phone-greeting h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 4px;
}

.phone-greeting p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.phone-apps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
}

.phone-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.phone-app-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.phone-app-icon.red { background: var(--color-red); }
.phone-app-icon.navy { background: var(--color-navy); }
.phone-app-icon.coral { background: var(--color-red-light); }
.phone-app-icon.dark { background: var(--color-navy-dark); }
.phone-app-icon.green { background: #22c55e; }

.phone-app-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Hero — Legacy full-width (kept for backwards compat) */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(9, 21, 36, 0.72) 0%,
        rgba(19, 45, 77, 0.55) 50%,
        rgba(9, 21, 36, 0.40) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge svg {
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title .highlight {
    color: var(--color-red-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.hero-trust-item svg {
    color: var(--color-red-light);
    flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    padding: 20px 0;
    background: var(--color-navy-dark);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.trust-item svg {
    color: var(--color-red-light);
    flex-shrink: 0;
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.social-proof-bar {
    padding: 20px 0;
    background: var(--color-navy-dark);
}

.social-proof-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.social-proof-item {
    text-align: center;
}

.social-proof-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.social-proof-item span {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-padding {
    padding: 100px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    padding: 5px 16px;
    background: var(--color-bg-warm);
    color: var(--color-red);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================================
   PROBLEM / VALUE PROPOSITION
   ============================================================ */
.problem-section {
    background: var(--color-bg-cream);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.problem-content .section-label {
    display: inline-block;
}

.problem-content .section-title {
    text-align: left;
}

.problem-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.problem-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.problem-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.5;
}

.problem-checklist li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-red {
    background: var(--color-bg-warm);
    color: var(--color-red);
}

.feature-icon-navy {
    background: #eef2f9;
    color: var(--color-navy);
}

.feature-icon-coral {
    background: #fff0f0;
    color: var(--color-red-light);
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ============================================================
   LIFESTYLE BREAK — Full-width photo with quote
   ============================================================ */
.lifestyle-break {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lifestyle-break-bg {
    position: absolute;
    inset: 0;
}

.lifestyle-break-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 21, 36, 0.78) 0%, rgba(19, 45, 77, 0.60) 100%);
}

.lifestyle-break-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.lifestyle-break-content {
    max-width: 680px;
}

.lifestyle-break-quote {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: #fff;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--color-red-light);
}

.lifestyle-break-author {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    padding-left: 24px;
}

.lifestyle-break-author em {
    font-weight: 400;
    font-style: italic;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    background: var(--color-bg-soft);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step-card {
    padding: 36px 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    counter-increment: step;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-red);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 10px;
}

.step-content p {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ============================================================
   SAFETY DETAIL
   ============================================================ */
.safety-detail {
    background: var(--color-bg);
}

.safety-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.safety-content .section-label {
    display: inline-block;
}

.safety-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.safety-content > p {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.safety-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.safety-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-navy);
}

.safety-checklist li svg {
    flex-shrink: 0;
    color: var(--color-red);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    background: var(--color-bg-soft);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card-plan {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
}

.pricing-card-plan .pricing-label {
    color: rgba(255,255,255,0.7);
}

.pricing-card-plan .pricing-period {
    color: rgba(255,255,255,0.6);
}

.pricing-card-plan .pricing-features li {
    color: rgba(255,255,255,0.85);
}

.pricing-card-plan .pricing-features svg {
    stroke: var(--color-red-light);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--color-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card-plan .pricing-card-header {
    border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 6px;
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-period {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-base);
    color: var(--color-text);
}

.pricing-features svg {
    stroke: var(--color-red);
    flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-navy-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    background: var(--color-bg-soft);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-navy-dark);
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: var(--color-red);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--color-text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
    padding: 100px 0;
    background: var(--color-bg);
}

.cta-final-inner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-final-bg {
    position: absolute;
    inset: 0;
}

.cta-final-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-final-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 21, 36, 0.80) 0%, rgba(19, 45, 77, 0.70) 100%);
}

.cta-final-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 48px;
}

.cta-final-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-final-content h2 em {
    font-style: italic;
    color: var(--color-red-light);
}

.cta-final-content p {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* CTA Final — CSS gradient background (no image) */
.cta-final-gradient {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 40%, var(--color-navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-gradient::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(254, 87, 87, 0.08);
    pointer-events: none;
}

.cta-final-gradient::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(254, 138, 138, 0.06);
    pointer-events: none;
}

.cta-final-gradient .cta-final-content {
    position: relative;
    z-index: 2;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(9, 21, 36, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 4px;
    border-radius: 50%;
    transition: all var(--transition);
}

.modal-close:hover {
    color: var(--color-navy-dark);
    background: var(--color-bg-soft);
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-navy-dark);
}

.modal-content p {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* ============================================================
   GENERIC PAGE TEMPLATE
   ============================================================ */
.generic-page .page-header {
    padding-top: 120px;
    margin-bottom: 40px;
}

.generic-page .page-content {
    max-width: 800px;
    margin-bottom: 80px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.generic-page .page-content h2,
.generic-page .page-content h3,
.generic-page .page-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.generic-page .page-content p {
    margin-bottom: 16px;
}

.generic-page .page-content ul,
.generic-page .page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    list-style: disc;
}

.generic-page .page-content a {
    color: var(--color-red);
}

.generic-page .page-content a:hover {
    text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    line-height: 1.65;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-red);
    color: #fff;
}

.footer-links-group h4 {
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-links-group a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.site-main:not(.homepage) {
    padding: 120px 0 80px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.post-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.post-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 24px;
}

.post-card-title {
    font-size: var(--font-size-xl);
    margin-bottom: 10px;
}

.post-card-title a:hover {
    color: var(--color-red);
}

.post-card-excerpt {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: var(--font-size-sm);
    line-height: 1.65;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0);
}

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 100%);
    text-align: center;
}

.support-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.support-hero-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Quick Links */
.support-quicklinks {
    padding: 60px 0;
    background: var(--color-bg);
    margin-top: -20px;
}

.quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quicklink-card {
    display: block;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-align: center;
}

.quicklink-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.quicklink-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--color-bg-warm);
    color: var(--color-red);
}

.quicklink-icon-navy {
    background: #eef2f9;
    color: var(--color-navy);
}

.quicklink-icon-coral {
    background: #fff0f0;
    color: var(--color-red-light);
}

.quicklink-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 6px;
}

.quicklink-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Support Sections */
.support-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.support-section-alt {
    background: var(--color-bg-soft);
}

.support-section-header {
    margin-bottom: 40px;
}

.support-section-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.support-section-header p {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 640px;
}

.support-section-header p strong {
    color: var(--color-navy);
}

/* Setup Steps */
.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
}

.setup-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.setup-step:first-child {
    border-top: 1px solid var(--color-border);
}

.setup-step-number {
    width: 44px;
    height: 44px;
    background: var(--color-red);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.setup-step-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 6px;
}

.setup-step-content p {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.65;
}

.setup-step-content p strong {
    color: var(--color-navy);
    font-weight: 600;
}

/* Portal Features Grid */
.portal-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portal-feature {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.portal-feature:hover {
    box-shadow: var(--shadow-md);
}

.portal-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-warm);
    color: var(--color-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.portal-feature h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: 6px;
}

.portal-feature p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Phone Features Split */
.support-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
}

.support-included,
.support-excluded {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: #fff;
}

.support-included h3,
.support-excluded h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.support-included ul,
.support-excluded ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-included li,
.support-excluded li {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.support-included li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.support-excluded li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-red);
}

/* Support FAQ list */
.support-faq-list {
    max-width: 800px;
    margin: 0;
}

/* Support Contact */
.support-contact {
    padding: 80px 0;
    background: var(--color-bg-soft);
}

.support-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.support-contact-card {
    padding: 40px 32px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.support-contact-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-warm);
    color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-contact-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 10px;
}

.support-contact-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-split-grid {
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card-sim {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .quicklinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portal-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 32px 24px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li a {
        font-size: var(--font-size-lg);
        padding: 14px 16px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
        text-align: center;
    }

    .hero-split {
        padding: 120px 0 72px;
    }

    .hero-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-split .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-split .hero-actions {
        justify-content: center;
    }

    .hero-split .hero-trust {
        justify-content: center;
    }

    .phone-mockup {
        width: 220px;
    }

    .hero-phone-wrap {
        order: -1;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-inner {
        padding: 120px 0 72px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card-sim {
        grid-column: auto;
        max-width: 100%;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .cta-final-content {
        padding: 56px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .portal-features-grid {
        grid-template-columns: 1fr;
    }

    .support-split {
        grid-template-columns: 1fr;
    }

    .support-contact-grid {
        grid-template-columns: 1fr;
    }

    .support-hero {
        padding: 120px 0 48px;
    }

    .lifestyle-break {
        min-height: 340px;
    }
}

@media (max-width: 480px) {
    .hero-split .hero-actions {
        flex-direction: column;
    }

    .hero-split .hero-actions .btn {
        width: 100%;
    }

    .hero-split .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .social-proof-items {
        gap: 24px;
    }

    .social-proof-item strong {
        font-size: 1.25rem;
    }

    .trust-items {
        gap: 16px;
    }

    .cta-final-actions {
        flex-direction: column;
    }

    .cta-final-actions .btn {
        width: 100%;
    }
}
