:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #1e293b;
    --secondary-light: #334155;
    --accent: #10b981;
    --accent-dark: #059669;
    --warm: #f8fafc;
    --warm-dark: #f1f5f9;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-nav {
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
}

.btn-nav:hover {
    background: var(--accent-dark);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--accent);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 20px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.logo-icon svg {
    width: 32px;
    height: 32px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

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

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:not(.btn):hover,
.nav a:not(.btn).active {
    color: var(--primary);
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after {
    width: 100%;
}

/* ===================================
   CLOUD HERO SECTION - REALISTIC SKY
   =================================== */

.hero-cloud {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sky-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        #4A90C2 0%,
        #6BB3D9 15%,
        #87CEEB 30%,
        #A8DDF0 50%,
        #C9EBF7 70%,
        #E8F6FC 85%,
        #F5FBFF 100%
    );
    z-index: 0;
}

.glare-effect {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 45%;
    height: 50%;
    background: radial-gradient(
        ellipse 80% 80% at 30% 30%,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 20%,
        rgba(255, 248, 230, 0.4) 40%,
        rgba(135, 206, 235, 0.1) 60%,
        transparent 80%
    );
    z-index: 1;
    pointer-events: none;
}

.sun-rays {
    display: none;
}

.cloud-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.cloud-layer-1 { z-index: 5; }

.cloud-1 {
    width: 120px;
    height: 120px;
    bottom: 5%;
    left: 5%;
    animation: cloudDrift1 60s linear infinite;
}
.cloud-1::before {
    width: 150px;
    height: 100px;
    top: 20px;
    left: 60px;
}
.cloud-1::after {
    width: 100px;
    height: 80px;
    top: 10px;
    left: 130px;
}

.cloud-2 {
    width: 100px;
    height: 100px;
    bottom: 8%;
    right: 10%;
    animation: cloudDrift2 70s linear infinite;
}
.cloud-2::before {
    width: 130px;
    height: 90px;
    top: 15px;
    left: 50px;
}
.cloud-2::after {
    width: 90px;
    height: 70px;
    top: 5px;
    left: 110px;
}

.cloud-3 {
    width: 140px;
    height: 140px;
    bottom: 2%;
    left: 30%;
    animation: cloudDrift3 55s linear infinite;
}
.cloud-3::before {
    width: 180px;
    height: 120px;
    top: 25px;
    left: 70px;
}
.cloud-3::after {
    width: 120px;
    height: 90px;
    top: 10px;
    left: 160px;
}

.cloud-4 {
    width: 90px;
    height: 90px;
    bottom: 12%;
    left: 55%;
    animation: cloudDrift1 65s linear infinite reverse;
}
.cloud-4::before {
    width: 110px;
    height: 75px;
    top: 15px;
    left: 45px;
}
.cloud-4::after {
    width: 80px;
    height: 60px;
    top: 5px;
    left: 100px;
}

.cloud-5 {
    width: 110px;
    height: 110px;
    bottom: 3%;
    right: 25%;
    animation: cloudDrift2 58s linear infinite;
}
.cloud-5::before {
    width: 140px;
    height: 95px;
    top: 20px;
    left: 55px;
}
.cloud-5::after {
    width: 100px;
    height: 75px;
    top: 8px;
    left: 120px;
}

.cloud-layer-2 { z-index: 4; }

.cloud-6 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 8%;
    opacity: 0.9;
    animation: cloudDrift3 75s linear infinite;
}
.cloud-6::before {
    width: 100px;
    height: 65px;
    top: 12px;
    left: 40px;
}
.cloud-6::after {
    width: 70px;
    height: 50px;
    top: 5px;
    left: 85px;
}

.cloud-7 {
    width: 95px;
    height: 95px;
    bottom: 18%;
    right: 5%;
    opacity: 0.85;
    animation: cloudDrift1 80s linear infinite;
}
.cloud-7::before {
    width: 120px;
    height: 80px;
    top: 15px;
    left: 50px;
}
.cloud-7::after {
    width: 85px;
    height: 60px;
    top: 5px;
    left: 105px;
}

.cloud-8 {
    width: 70px;
    height: 70px;
    bottom: 25%;
    left: 35%;
    opacity: 0.8;
    animation: cloudDrift2 85s linear infinite reverse;
}
.cloud-8::before {
    width: 90px;
    height: 58px;
    top: 10px;
    left: 35px;
}
.cloud-8::after {
    width: 60px;
    height: 45px;
    top: 3px;
    left: 75px;
}

.cloud-9 {
    width: 85px;
    height: 85px;
    bottom: 22%;
    right: 30%;
    opacity: 0.85;
    animation: cloudDrift3 72s linear infinite;
}
.cloud-9::before {
    width: 105px;
    height: 70px;
    top: 13px;
    left: 42px;
}
.cloud-9::after {
    width: 75px;
    height: 55px;
    top: 5px;
    left: 90px;
}

.cloud-layer-3 { z-index: 3; }

.cloud-10 {
    width: 60px;
    height: 60px;
    bottom: 35%;
    left: 12%;
    opacity: 0.6;
    animation: cloudDrift1 90s linear infinite;
}
.cloud-10::before {
    width: 75px;
    height: 50px;
    top: 10px;
    left: 30px;
}
.cloud-10::after {
    width: 50px;
    height: 38px;
    top: 3px;
    left: 60px;
}

.cloud-11 {
    width: 70px;
    height: 70px;
    bottom: 40%;
    right: 15%;
    opacity: 0.55;
    animation: cloudDrift2 95s linear infinite reverse;
}
.cloud-11::before {
    width: 88px;
    height: 58px;
    top: 12px;
    left: 35px;
}
.cloud-11::after {
    width: 60px;
    height: 42px;
    top: 4px;
    left: 72px;
}

.cloud-12 {
    width: 55px;
    height: 55px;
    bottom: 45%;
    left: 45%;
    opacity: 0.5;
    animation: cloudDrift3 100s linear infinite;
}
.cloud-12::before {
    width: 70px;
    height: 45px;
    top: 8px;
    left: 28px;
}
.cloud-12::after {
    width: 48px;
    height: 35px;
    top: 2px;
    left: 55px;
}

@keyframes cloudDrift1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

@keyframes cloudDrift2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-80px); }
}

@keyframes cloudDrift3 {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

.particles {
    display: none;
}

/* Hero logo container */
.hero-logo-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

/* Logo glow effect */
.logo-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(135, 206, 235, 0.3) 60%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Logo reveal animation container */
.logo-reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: logoReveal 1.5s ease-out forwards;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.hero-main-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 40px rgba(30, 58, 95, 0.25));
    animation: logoReveal 1.5s ease-out forwards;
}

/* Logo hands animation */
.hand {
    animation: handReveal 2s ease-out forwards;
    opacity: 0;
}

.hand-1 { animation-delay: 0.3s; }
.hand-2 { animation-delay: 0.5s; }
.hand-3 { animation-delay: 0.4s; }
.hand-4 { animation-delay: 0.6s; }

@keyframes handReveal {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Person figures animation */
.person {
    animation: personReveal 1.5s ease-out forwards;
    opacity: 0;
}

.person-head-1, .person-body-1 { animation-delay: 0.8s; }
.person-head-2, .person-body-2 { animation-delay: 1s; }

@keyframes personReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Leaf/drop animation */
.leaf {
    animation: leafGrow 1.8s ease-out forwards;
    opacity: 0;
    transform-origin: center bottom;
}

.leaf:first-of-type { animation-delay: 1.2s; }
.leaf-side { animation-delay: 1.4s; }

@keyframes leafGrow {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Hero text container */
.hero-text-container {
    text-align: center;
    animation: textReveal 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.title-main {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 4px;
    text-shadow: 0 2px 20px rgba(30, 58, 95, 0.2);
}

.title-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #4CAF50;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1e3a5f;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Hero CTA button */
.btn-hero {
    margin-top: 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: #ffffff;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow:
        0 10px 40px rgba(30, 58, 95, 0.3),
        0 5px 20px rgba(30, 58, 95, 0.2);
    transition: all 0.4s ease;
    animation: btnReveal 1.5s ease-out 1.5s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 50px rgba(30, 58, 95, 0.4),
        0 8px 25px rgba(30, 58, 95, 0.3);
    background: linear-gradient(135deg, #2d5a87 0%, #3d7ab7 100%);
}

.btn-hero:hover::before {
    left: 100%;
}

@keyframes btnReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: scrollFade 2s ease-in-out 3s forwards, scrollBounce 2s ease-in-out infinite 3s;
    opacity: 0;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #1e3a5f;
    border-bottom: 2px solid #1e3a5f;
    transform: rotate(45deg);
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: #1e3a5f;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes scrollFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Original hero styles (kept for backwards compatibility) */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--warm-dark) 100%);
}

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

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.family-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-main-logo {
        max-width: 320px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .logo-glow {
        width: 280px;
        height: 280px;
    }

    .cloud-layer-1 .cloud,
    .cloud-layer-2 .cloud,
    .cloud-layer-3 .cloud {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .hero-cloud {
        min-height: 100vh;
        padding: 80px 20px;
    }

    .hero-main-logo {
        max-width: 280px;
    }

    .hero-tagline {
        font-size: 1rem;
        padding: 0 20px;
    }

    .btn-hero {
        padding: 14px 36px;
        font-size: 1rem;
    }

    .logo-glow {
        width: 200px;
        height: 200px;
    }

    .glare-effect {
        width: 50%;
        height: 45%;
        top: -8%;
        left: -8%;
    }

    .cloud-layer-1 .cloud {
        transform: scale(0.6);
    }

    .cloud-layer-2 .cloud {
        transform: scale(0.5);
    }

    .cloud-layer-3 .cloud {
        transform: scale(0.4);
    }

    .scroll-indicator {
        display: none;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }
}

.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--warm-dark) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.problem-section {
    padding: 80px 0;
    background: var(--secondary);
    color: var(--white);
}

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

.problem-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.problem-message h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.problem-message p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.approach-section {
    padding: 100px 0;
    background: var(--white);
}

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

.approach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--warm-dark);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.approach-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.approach-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.trust-section {
    padding: 60px 0;
    background: var(--warm);
}

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon.primerica {
    background: var(--secondary);
    padding: 12px 24px;
    border-radius: 8px;
}

.primerica-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 2px;
}

.badge-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--warm);
    transform: translateY(-2px);
}

.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-section {
    padding: 60px 0;
    background: var(--warm);
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.mission-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mission-statement {
    font-size: 1.3rem;
    color: var(--text);
    font-style: italic;
}

.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.partnership-section {
    padding: 100px 0;
    background: var(--warm);
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.partnership-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partnership-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.primary-service {
    padding: 100px 0;
    background: var(--white);
}

.service-highlight {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-highlight h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-details {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.detail-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.detail-item p {
    color: var(--text-light);
}

.detail-item ul {
    list-style: none;
    color: var(--text-light);
}

.detail-item ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.detail-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.detail-item.highlight {
    background: var(--warm);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.service-highlight-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

.service-highlight-visual svg {
    width: 100%;
    max-width: 300px;
}

.term-life-section {
    padding: 100px 0;
    background: var(--warm);
}

.term-life-content {
    max-width: 900px;
    margin: 0 auto;
}

.term-life-content .service-tag {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
}

.term-life-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.term-life-content .service-intro {
    text-align: center;
    margin-bottom: 48px;
}

.term-life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.term-benefit {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.term-benefit h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.term-benefit p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.additional-services {
    padding: 100px 0;
    background: var(--white);
}

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

.additional-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--warm);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.additional-item:hover {
    background: var(--warm-dark);
}

.additional-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    flex-shrink: 0;
}

.additional-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.additional-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.difference-section {
    padding: 100px 0;
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    background: var(--warm);
}

.comparison-card.featured {
    background: var(--white);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.comparison-card.featured .comparison-header {
    color: var(--accent);
}

.comparison-header h3 {
    font-size: 1.4rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--warm-dark);
    font-size: 0.95rem;
    color: var(--text);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-icon.negative {
    color: #ef4444;
}

.comparison-icon.positive {
    color: var(--accent);
}

.who-we-serve {
    padding: 100px 0;
    background: var(--warm);
}

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

.serve-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-bottom: 3px solid var(--accent);
}

.serve-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.serve-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.serve-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.what-sets-apart {
    padding: 100px 0;
    background: var(--white);
}

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

.apart-item {
    text-align: center;
}

.apart-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 16px;
}

.apart-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.apart-item p {
    color: var(--text-light);
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-category {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
}

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

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

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

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer.open {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--warm-dark);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form .btn {
    width: 100%;
    margin-top: 8px;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--warm);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.expect-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expect-item {
    display: flex;
    gap: 12px;
}

.expect-icon {
    flex-shrink: 0;
    color: var(--accent);
}

.expect-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--primary);
}

.contact-detail div {
    display: flex;
    flex-direction: column;
}

.contact-detail strong {
    color: var(--secondary);
    font-size: 0.9rem;
}

.contact-detail span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.modal-note {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
}

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    color: var(--accent);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-about p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    padding: 6px 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    opacity: 0.8;
    padding: 6px 0;
    font-size: 0.95rem;
}

.footer-disclosure {
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.footer-disclosure p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        display: none;
    }

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

    .problem-message {
        grid-column: 1 / -1;
        text-align: center;
    }

    .approach-grid,
    .term-life-grid,
    .additional-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .partnership-stats,
    .serve-grid,
    .apart-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-highlight {
        grid-template-columns: 1fr;
    }

    .service-highlight-visual {
        display: none;
    }

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

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

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

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .nav a::after {
        display: none;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .values-grid,
    .partnership-stats,
    .serve-grid,
    .apart-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .modal-content {
        padding: 32px 24px;
    }
}
