/* ============================================
   ROOT & VARIABLES
   ============================================ */
:root {
    --primary-teal: #018497;
    --bright-cyan: #0CD3DB;
    --dark-teal: #003B4C;
    --primary-orange: #FE6554;
    --dark-navy: #00183A;
    --secondary-navy: #002A3F;
    --hot-pink: #EE2148;
    --mauve: #B6568E;
    --golden-yellow: #FFFB5D;
    --brand-yellow: #FFC618;
    --light-cyan: #38DCE8;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-navy);
    line-height: 1.6;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    color: var(--dark-navy);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--dark-navy);
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 2rem;
    color: var(--dark-navy);
}

p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

strong {
    color: var(--primary-teal);
    font-weight: 700;
}

/* ============================================
   BUTTONS & LINKS
   ============================================ */
.cta-button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--primary-orange);
    color: white;
    font-size: 1.25rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(254, 101, 84, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 101, 84, 0.4);
    background: linear-gradient(135deg, #FF7A6F 0%, var(--primary-orange) 100%);
}

.cta-button:active {
    transform: translateY(0);
}

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

a:hover {
    color: var(--dark-teal);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
}

.nav-brand img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-navy);
    transition: var(--transition);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF7A6F 100%);
    color: white !important;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 24, 58, 0.75) 0%, rgba(1, 132, 151, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-3xl) var(--spacing-lg);
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-subtitle {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-content .hero-subtitle strong {
    color: #FFC618;
    font-weight: 700;
}

/* Hero Eyebrow */
.hero-eyebrow {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

/* Hero Word Cycle */
.hero-word-cycle {
    display: inline-block;
    position: relative;
    color: #FFC618;
    min-width: 220px;
}

.hero-word-cycle .word {
    display: inline-block;
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: nowrap;
}

.hero-word-cycle .word.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* Hero Accent Line */
.hero-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #FFC618, var(--bright-cyan));
    border-radius: 2px;
    margin: 20px auto 28px;
    animation: expandLine 1s ease 0.6s both;
}

@keyframes expandLine {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

/* Hero Known For */
.hero-known {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.2px;
}

.hero-known-dot {
    color: #FFC618;
    opacity: 0.7;
}

.hero-personal-quote {
    margin-top: 10px;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    text-align: center;
    letter-spacing: 0.1px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-button-ghost {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.cta-button-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Floating Stat Badges */
.hero-stat {
    position: absolute;
    z-index: 3;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 14px 20px;
    text-align: center;
    color: white;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-stat-1 { bottom: 22%; left: 6%; animation-delay: 0s; }
.hero-stat-2 { top: 28%; right: 6%; animation-delay: 1.3s; }
.hero-stat-3 { bottom: 18%; right: 8%; animation-delay: 2.6s; }

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFC618;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-stat { display: none; }
    .hero-word-cycle { min-width: 160px; }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ============================================
   PHOTO BANNERS
   ============================================ */
.photo-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    will-change: transform;
}

.photo-banner:nth-of-type(2) .parallax-img {
    object-position: center 60%;
}

.photo-banner:nth-of-type(3) .parallax-img {
    object-position: center 70%;
}

@media (max-width: 1024px) {
    .photo-banner {
        height: 300px;
    }
    
    .parallax-img {
        height: 110%;
    }
}

@media (max-width: 768px) {
    .photo-banner {
        height: 250px;
    }
    
    .parallax-img {
        height: 100%;
    }
}

/* ============================================
   TESTIMONIAL SECTIONS
   ============================================ */
.testimonial {
    padding: var(--spacing-3xl) 0;
}

.testimonial-jesse {
    background: linear-gradient(135deg, #FFC618 0%, #FFD84D 50%, #FFFB5D 100%);
    color: var(--dark-navy);
}

/* Testimonial Banner (image background + quote on side) */
.testimonial-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-jesse-banner {
    background-image: url('../images/banner1.webp');
    min-height: 420px;
}

.testimonial-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 25%, rgba(0, 59, 76, 0.90) 55%);
    z-index: 1;
}

.testimonial-banner-content {
    position: relative;
    z-index: 2;
    width: 48%;
    padding: 60px 60px 60px 40px;
}

.testimonial-banner-quote p {
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    color: white;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-banner-quote footer {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    font-style: normal;
}

@media (max-width: 768px) {
    .testimonial-banner {
        justify-content: center;
        min-height: 320px;
        background-attachment: scroll;
    }
    .testimonial-banner-overlay {
        background: rgba(0, 59, 76, 0.82);
    }
    .testimonial-banner-content {
        width: 90%;
        padding: 40px 24px;
        text-align: center;
    }
}

.testimonial-name {
    color: var(--dark-teal);
    font-weight: 700;
}

.testimonial-company {
    color: var(--dark-teal);
    font-weight: 700;
}

.testimonial-mike {
    background: linear-gradient(135deg, #00183A 0%, #012F4F 50%, #023E50 100%);
    padding: 0;
}

.testimonial-mike-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.testimonial-mike .testimonial-quote-mark {
    font-size: 10rem;
    line-height: 0.6;
    color: #FFC618;
    opacity: 0.25;
    font-family: Georgia, serif;
    margin-bottom: 24px;
    text-align: center;
    display: block;
}

.testimonial-mike blockquote {
    text-align: center;
}

.testimonial-mike blockquote p {
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1.55;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.testimonial-mike blockquote footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.testimonial-mike blockquote footer strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFC618;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonial-mike blockquote footer span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.testimonial blockquote {
    text-align: center;
}

.testimonial blockquote p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial blockquote footer {
    font-size: 1rem;
    font-style: normal;
}

.testimonial-jesse blockquote p,
.testimonial-jesse blockquote footer {
    color: var(--dark-navy);
}

.testimonial-quote-mark {
    font-size: 6rem;
    line-height: 0.5;
    color: rgba(0,24,58,0.15);
    font-family: Georgia, serif;
    margin-bottom: 16px;
    text-align: center;
}

.testimonial-source {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(0,24,58,0.6);
    font-style: italic;
}

/* ============================================
   CORE PROBLEM SECTION
   ============================================ */
.core-problem {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.core-problem-title {
    margin-bottom: var(--spacing-xl);
}

.highlight-teal {
    color: var(--primary-teal);
}

.core-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.core-problem-text .intro-text {
    text-align: left;
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-sm);
}

.problem-list {
    list-style: disc;
    padding-left: 1.4rem;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.problem-list li {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 8px;
    line-height: 1.6;
}

.solution-text {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-top: var(--spacing-md);
}

.solution-cta {
    color: var(--primary-orange);
    font-weight: 700;
    font-style: italic;
    font-size: 1.3rem;
}

.core-problem-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 0;
    box-shadow: 0 40px 100px rgba(0, 24, 58, 0.5), 0 15px 40px rgba(0, 24, 58, 0.35);
    background: transparent;
}

@media (max-width: 768px) {
    .core-problem-grid {
        grid-template-columns: 1fr;
    }
    .core-problem-image {
        order: -1;
    }
    .core-problem-image img {
        max-height: 320px;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.benefits-bg-image {
    position: relative;
    background-image: url('../images/777A9874.webp');
    background-size: cover;
    background-position: 85% center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.benefits-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 38%,
        rgba(0, 0, 0, 0.10) 62%,
        rgba(0, 0, 0, 0.0) 100%
    );
    z-index: 1;
}

.benefits-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 480px;
    margin-left: calc(50% - 480px);
}

.benefits-title {
    text-align: left;
    color: #ffffff;
    margin-bottom: var(--spacing-2xl);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5);
}

.benefits-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--brand-yellow));
    margin: 14px 0 0;
    border-radius: 2px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.benefit-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-left-color: var(--brand-yellow);
    transform: translateX(6px);
}

.benefit-icon {
    display: none;
}

.benefit-card h3 {
    margin-bottom: 6px;
    color: #FFC618;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.7;
    font-size: 1.15rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ============================================
   WHO'S FIT SECTION
   ============================================ */
.whos-fit {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #00183A 0%, #012F4F 30%, #FE6554 65%, #FFC618 100%);
    position: relative;
    overflow: hidden;
}

.whos-fit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
    z-index: 0;
}

.whos-fit .container {
    position: relative;
    z-index: 1;
}

.whos-fit h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: var(--spacing-xl);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.fit-card {
    padding: 40px 44px;
    border-radius: 0;
    border: none;
}

.fit-yes {
    background: linear-gradient(145deg, #012233 0%, #013a52 100%);
    border-top: 4px solid #FFC618;
}

.fit-no {
    background: linear-gradient(145deg, #1a0a0a 0%, #2a1010 100%);
    border-top: 4px solid #FE6554;
}

.fit-card h3 {
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.fit-yes h3 {
    color: #FFC618;
}

.fit-no h3 {
    color: #FE6554;
}

.fit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-card li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fit-card li:last-child {
    border-bottom: none;
}

.fit-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC618;
    font-weight: bold;
    font-size: 1rem;
}

.fit-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #FE6554;
    font-weight: bold;
    font-size: 1rem;
}

.how-works {
    background: linear-gradient(135deg, #012233 0%, #023E50 100%);
    border: 1px solid rgba(255,198,24,0.25);
    color: white;
    padding: 52px 60px;
    border-radius: 20px;
    margin-top: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,198,24,0.15);
}

.how-works h3 {
    color: #FFC618;
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.how-works h3::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #FE6554, #FFC618);
    margin: 12px auto 32px;
    border-radius: 2px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.how-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 16px;
    transition: all 0.3s ease;
}

.how-item:hover {
    background: rgba(255,198,24,0.1);
    border-color: rgba(255,198,24,0.3);
    transform: translateY(-3px);
}

.how-item::before {
    content: '✓';
    color: #FFC618;
    font-weight: 900;
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,198,24,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-item p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.45;
    font-weight: 500;
    text-align: center;
}

.how-tagline {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}.solution-text {
    text-align: center;
    margin: var(--spacing-2xl) 0 0 0;
    font-size: 1.15rem;
    color: var(--dark-navy);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ENGAGEMENT OPTIONS SECTION
   ============================================ */
.engagement-options {
    padding: var(--spacing-3xl) 0 calc(var(--spacing-3xl) + 20px);
    background: #f4f7fb;
    position: relative;
}

.engagement-options::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FE6554, #FFC618, #018497);
}

.engagement-options h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 2.4rem;
    font-weight: 800;
    color: #00183A;
    letter-spacing: -0.5px;
}

.engagement-options .section-subhead {
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-2xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.option-card {
    background: #ffffff;
    padding: 36px 32px 32px;
    border-radius: 20px;
    border: 1.5px solid #e8edf5;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,24,58,0.06);
}

.option-card:hover {
    border-color: #FFC618;
    box-shadow: 0 16px 48px rgba(0,24,58,0.14);
    transform: translateY(-6px);
}

.option-card.featured {
    background: linear-gradient(160deg, #00183A 0%, #012F4F 100%);
    border: none;
    box-shadow: 0 20px 60px rgba(0,24,58,0.35);
    transform: scale(1.04);
    color: white;
}

.option-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 28px 72px rgba(0,24,58,0.45);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FE6554, #FFC618);
    color: #00183A;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.limited-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #018497, #0CD3DB);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.option-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00183A;
    line-height: 1.3;
}

.option-card.featured h3 {
    color: #FFC618;
}

.option-description {
    color: #666;
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 1.15rem;
    line-height: 1.65;
}

.option-card.featured .option-description {
    color: rgba(255,255,255,0.78);
}

.option-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    flex-wrap: wrap;
}

.price {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.option-card.featured .price {
    color: rgba(255,255,255,0.55);
}

.price-large {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FE6554;
    line-height: 1;
    letter-spacing: -1px;
}

.option-card.featured .price-large {
    color: #FFC618;
}

.period-inline {
    font-size: 0.85rem;
    color: #999;
}

.option-card.featured .period-inline {
    color: rgba(255,255,255,0.55);
}

.option-note-small {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 4px;
    line-height: 1.4;
}

.option-card.featured .option-note-small {
    color: rgba(255,255,255,0.45);
}

.option-note {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 16px;
    font-style: italic;
}

.intensive-includes {
    background: #f4f7fb;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 3px solid #FE6554;
}

.intensive-includes h4 {
    margin-bottom: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00183A;
    font-weight: 700;
}

.intensive-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intensive-includes li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 0.88rem;
    line-height: 1.45;
}

.intensive-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FE6554;
    font-weight: bold;
}

.option-button {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.3px;
}

.option-card.featured .option-button {
    background: linear-gradient(90deg, #FE6554, #FFC618);
    color: #00183A;
    border: none;
    box-shadow: 0 6px 20px rgba(254,101,84,0.4);
}

/* Card hover reveal */
.card-static {
    display: flex;
    flex-direction: column;
}

.card-hint {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FE6554;
    margin-top: 12px;
    letter-spacing: 0.3px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.option-card.featured .card-hint {
    color: #FFC618;
}

.option-card:hover .card-hint {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.card-reveal {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s;
}

.option-card:hover .card-reveal {
    max-height: 400px;
    opacity: 1;
}

.option-card:hover {
    border-color: #FFC618;
    box-shadow: 0 20px 56px rgba(0,24,58,0.18);
    transform: translateY(-8px);
}

.option-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

@media (max-width: 768px) {
    .option-card.featured {
        transform: scale(1);
    }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.portfolio-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-hint {
    text-align: center;
    font-size: 0.95rem;
    color: #999;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Flip Card Grid */
.flip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.flip-card {
    height: 320px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: 20px;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.flip-front {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.flip-front-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(1,132,151,0.08) 0%, rgba(254,101,84,0.08) 100%);
}

.flip-front-overlay {
    display: none;
}

.flip-logo {
    max-width: 70%;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-logo {
    transform: scale(1.05);
}

.flip-back {
    background: linear-gradient(145deg, #00183A 0%, #012F4F 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 40px;
    text-align: center;
    border: 1px solid rgba(255,198,24,0.2);
}

.flip-back h3 {
    color: #FFC618;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.flip-back p {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.flip-link {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(90deg, #FE6554, #FFC618);
    color: #00183A;
    font-weight: 800;
    font-size: 0.88rem;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flip-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(254,101,84,0.4);
}

.portfolio-logo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(1, 132, 151, 0.08) 0%, rgba(254, 101, 84, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.portfolio-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-logo img {
    transform: scale(1.05);
}

.portfolio-item h3 {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-sm);
    margin-bottom: 0;
}

.portfolio-item p {
    padding: 0 var(--spacing-lg);
    color: #666;
    font-size: 0.95rem;
}

.explore-link {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--primary-teal);
    font-weight: 600;
    transition: var(--transition);
}

.explore-link:hover {
    color: var(--dark-teal);
    transform: translateX(4px);
}

.explore-link:visited {
    color: var(--primary-teal);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(1, 132, 151, 0.05) 0%, rgba(254, 101, 84, 0.05) 100%);
}

.about h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.about-list li {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal);
    padding: var(--spacing-sm) 0;
}

.about-known {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 10px;
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--primary-orange);
}

.about-known p {
    margin-bottom: var(--spacing-sm);
    color: #555;
}

.about-known p:last-child {
    margin-bottom: 0;
}

.about-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-navy);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(150deg, #FFF8EE 0%, #FFF3E0 40%, #FFF9F0 70%, #F0FAFA 100%);
    color: #00183A;
    position: relative;
}

.contact-eyebrow {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FE6554;
    margin-bottom: 12px;
}

.contact-cta h2 {
    color: #00183A;
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: 2.4rem;
    text-shadow: none;
}

.contact-cta > .container > p {
    text-align: center;
    color: #444;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form {
    max-width: 860px;
    margin: var(--spacing-2xl) auto 0;
    background: #ffffff;
    padding: var(--spacing-2xl) var(--spacing-2xl);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 12px 48px rgba(0,24,58,0.10);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

.contact-form .form-submit {
    width: 100%;
    padding: 14px 24px;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: #00183A;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #D0D8E4;
    border-radius: 8px;
    background: #F8FAFC;
    color: #00183A;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FE6554;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(254,101,84,0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-navy);
    color: white;
}

.form-submit {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.05rem;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.blog h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 8px 20px rgba(1, 132, 151, 0.15);
    transform: translateY(-4px);
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-navy);
}

.blog-card time {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: var(--spacing-md);
}

.blog-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.read-more {
    display: inline-block;
    color: var(--primary-teal);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--dark-teal);
    transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-menu {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        gap: var(--spacing-lg);
    }
    
    .benefits-grid,
    .problems-grid,
    .blog-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .testimonial blockquote p {
        font-size: 1.2rem;
    }
    
    .option-card.featured {
        transform: scale(1);
    }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}
