/* ===================================
   THE HEALING SONG - Global Styles
   Samudri Ocean Palette + Gold Accents
   =================================== */

:root {
    /* Brightened Samudri Ocean Palette */
    --primary-deep: #1E88A8;      /* Brighter ocean blue (was #063A4A) */
    --primary-teal: #26C6B9;      /* Vibrant turquoise (was #0C7C7B) */
    --sea-mist: #F0FAFF;          /* Lighter, fresher blue-white (was #EAF5F6) */
    --soft-sand: #FFF9F0;         /* Warmer cream (was #F6F2EA) */
    --gold-accent: #FFD93D;       /* Sunny bright gold (was #C9A24A) */
    --coral-accent: #FF7F9E;      /* NEW: Happy coral pink */
    --charcoal: #2C3E50;          /* Softer dark (was #0F172A) */
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-deep);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

.lead {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--primary-deep);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-deep) 100%);
    color: var(--white);
    border-color: var(--primary-teal);
    box-shadow: 0 4px 15px rgba(30, 136, 168, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--coral-accent) 0%, var(--gold-accent) 100%);
    border-color: var(--coral-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 127, 158, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-deep);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
}

.btn-outline:hover {
    background-color: var(--gold-accent);
    color: var(--primary-deep);
    transform: translateY(-2px);
}

/* Gold Dot Accent */
.gold-dot {
    color: var(--gold-accent);
    font-weight: 600;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(6, 58, 74, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-menu a:hover {
    color: var(--primary-teal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-deep);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 50%, var(--sea-mist) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

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

/* THE HEALING SONG - Main Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    
    /* OPTION 8: Simple White + Ocean Teal Border (5px) - Perfect Samudri Vibe */
    color: #FFFFFF;
    
    /* Extra thick Ocean Teal border - 5px for bold Samudri presence */
    -webkit-text-stroke: 5px #1a5f7a;
    text-stroke: 5px #1a5f7a;
    
    /* Soft ocean glow */
    text-shadow: 
        0 0 12px rgba(26, 95, 122, 0.6),
        0 0 24px rgba(26, 95, 122, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.5);
    
    paint-order: stroke fill;
}

/* Regulate Mind • Body • Soul - Original Tagline */
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    line-height: 1.5;
    letter-spacing: 0.5px;
    
    /* Deep ocean teal border - matching THE HEALING SONG */
    -webkit-text-stroke: 3px #1a5f7a;
    text-stroke: 3px #1a5f7a;
    
    /* Soft ocean glow */
    text-shadow: 
        0 0 8px rgba(26, 95, 122, 0.5),
        0 0 16px rgba(26, 95, 122, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.4);
    
    paint-order: stroke fill;
}

/* Everyone has their own healing song deep inside them */
.hero-opening {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
    line-height: 1.4;
    
    /* Ocean teal border */
    -webkit-text-stroke: 2px #1a5f7a;
    text-stroke: 2px #1a5f7a;
    text-shadow: 
        0 0 6px rgba(26, 95, 122, 0.4),
        0 0 12px rgba(26, 95, 122, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    paint-order: stroke fill;
}

/* A melody of peace, strength, and wholeness */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
    color: #FFFFFF;
    line-height: 1.4;
    
    /* Ocean teal border */
    -webkit-text-stroke: 2px #1a5f7a;
    text-stroke: 2px #1a5f7a;
    text-shadow: 
        0 0 6px rgba(26, 95, 122, 0.4),
        0 0 12px rgba(26, 95, 122, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    paint-order: stroke fill;
}

/* Depression • Anxiety • Emotional wounds • etc. (2 lines) */
.hero-pain-points {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #D2691E;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
}

/* These are just the noise drowning out your true song */
.hero-noise {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-style: italic;
    
    /* Ocean teal border */
    -webkit-text-stroke: 1.5px #1a5f7a;
    text-stroke: 1.5px #1a5f7a;
    text-shadow: 
        0 0 5px rgba(26, 95, 122, 0.3),
        0 0 10px rgba(26, 95, 122, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    paint-order: stroke fill;
}

/* Let's recognize it. Revive it. Rejuvenate with it. Relive it. */
.hero-journey {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.5;
    text-shadow: 0 0 15px rgba(255, 215, 0, 1), 0 0 25px rgba(255, 215, 0, 0.7), 0 2px 6px rgba(0,0,0,0.6);
    letter-spacing: 0.5px;
}

/* In 60 minutes, rediscover the rhythm that changes everything */
.hero-transformation {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    
    /* Ocean teal border */
    -webkit-text-stroke: 2px #1a5f7a;
    text-stroke: 2px #1a5f7a;
    text-shadow: 
        0 0 6px rgba(26, 95, 122, 0.4),
        0 0 12px rgba(26, 95, 122, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    paint-order: stroke fill;
}

.hero-trust {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.5px;
    
    /* Ocean teal border */
    -webkit-text-stroke: 1.5px #1a5f7a;
    text-stroke: 1.5px #1a5f7a;
    text-shadow: 
        0 0 5px rgba(26, 95, 122, 0.3),
        0 0 10px rgba(26, 95, 122, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    paint-order: stroke fill;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-location {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   SECTION HEADER
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 50%, var(--coral-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--primary-teal);
    font-weight: 500;
}

/* ===================================
   WHO THIS IS FOR SECTION
   =================================== */
.who-this-is-for {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--white) 0%, var(--sea-mist) 100%);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
    box-shadow: 0 2px 8px rgba(30, 136, 168, 0.08);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(38, 198, 185, 0.2);
    border-left-color: var(--coral-accent);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--primary-teal);
    font-weight: 700;
    min-width: 24px;
}

.checklist-item p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.5;
}

.who-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.who-statement {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--section-padding);
    background-color: var(--soft-sand);
}

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

.about-text p {
    margin-bottom: 1.5rem;
}

.healing-list {
    list-style: none;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.healing-list li {
    padding-left: 1.5rem;
    position: relative;
}

.healing-list li::before {
    content: '•';
    color: var(--gold-accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.credentials {
    list-style: none;
    margin: 1.5rem 0;
}

.credentials li {
    padding: 0.5rem 0;
}

/* ===================================
   METHOD SECTION (7-Step)
   =================================== */
.method {
    padding: var(--section-padding);
    background-color: var(--white);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.method-step {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sea-mist) 0%, var(--white) 100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.method-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 217, 61, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, var(--soft-sand) 100%);
    border-color: var(--gold-accent);
}

/* Real Image Icons with Vibrant Gold Treatment */
.step-icon-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--gold-accent);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.5);
    background: linear-gradient(135deg, var(--gold-accent), var(--coral-accent));
}

.step-icon-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, transparent 20%, rgba(212, 175, 55, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.step-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.4) saturate(1.3) contrast(1.1) brightness(1.05);
    transition: all 0.4s ease;
}

.method-step:hover .step-icon-image img {
    filter: sepia(0.5) saturate(1.4) contrast(1.2) brightness(1.1);
    transform: scale(1.05);
}

.method-step:hover .step-icon-image {
    border-color: #FFD700;
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.method-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-deep);
}

.method-step p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding);
    background-color: var(--soft-sand);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold-accent);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 136, 168, 0.08);
}

.service-card:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(38, 198, 185, 0.2);
    border-left-color: var(--coral-accent);
    background: linear-gradient(135deg, #FFFFFF 0%, var(--sea-mist) 100%);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

/* ===================================
   FREE CONSULTATION SECTION
   =================================== */
.free-consultation {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 100%);
    color: var(--white);
    text-align: center;
}

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

.free-consult-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.free-consultation h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.free-consultation .lead {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.free-consult-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefit {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gold-accent);
}

.free-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */
.guarantee {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--soft-sand) 0%, var(--white) 100%);
}

.guarantee-content {
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-deep);
    text-align: center;
}

.guarantee .lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guarantee-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
    box-shadow: 0 4px 15px rgba(30, 136, 168, 0.1);
}

.guarantee-card.no-refund {
    border-left-color: var(--charcoal);
    opacity: 0.9;
}

.guarantee-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary-deep);
}

.guarantee-list {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.guarantee-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.guarantee-list li::before {
    content: '•';
    color: var(--primary-teal);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.guarantee-details {
    background-color: var(--sea-mist);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.guarantee-details h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-deep);
    text-align: center;
}

.tracking-info {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tracking-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.tracking-icon {
    font-size: 2rem;
    min-width: 40px;
}

.tracking-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-deep);
}

.tracking-item p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.guarantee-why h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-deep);
}

.guarantee-why p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.guarantee-commitment {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-top: 1.5rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--sea-mist);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(30, 136, 168, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(38, 198, 185, 0.2);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--charcoal);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.testimonial-issue {
    font-size: 0.9375rem;
    color: var(--primary-teal);
    font-weight: 500;
}

.testimonial-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-statement {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
}

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages {
    padding: var(--section-padding);
    background-color: var(--white);
}

/* Pioneer Program Banner */
.pioneer-banner {
    background: linear-gradient(135deg, #FFD93D 0%, #FF7F9E 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 8px 30px rgba(255, 127, 158, 0.35);
    position: relative;
    overflow: hidden;
}

.pioneer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

.pioneer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #F72585;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pioneer-banner h3 {
    font-size: 2.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.pioneer-banner p {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.pioneer-slots {
    position: relative;
    z-index: 1;
}

.slots-remaining {
    display: inline-block;
    background: var(--charcoal);
    color: #FFD93D;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--sea-mist) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(38, 198, 185, 0.15);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 127, 158, 0.3);
    border-color: var(--coral-accent);
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-sand) 100%);
}

.package-card.featured {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 100%);
    color: var(--white);
    border-color: var(--gold-accent);
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.4);
}

.package-card.featured h3,
.package-card.featured .package-price {
    color: var(--white);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--gold-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-price {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-original {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(12, 124, 123, 0.6);
    text-decoration: line-through;
}

.price-pioneer {
    font-size: 3.5rem;
    font-weight: 700;
    color: #F72585;
    line-height: 1;
}

.package-card.featured .price-pioneer {
    color: #FFD93D;
}

.package-duration {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.package-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '✓';
    color: var(--gold-accent);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.package-card.featured .package-features li::before {
    color: var(--gold-accent);
}

.package-tagline {
    font-size: 1.125rem;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.package-card.featured .package-tagline {
    color: var(--white);
}

.package-timeline,
.package-outcomes {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
}

.package-card.featured .package-timeline,
.package-card.featured .package-outcomes {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.package-timeline p,
.package-outcomes p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.package-timeline strong,
.package-outcomes strong {
    color: var(--primary-deep);
}

.package-card.featured .package-timeline strong,
.package-card.featured .package-outcomes strong {
    color: #FFD93D;
}

/* Timeline Science Section */
.timeline-science {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--soft-sand) 0%, var(--sea-mist) 100%);
    border-radius: 16px;
    text-align: center;
}

.timeline-science h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-deep);
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.science-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(6, 58, 74, 0.1);
    transition: all 0.3s ease;
}

.science-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 127, 158, 0.25);
}

.science-card h4 {
    font-size: 1.75rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.science-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.money-back {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--primary-teal);
    font-weight: 600;
}

/* VIP Packages */
.vip-packages {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gold-accent);
}

.vip-heading {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 50%, var(--coral-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--primary-teal);
    margin-bottom: 2.5rem;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.vip-card {
    background: linear-gradient(135deg, var(--soft-sand) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid var(--gold-accent);
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.25);
}

.vip-card.premium {
    border-color: var(--coral-accent);
    box-shadow: 0 8px 25px rgba(255, 127, 158, 0.25);
}

.vip-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.vip-card.premium .vip-label {
    background: var(--coral-accent);
}

.vip-card h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.vip-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    text-align: center;
    margin: 1.5rem 0;
}

.vip-features {
    list-style: none;
    margin: 2rem 0;
}

.vip-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
}

.vip-features li::before {
    content: '✓';
    color: var(--primary-teal);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

.vip-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Corporate Section */
.corporate-section {
    background-color: var(--soft-sand);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.corporate-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.corporate-text p {
    margin-bottom: 1.5rem;
}

.corporate-modules {
    list-style: none;
    margin-top: 1rem;
}

.corporate-modules li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--gold-accent);
}

.price-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-teal);
}

.corporate-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 1.5rem 0;
}

.corporate-price span {
    font-size: 1.25rem;
    font-weight: 400;
}

.price-box p {
    margin-bottom: 1rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding);
    background-color: var(--sea-mist);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.contact-title {
    font-size: 1.125rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(6, 58, 74, 0.1);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-deep);
}

.contact-item a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--primary-deep);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.9;
}

.footer-links h5,
.footer-legal h5,
.footer-social h5 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul,
.footer-social ul {
    list-style: none;
}

.footer-links li,
.footer-legal li,
.footer-social li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a,
.footer-social a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-social a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.85;
    font-size: 0.9375rem;
}

.footer-disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0.5rem auto 0;
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-deep);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--gold-accent);
}

.cookie-btn {
    background-color: var(--gold-accent);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background-color: var(--primary-teal);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.375rem; }
    
    .hero-title { font-size: 2.25rem; }
    .hero-tagline { font-size: 1.375rem; }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .packages-grid,
    .services-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}