/* ==========================================================================
   Sunrise Select - Style Definitions (Premium Responsive Landing Page CSS)
   ========================================================================== */

/* Nexa Typekit Font Families */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette */
    --color-primary-dark: #0c5a67;
    --color-primary: #13889b;
    --color-primary-light: #edf9f8;
    --color-gold: #c48a11;
    --color-gold-dark: #b57d0d;
    --color-gold-light: #ffb400;
    --color-gold-pale: #ead3a2;
    --color-bg-warm-dark: #f7f4ef;
    --color-bg-warm-light: #f8f5f1;
    --color-bg-white: #ffffff;
    --color-text-dark: #111111;
    --color-text-medium: #444444;
    --color-text-light: #777777;
    --color-border-warm: #bcb6af;
    --color-border-light: #cfc7be;
    
    /* Coverages & Exclusions colors */
    --color-green-bg: #eef8ee;
    --color-green-border: #cfe9d2;
    --color-green-text: #4da35e;
    --color-green-title: #6d8e35;
    
    --color-orange-bg: #fff4e7;
    --color-orange-border: #f9dfb7;
    --color-orange-text: #ef8b1f;
    --color-orange-title: #b68018;
    
    --color-purple-bg: #f5efff;
    --color-purple-border: #e4d8ff;
    --color-purple-text: #8f67d6;
    --color-purple-title: #6f58b9;
    
    --color-pink-bg: #fff0f1;
    --color-pink-border: #ffd7da;
    --color-pink-text: #f08a94;
    --color-pink-title: #ba6d74;
    
    --color-blue-bg: #eef7ff;
    --color-blue-border: #d6eaff;
    --color-blue-text: #4a9fe7;
    --color-blue-title: #4f85b8;
    
    --color-teal-bg: #edf9f8;
    --color-teal-border: #d4efea;
    --color-teal-text: #38a89d;
    --color-teal-title: #5d9076;
    
    --color-red-bg: #fff0ef;
    --color-red-border: #ffd7d4;
    --color-red-text: #e46d63;
    --color-red-title: #b35b52;
    
    --color-yellow-bg: #fff8df;
    --color-yellow-border: #f2e2a7;
    --color-yellow-text: #d39a18;
    --color-yellow-title: #9b7a16;

    /* Fonts */
    --font-heading: 'nexa', sans-serif;
    --font-body: 'nexa-text', sans-serif;

    /* Grid & Container */
    --container-max-width: 1200px;
    --container-padding: 2rem;
    
    /* Animation speed & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(12, 90, 103, 0.08);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 24px;
}

/* Base Elements */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 2.5rem 0;
}

.section-bg-warm-light {
    background-color: var(--color-bg-warm-light);
}

.section-bg-warm-dark {
    background-color: var(--color-bg-warm-dark);
}

.section-bg-teal {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.section-bg-teal .section-header h2 {
    color: var(--color-gold-light);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.section-bg-teal .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

/* Badges & Buttons */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(19, 136, 155, 0.15);
}

.hero .badge {
    background-color: rgba(0, 0, 0, 0.15);
    color: var(--color-gold);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    animation: hero-badge-pulse 2s infinite;
}

@keyframes hero-badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 186, 79, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(234, 186, 79, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(234, 186, 79, 0);
    }
}

.section-bg-teal .badge {
    background-color: rgba(0, 0, 0, 0.15);
    color: var(--color-gold);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 0.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(19, 136, 155, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-gold-light);
    color: #222;
    font-weight: 700;
}

.btn-gold:hover {
    background-color: var(--color-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(196, 138, 17, 0.25);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}


.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.header.scrolled .nav-container {
    height: 75px;
}

.header.scrolled .logo-img {
    height: 55px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    transition: var(--transition-smooth);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-gold-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-medium);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
}

/* Hamburger mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-primary-dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--color-bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-menu.nav-active {
        right: 0;
    }
    
    /* Hamburger Animation */
    .nav-toggle.nav-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-toggle.nav-active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.nav-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background: #03637f;
    color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    letter-spacing: -1px;
}

.hero-content h1 .gold-highlight {
    color: var(--color-gold-light);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 0;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-image-link {
    display: block;
    width: 100%;
    max-width: 480px;
    transition: var(--transition-smooth);
}

.hero-image-link:hover {
    transform: translateY(-5px);
}

.hero-composite-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.btn-enroll-overlay {
    background-color: var(--color-gold-light, #fbb040);
    color: var(--color-deep-teal, #0b5e70);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.4rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-enroll-overlay:hover {
    background-color: #ffffff;
    color: var(--color-deep-teal, #0b5e70);
    transform: translateY(-2px);
}

.hero-price {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.hero-price .price-highlight {
    color: var(--color-gold-light, #fbb040);
    font-size: 1.6rem;
    font-weight: 700;
}

.hero-subprice {
    color: #ffffff;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ==========================================================================
   Benefits Grid Section
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border-light);
    padding: 2.25rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    transform: rotateY(180deg);
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

/* Highlight specific benefit types */
.benefit-card.featured-benefit::before {
    background-color: var(--color-gold);
}
.benefit-card.featured-benefit .benefit-icon-wrapper {
    background-color: var(--color-yellow-bg);
    color: var(--color-gold-dark);
}
.benefit-card.featured-benefit:hover .benefit-icon-wrapper {
    background-color: var(--color-gold);
    color: var(--color-bg-white);
}

/* Center promotional image block */
.benefits-bottom-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.benefits-promo-content h3 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
}

.benefits-promo-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.benefits-promo-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 4px solid var(--color-bg-warm-light);
    max-height: 380px;
}

.benefits-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Savings Comparison Section
   ========================================================================== */
.savings-section {
    padding: 3rem 0;
}

.savings-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.savings-media-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.savings-composite-img {
    width: 100%;
    max-width: 480px;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.savings-section .section-header {
    margin-bottom: 1.5rem;
}

.savings-section .section-header h2 {
    font-size: 2.65rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.savings-section .section-header .savings-intro-text {
    font-size: 1.15rem;
    color: var(--color-text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.savings-comparison-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.savings-typical-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    line-height: 1.4;
    flex: 1;
}

.savings-typical-table {
    flex: 1.3;
    background-color: #eeddb7;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.savings-table-row {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.savings-table-row:last-child {
    border-bottom: none;
}

.savings-table-row.total-row {
    font-weight: 700;
    background-color: #e4cda2;
    margin: 0.5rem -1.5rem -1.5rem -1.5rem;
    padding: 0.85rem 1.5rem;
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    border-bottom: none;
}

.savings-ecosystem-wrapper h3 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.ecosystem-list-cols {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
}

.ecosystem-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ecosystem-col-list li {
    font-size: 0.925rem;
    color: var(--color-text-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.bullet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: inline-block;
    background-color: var(--color-bg-white);
    position: relative;
    flex-shrink: 0;
}

.bullet-dot::after {
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.savings-gold-divider {
    border: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    margin: 2rem 0;
}

.savings-potential-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.potential-savings-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

.potential-savings-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-gold-dark);
    line-height: 1.1;
}

.potential-savings-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* Responsiveness for Savings Section */
@media (max-width: 991px) {
    .savings-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .savings-media-wrapper {
        order: -1;
    }
    
    .savings-composite-img {
        height: 350px;
        max-width: 100%;
    }
    
    .savings-comparison-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    
    .savings-typical-title {
        text-align: center;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .savings-typical-title br {
        display: none;
    }
}

@media (max-width: 575px) {
    .ecosystem-list-cols {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   Why Sunrise Select Exists Section
   ========================================================================== */
.exists-section {
    padding: 3rem 0;
    background-color: #f4fafe;
    overflow: hidden;
}

.exists-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
}

.exists-section .section-header {
    margin-bottom: 3.5rem;
}

.exists-section .section-header h2 {
    font-size: 3rem;
    color: var(--color-primary-dark);
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.exists-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exists-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.exists-icon-box {
    color: #444444;
    font-size: 1.6rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.exists-item-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.exists-item-text p {
    font-size: 0.98rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

.exists-divider {
    border: 0;
    height: 1.5px;
    background-color: var(--color-gold-light);
    margin: 2.25rem 0 1.5rem 0;
    width: 90%;
}

.exists-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.exists-stat-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.exists-stat-num {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--color-gold-dark);
    line-height: 1;
}

.exists-stat-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.25;
}

.exists-quote-box {
    background-color: #fdf6e6;
    border: 1px solid #f3e5c8;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.4;
    white-space: nowrap;
}

.exists-media {
    position: relative;
    width: 100%;
    height: 640px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.exists-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image blending overlay */
.exists-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, #f4fafe, rgba(244, 250, 254, 0));
    pointer-events: none;
    z-index: 1;
}

/* Responsiveness for Exists Section */
@media (max-width: 991px) {
    .exists-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .exists-media {
        order: -1;
        max-width: 600px;
        height: 380px;
        margin: 0 auto;
    }
    
    .exists-media::after {
        display: none; /* disable desktop-only side blend on mobile stack */
    }
    
    .exists-content h2 {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .exists-divider, .exists-footer {
        width: 100%;
    }
    
    .exists-quote-box {
        white-space: normal;
    }
}

/* ==========================================================================
   Love This Section
   ========================================================================== */
.love-curved-section {
    padding: 3rem 0;
    background-color: var(--color-bg-white);
    overflow: hidden;
}

/* Section Header styling */
.love-curved-section .love-header {
    margin-bottom: 3.5rem;
}

.love-curved-section .love-header h2 {
    font-size: 3rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.love-subtitle {
    font-size: 1.25rem;
    color: var(--color-gold-dark);
    font-weight: 600;
    line-height: 1.45;
    font-style: italic;
    margin-bottom: 0;
}

/* Interactive Curved Timeline */
.love-curve-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 300px;
    margin: 0 auto 4rem auto;
}

.love-curve-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.love-curve-path {
    stroke: #e2e8f0;
    stroke-width: 2;
    stroke-dasharray: 6 6;
    fill: none;
}

.love-curve-dot {
    fill: #334155;
}

/* Circular Family Photos (Nodes) */
.love-node {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    transform: translate(-50%, -50%); /* Center on the point */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 4px solid #fff;
    animation: liteNodePulse 4s infinite ease-in-out;
}

.love-node:nth-child(2) { animation-delay: 1s; }
.love-node:nth-child(3) { animation-delay: 2s; }
.love-node:nth-child(4) { animation-delay: 0.5s; }
.love-node:nth-child(5) { animation-delay: 1.5s; }
.love-node:nth-child(6) { animation-delay: 2.5s; }

@keyframes liteNodePulse {
    0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
    50% { transform: translate(-50%, -50%) scale(1.04); box-shadow: 0 10px 25px rgba(19, 136, 155, 0.15); }
    100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
}

.love-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Node Sizes */
.node-sm { width: 60px; height: 60px; }
.node-md { width: 90px; height: 90px; }
.node-lg { width: 140px; height: 140px; border-width: 6px; }

/* Node Positions (Scattered along the curve) */
.pos-1 { left: 10%; top: 120px; }
.pos-2 { left: 30%; top: 180px; }
.pos-3 { left: 50%; top: 150px; } /* Center */
.pos-4 { left: 70%; top: 200px; }
.pos-5 { left: 90%; top: 110px; }

/* Active/Hover states */
.love-node:hover {
    animation: none;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(19, 136, 155, 0.2);
    z-index: 3;
}

.love-node.active {
    animation: none;
    border-color: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 0 6px rgba(19, 136, 155, 0.15), 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Three Points Slider */
.love-points-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.slider-arrow {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 5;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 6px 15px rgba(19, 136, 155, 0.2);
}

.love-slider-track-container {
    flex-grow: 1;
    overflow: hidden;
    margin: 0 1rem;
    padding: 1rem 0;
}

.love-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.love-point-slide {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    opacity: 0.4;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.love-point-slide.active {
    opacity: 1;
    transform: scale(1);
}

.love-point-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.love-point-slide h3 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.love-point-slide p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0;
}

/* Responsiveness */
@media (max-width: 991px) {
    .love-curved-section {
        padding: 4.5rem 0;
    }
    
    .love-curve-container {
        height: 250px;
    }
    
    .pos-1 { left: 10%; top: 100px; }
    .pos-2 { left: 30%; top: 150px; }
    .pos-3 { left: 50%; top: 125px; } 
    .pos-4 { left: 70%; top: 160px; }
    .pos-5 { left: 90%; top: 90px; }
    
    .node-sm { width: 50px; height: 50px; }
    .node-md { width: 75px; height: 75px; }
    .node-lg { width: 110px; height: 110px; border-width: 4px; }
}

@media (max-width: 576px) {
    .love-curve-container {
        height: 200px;
    }
    
    /* Hide some nodes on small screens to reduce clutter */
    .pos-1, .pos-5 { display: none; }
    
    /* Adjust remaining nodes */
    .pos-2 { left: 20%; top: 120px; }
    .pos-3 { left: 50%; top: 100px; } 
    .pos-4 { left: 80%; top: 120px; }
    
    .node-md { width: 65px; height: 65px; }
    .node-lg { width: 90px; height: 90px; }
    
    .love-points-slider {
        max-width: 100%;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .love-point-slide h3 {
        font-size: 1.25rem;
    }
    
    .love-point-slide p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-md);
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.popular-tier {
    border: 2px solid var(--color-gold);
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.pricing-card.popular-tier:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f5a623 0%, #c47a11 60%, #e8960e 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(196, 138, 17, 0.55), 0 0 0 3px rgba(245, 166, 35, 0.2);
    animation: badge-pulse 2.4s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(196, 138, 17, 0.55), 0 0 0 3px rgba(245, 166, 35, 0.2); }
    50%       { box-shadow: 0 6px 26px rgba(196, 138, 17, 0.75), 0 0 0 6px rgba(245, 166, 35, 0.12); }
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.pricing-card.popular-tier h3 {
    color: var(--color-gold-dark);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-price span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features li i {
    color: var(--color-primary);
    margin-top: 3px;
    font-size: 0.85rem;
}

.pricing-card.popular-tier .pricing-features li i {
    color: var(--color-gold);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4.5rem;
    padding-top: 4.5rem;
    border-top: 1px solid var(--color-border-light);
}

.pricing-bottom-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    max-height: 380px;
}

.pricing-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-bottom-content h3 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
}

.pricing-bottom-content p {
    font-size: 1.05rem;
    color: var(--color-text-medium);
}

/* ==========================================================================
   Trust Branding Section
   ========================================================================== */
.trust-branding {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(247, 244, 239, 0.7) 0%, rgba(248, 245, 241, 0.7) 100%);
    position: relative;
}

.trust-branding::before {
    content: '"';
    position: absolute;
    font-size: 15rem;
    font-family: serif;
    color: rgba(19, 136, 155, 0.04);
    top: -20px;
    left: 10%;
    line-height: 1;
}

.trust-content {
    max-width: 850px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trust-desc {
    font-size: 1.2rem;
    color: var(--color-text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-quote-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    text-align: left;
    position: relative;
    border-left: 5px solid var(--color-primary);
}

.trust-quote-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.trust-quote-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   How It Works (Interactive Stepper)
   ========================================================================== */
.timeline-section {
    padding: 3rem 0;
}

.interactive-timeline-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.timeline-visual-column {
    position: sticky;
    top: 100px;
}

.timeline-visual-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease;
}

.visual-content-container {
    position: relative;
    width: 100%;
}

.timeline-visual-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.timeline-visual-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.timeline-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(12, 90, 103, 0.12);
}

.visual-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-primary-dark);
    color: var(--color-bg-white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.visual-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: var(--color-primary-dark);
}

.visual-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-visual-card:hover .visual-image-wrapper img {
    transform: scale(1.04);
}

.visual-content {
    padding: 2.5rem;
}

.visual-content h3 {
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.visual-content p {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.visual-detail {
    font-size: 0.925rem;
    color: var(--color-text-light);
    margin: 1.25rem 0;
    border-left: 3px solid var(--color-gold-pale);
    padding-left: 1rem;
    line-height: 1.6;
}

.visual-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.visual-features li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.visual-features li i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Stepper Trigger Styling */
.timeline-steps-column {
    position: relative;
    padding-left: 3rem;
}

.vertical-progress-line-bg {
    position: absolute;
    left: 20px;
    top: 2rem;
    bottom: 2rem;
    width: 4px;
    background-color: var(--color-border-light);
    border-radius: 2px;
    z-index: 1;
}

.vertical-progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Dynamic based on JS logic */
    background: linear-gradient(to bottom, var(--color-primary), var(--color-gold));
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.timeline-nav-step {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.timeline-nav-step:hover {
    background-color: rgba(247, 244, 239, 0.8);
}

.timeline-nav-step.active {
    background-color: var(--color-primary-light);
    border: 1px solid rgba(19, 136, 155, 0.12);
    box-shadow: var(--shadow-soft);
}

.step-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 3px solid var(--color-border-light);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.timeline-nav-step:hover .step-icon-circle {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.timeline-nav-step.active .step-icon-circle {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(19, 136, 155, 0.15);
}

.timeline-nav-step.completed .step-icon-circle {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg-white);
}

.timeline-nav-step .check-icon {
    display: none;
}

.timeline-nav-step.completed .step-num {
    display: none;
}

.timeline-nav-step.completed .check-icon {
    display: block;
    font-size: 0.85rem;
}

.step-nav-content {
    flex-grow: 1;
}

.step-nav-content h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 0.35rem;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.timeline-nav-step.active h3 {
    color: var(--color-primary-dark);
}

.step-nav-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.timeline-nav-step.active p {
    color: var(--color-text-medium);
}

.step-mobile-content {
    display: none;
    margin-top: 1rem;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    cursor: default; /* Avoid pointer cursor when hovering inside the active card content */
}

.mobile-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
}

.mobile-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-detail {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.mobile-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-features li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-features li i {
    color: var(--color-primary);
    font-size: 0.95rem;
}

/* Responsive Stepper queries */
@media (max-width: 991px) {
    .interactive-timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-visual-column {
        display: none;
    }
    
    .timeline-steps-column {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        padding-left: 2.5rem;
    }
    
    .timeline-nav-step {
        align-items: flex-start;
    }
    
    .timeline-nav-step.active .step-mobile-content {
        display: block;
    }
}

@media (max-width: 575px) {
    .timeline-steps-column {
        padding-left: 2rem;
    }
    
    .vertical-progress-line-bg {
        left: 10px;
    }
    
    .timeline-nav-step {
        padding: 1rem;
        gap: 1rem;
    }
    
    .step-icon-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .visual-content {
        padding: 1.5rem;
    }
    
    .visual-content h3 {
        font-size: 1.5rem;
    }
    
    .visual-image-wrapper {
        height: 200px;
    }
}

/* ==========================================================================
   Coverages vs Exclusions (Tabs Section)
   ========================================================================== */
.tabs-widget {
    margin-top: 2rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.tab-btn.active {
    color: var(--color-primary);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-card {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-border-warm);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.tab-card-header {
    background-color: var(--color-bg-warm-light);
    padding: 1.75rem 2.25rem;
    border-bottom: 1px solid var(--color-border-light);
}

.tab-card-header h2 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tab-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem 2.25rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border-light);
}

/* Grids border layout styling */
.tab-grid .tab-item:nth-child(odd) {
    border-right: 1px solid var(--color-border-light);
}

.tab-grid .tab-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.tab-item-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 2px solid;
}

.tab-item-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tab-item-content p {
    font-size: 0.85rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Story Section (Testimonials)
   ========================================================================== */
.story-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.story-cards-grid {
    overflow: hidden;
    width: 100%;
    margin-top: 2rem;
    padding: 30px 15px 20px 15px;
    position: relative;
}

.story-cards-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    gap: 3rem;
}

.story-card {
    flex: 0 0 calc(33.333% - 2rem); /* 3 items on desktop (33.333% - gap) */
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    box-shadow: none;
    box-sizing: border-box;
    border: none;
}

/* Elementor Editor view override to show all testimonials */
.elementor-editor-active .story-cards-grid {
    overflow: visible !important;
}

.elementor-editor-active .story-cards-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    transform: none !important;
}

.elementor-editor-active .story-card {
    flex: none !important;
}

@media (max-width: 768px) {
    .elementor-editor-active .story-cards-track {
        grid-template-columns: 1fr !important;
    }
}

.story-stars {
    color: #F3C623;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.story-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-right: 1.5rem; /* leave space for avatar overlap */
}

.story-author {
    text-align: left;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.story-author h4 {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.story-author span {
    color: var(--color-text-dark);
    font-size: 0.85rem;
    font-weight: 500;
}

.story-avatar {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 5;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.story-nav-btn {
    background: var(--color-primary-dark);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
}

.story-nav-btn:hover {
    background: var(--color-primary);
}

.story-nav-current {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 0.95rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 3rem 0;
    background-color: var(--color-bg-white);
}

/* Accordion FAQ Component */
.faq-accordion {
    display: flex;
    flex-direction: column;
    max-width: 850px;
    margin: 0 auto;
    gap: 1.25rem;
}

.accordion-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-soft);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.4;
    padding-right: 1.5rem;
}

.accordion-icon {
    font-size: 0.85rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: var(--color-bg-warm-light);
}

.accordion-content-inner {
    padding: 1.25rem 1.75rem;
    font-size: 0.9rem;
    color: var(--color-text-medium);
    border-top: 1px solid var(--color-border-light);
    line-height: 1.6;
}

/* Active accordion styling */
.accordion-item.active {
    border-color: var(--color-primary);
}

.accordion-item.active .accordion-header {
    background-color: var(--color-primary-light);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    transition: max-height 0.3s ease-in-out;
}

/* ==========================================================================
   Enrollment Form & CTA Section
   ========================================================================== */
.cta-enroll-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.cta-enroll-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-enroll-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.difference-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-bullet-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.diff-bullet-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.diff-bullet-text h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.diff-bullet-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.enroll-form-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 2.5rem;
    border: 1px solid var(--color-border-light);
    color: var(--color-text-medium);
}

.enroll-form-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.enroll-form-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(19, 136, 155, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.enroll-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Success Modal Dialog Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: var(--transition-smooth);
    position: relative;
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.modal-close-btn:hover {
    color: var(--color-text-dark);
}

.modal-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-green-bg);
    color: var(--color-green-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--color-green-border);
}

.modal-content h3 {
    font-size: 1.6rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-bottom: 1.75rem;
}

/* Lead Popup Styles */
.lead-modal-content {
    background-color: var(--color-primary-dark);
    color: #fff;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    max-width: 450px;
}
.lead-modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 166, 96, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.lead-modal-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-gold-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}
.lead-modal-content h3 {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.lead-modal-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.lead-modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}
.lead-modal-benefits li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lead-modal-benefits li i {
    color: var(--color-gold);
}
.lead-modal-content .btn-primary {
    width: 100%;
    font-size: 1.05rem;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(201, 166, 96, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lead-modal-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(201, 166, 96, 0.3);
}
.btn-text-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    font-family: inherit;
}
.btn-text-link:hover {
    color: rgba(255, 255, 255, 0.8);
}
.lead-modal-content .modal-close-btn {
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
}
.lead-modal-content .modal-close-btn:hover {
    color: #fff;
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.footer {
    background-color: #0b2226;
    color: rgba(255, 255, 255, 0.7);
    padding: 4.5rem 0 2rem 0;
    border-top: 4px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-about p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-info li {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-info li i {
    color: var(--color-gold-light);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Wide Screens / Desktop */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .section {
        padding: 4rem 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image-container {
        margin: 0 auto;
    }
    .savings-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .savings-media-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .benefits-bottom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .benefits-promo-image {
        max-width: 600px;
        margin: 0 auto;
    }
    .pricing-bottom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 3rem;
        margin-top: 3rem;
    }
    .pricing-bottom-image {
        max-width: 600px;
        margin: 0 auto;
    }
    .timeline-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .timeline-container::after {
        display: none;
    }
    .timeline-step {
        padding: 0;
    }
    .step-image-box {
        height: 140px;
        max-width: 220px;
    }
    .tab-grid {
        grid-template-columns: 1fr;
    }
    .tab-grid .tab-item:nth-child(odd) {
        border-right: none;
    }
    .tab-grid .tab-item {
        border-bottom: 1px solid var(--color-border-light);
    }
    .tab-grid .tab-item:last-child {
        border-bottom: none;
    }
    .testimonial-faq-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .cta-enroll-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }
    .story-cards-grid {
        max-width: 650px;
        margin: 3.5rem auto 0 auto;
        position: relative;
    }
    .story-cards-track {
        gap: 1.5rem;
    }
    .story-card {
        flex: 0 0 100%;
    }
    .tab-grid {
        max-height: 520px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .tab-grid::-webkit-scrollbar {
        width: 5px;
    }
    .tab-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    .tab-grid::-webkit-scrollbar-thumb {
        background: var(--color-border-light);
        border-radius: 4px;
    }
    .nav-container {
        height: 70px;
    }
    .logo-img {
        height: 48px;
    }
    .header.scrolled .nav-container {
        height: 55px;
    }
    .header.scrolled .logo-img {
        height: 36px;
    }
    .header.scrolled .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        gap: 2.5rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 998;
    }
    .nav-menu.nav-active {
        left: 0;
    }
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    /* Hamburger active animation */
    .nav-toggle.nav-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-toggle.nav-active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.nav-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .nav-cta {
        display: none; /* Hide top CTA on mobile navigation */
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    .hero-image-link {
        max-width: 360px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .savings-comparison-card-group {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .ecosystem-bullets-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        /* Use flex to allow order control on mobile */
        display: flex;
        flex-direction: column;
    }
    /* Mobile order: Family Plus â†’ Triple â†’ Duo â†’ Individual */
    .pricing-card:nth-child(4) { order: 1; } /* Family Plus  â†’ 1st */
    .pricing-card:nth-child(3) { order: 2; } /* Triple       â†’ 2nd */
    .pricing-card:nth-child(2) { order: 3; } /* Duo          â†’ 3rd */
    .pricing-card:nth-child(1) { order: 4; } /* Individual   â†’ 4th */
    .pricing-card.popular-tier {
        transform: none;
    }
    .pricing-card.popular-tier:hover {
        transform: translateY(-5px);
    }
    .tab-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }
    .tab-card-header {
        padding: 1.25rem 1.5rem;
    }
    .tab-item {
        padding: 1.25rem 1.5rem;
    }
    .enroll-form-card {
        padding: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .faq-accordion {
        max-width: 100%;
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* CTA New Design */
.cta-new-design {
    padding: 3rem 0;
    text-align: center;
}
.cta-new-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.cta-new-subtitle {
    color: var(--color-gold-light, #ffb400);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4rem;
}
.cta-new-bullets-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.cta-new-bullet {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
    cursor: default;
}
.cta-new-bullet:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.cta-pill {
    display: inline-block;
    background-color: var(--color-gold-light, #ffb400);
    color: #111;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}
.cta-new-bullet p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.5;
}
.cta-new-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    align-self: stretch;
}
.cta-new-bottom {
    text-align: center;
}
.cta-bottom-title {
    color: var(--color-gold-light, #ffb400);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cta-bottom-quote {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-bottom-hr {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 60%;
    margin: 0 auto 2.5rem auto;
}
.btn-outline-yellow {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: var(--color-gold-light, #ffb400);
    padding: 0.65rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    text-transform: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-yellow:hover {
    background-color: var(--color-gold-light, #ffb400);
    color: #111;
    border-color: var(--color-gold-light, #ffb400);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.4);
}
@media screen and (max-width: 991px) {
    .cta-new-title {
        font-size: 1.8rem;
    }
    .cta-new-subtitle {
        font-size: 1.1rem;
    }
    .cta-new-bullets-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .cta-new-divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }
}

/* Extra Small Mobile Screens (430px, 390px, 375px, 320px) */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    .section {
        padding: 3rem 0;
    }
    
    /* Hero */
    .hero {
        padding: 4.5rem 0;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-image-overlay {
        bottom: 0;
    }
    .btn-enroll-overlay {
        font-size: 1.15rem;
        padding: 10px 20px;
    }
    
    /* Uniform Mobile Typography for ALL Headings */
    h1, h2, h3, h4, h5, h6, 
    .hero-content h1, 
    .section-header h2, 
    .love-curved-section .love-header h2, 
    .savings-section .section-header h2, 
    .exists-section .section-header h2, 
    .benefits-promo-content h3, 
    .cta-new-title, 
    .accordion-header h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .exists-item-text h3 {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Benefits */
    .benefit-card {
        padding: 1.5rem 1.25rem;
    }
    .benefits-promo-content h3 {
        font-size: 1.5rem;
    }
    
    /* Savings */
    .potential-savings-amount {
        font-size: 2rem;
    }
    
    /* Exists / Story */
    .exists-section .section-header .lead-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .exists-stat-num {
        font-size: 2.2rem;
    }
    
    /* Testimonials / Reviews */
    .story-card {
        padding: 1.25rem !important;
    }
    .story-quote {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
        padding-right: 0 !important;
    }
    .story-avatar {
        width: 60px !important;
        height: 60px !important;
        top: -15px !important;
        right: 15px !important;
    }
    
    /* Love Curve */
    .love-subtitle {
        font-size: 1rem;
    }
    .node-md { width: 50px; height: 50px; }
    .node-lg { width: 70px; height: 70px; border-width: 3px; }
    
    /* Pricing */
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    .pricing-price {
        font-size: 2rem;
    }
    
    /* Timeline / How it Works */
    .timeline-steps-column {
        padding-left: 1.5rem;
    }
    .vertical-progress-line-bg {
        left: 0px;
    }
    .step-icon-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .timeline-nav-step {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    /* Tabs Component */
    .tab-btn {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    /* CTA Widget */
    .cta-new-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .cta-pill {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
    .cta-new-bullet p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-bottom {
        font-size: 0.75rem;
    }
    .footer-bottom-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================================
   Specialties Section
========================================= */
.specialties-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.specialties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.desktop-media {
    position: sticky;
    top: 100px;
    align-self: start;
}
.specialties-media .specialties-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.specialties-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.specialty-card {
    background: #fff;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    border-left: 4px solid var(--color-primary-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}
.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left-color: #ffb400; /* Gold */
}
.specialty-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}
.specialty-hidden {
    display: none !important;
}
.specialties-list.show-all .specialty-hidden {
    display: flex !important;
}
.toggle-specialties-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.toggle-specialties-btn i {
    transition: transform 0.3s ease;
}
.toggle-specialties-btn.expanded i {
    transform: rotate(180deg);
}
@media (max-width: 992px) {
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .desktop-media {
        display: none !important;
    }
    .mobile-media {
        display: block !important;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}
@media (max-width: 575px) {
    .specialties-list {
        grid-template-columns: 1fr;
    }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-white);
    padding: 0.5rem 1rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 998;
    display: none; /* hidden on desktop */
}
.btn-sticky-enroll {
    width: 100%;
    font-size: 1rem;
    padding: 0.6rem;
    background-color: #ffb400;
    color: #111;
    text-align: center;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.2px;
}
.btn-sticky-enroll:hover {
    color: #ffffff !important;
}
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    .back-to-top {
        bottom: 85px; /* raise back to top button so it clears the sticky cta */
    }
    .footer {
        padding-bottom: 5.5rem;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes ctaPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 176, 64, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(251, 176, 64, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 176, 64, 0); }
}

.cta-pulse-anim {
    animation: ctaPulse 2.5s infinite;
}

@keyframes textPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: #ffd700; text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
    100% { transform: scale(1); }
}

.price-pulse-anim {
    animation: textPulse 2.5s infinite;
    display: inline-block;
}

.interactive-family-img:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}


/* =========================================================
   MOBILE FIXES FOR LANDING PAGE
========================================================= */
/* Remove ALL pulsing animations completely as requested */
.btn-sticky-enroll, 
.mobile-sticky-cta .btn, 
.mobile-sticky-cta .cta-member-btn, 
.cta-new-bottom .cta-member-btn, 
.back-to-top, 
.lead-modal, 
.lead-modal .modal-content, 
.lead-modal .lead-modal-content, 
.lead-modal .btn, 
#leadPopup .btn,
.cta-pulse-anim,
.price-pulse-anim,
.pulse { 
    animation: none !important; 
}

/* Direct override for Hero Price Text to bypass caching */
.hero-price {
    font-size: 1.2rem !important;
}
.hero-price .price-highlight {
    font-size: 2.2rem !important;
}

@media (max-width: 991px) {
    body { overflow-x: clip !important; padding-top: 0 !important; }
    .header { margin: 0 !important; padding: 0 !important; height: 70px !important; min-height: 70px !important; max-height: 70px !important; top: 0 !important; position: sticky !important; width: 100% !important; transition: none !important; z-index: 9999 !important; background: #fff !important; border-bottom: none !important; }
    .nav-container { display: flex !important; justify-content: center !important; margin: 0 !important; padding: 0 !important; height: 70px !important; min-height: 70px !important; align-items: center !important; width: 100% !important; }
    .logo-link { display: flex !important; align-items: center !important; justify-content: center !important; width: 100% !important; text-align: center !important; }
    .logo-img { height: 48px !important; transition: none !important; display: block !important; margin: 0 auto !important; }
    .btn-enroll-overlay { white-space: nowrap !important; font-size: clamp(14px, 5vw, 1.4rem) !important; padding: 14px 4vw !important; max-width: 100% !important; }
    .hero { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important; /* Remove massive flex gaps */
    }
    .hero-content, .hero-image-wrapper, .hero-image-overlay {
        display: contents !important;
    }
    .hero-content .badge { order: 1; margin-bottom: 5px !important; margin-top: 0 !important; display: inline-block; }
    .hero-content h1 { order: 2; margin-top: 0 !important; margin-bottom: -15px !important; padding: 0 !important; }
    .hero-image-link { 
        order: 3; 
        display: block; 
        margin-top: 0px !important;
        margin-bottom: -25px !important;
        width: 115% !important;
        margin-left: -7.5% !important;
    }
    
    /* Show the button */
    .hero-image-overlay .btn-enroll-overlay {
        display: inline-block !important;
        order: 4;
        margin-top: -70px !important;
        margin-bottom: 25px !important;
        position: relative;
        z-index: 20;
    }
    
    /* Price and subprice */
    .hero-price { 
        order: 5; 
        position: static !important; 
        font-size: 1.5rem !important; 
        margin-top: 0px !important; 
        margin-bottom: 0px !important; 
        padding: 0 !important;
    }
    .hero-price .price-highlight {
        font-size: 2.5rem !important;
    }
    .hero-subprice {
        order: 6;
        position: static !important;
        margin-top: 0px !important;
        margin-bottom: 5px !important;
        padding: 0 !important;
    }
    
    .hero-content p { order: 7; margin-top: 5px !important; margin-bottom: 15px !important; }
}
