/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2d3748;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 4px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
button:focus,
a:focus,
input:focus,
[tabindex]:focus {
    outline: 2px solid #319795;
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    min-height: 48px;
}

.btn-primary {
    background: #319795;
    color: white;
}

.btn-primary:hover {
    background: #2c7a7b;
    transform: scale(1.02);
}

.btn-secondary {
    background: #ed8936;
    color: white;
}

.btn-secondary:hover {
    background: #dd6b20;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    color: #319795;
    border: 2px solid #319795;
}

.btn-outline:hover {
    background: #319795;
    color: white;
    transform: scale(1.02);
}

.btn-plan {
    background: #319795;
    color: white;
    width: 100%;
    margin-top: 12px;
}

.btn-plan:hover {
    background: #2c7a7b;
    transform: scale(1.02);
}

.btn-plan:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

/* Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 50;
    padding: 16px 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    color: #1a202c;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-tagline {
    font-weight: 600;
    color: #319795;
    font-size: 0.875rem;
}

.header-cta .btn-secondary {
    padding: 8px 16px;
    font-size: 0.875rem;
    min-height: 36px;
}

/* Hero Section */
.hero {
    padding: 200px 0 80px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 178, 56, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(49, 151, 149, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #fafbff 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255,255,255,0.8) 2px, transparent 2px),
        radial-gradient(circle at 75px 75px, rgba(49, 151, 149, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 150px 50px, rgba(255, 178, 56, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 200px 200px, rgba(104, 211, 145, 0.03) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 180px 180px;
    background-position: 0 0, 50px 50px, 100px 100px, 25px 75px;
    animation: sparkle 15s ease-in-out infinite;
    z-index: -1;
    opacity: 0.5;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.4;
        background-position: 0 0, 50px 50px, 100px 100px, 25px 75px;
    }
    50% { 
        opacity: 0.7;
        background-position: 10px 10px, 60px 60px, 110px 110px, 35px 85px;
    }
}

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

.hero-text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 580px;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    filter: blur(30px);
    opacity: 0.6;
    z-index: -1;
}

/* Hero Sections */
.hero-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-header h1 {
    margin-bottom: 0;
}

.hero-header .hero-subheadline {
    margin-bottom: 0;
}

.hero-proof-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-social-proof .hero-social-icon {
    flex-shrink: 0;
    color: #319795;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
}

.hero-ctas {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

/* Brand Accent Styling */
.brand-accent {
    color: #319795;
    font-weight: 700;
}

/* ROI Pill Styling */
.hero-roi-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    padding: 12px 20px;
    background: linear-gradient(135deg, #319795 0%, #68d391 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(49, 151, 149, 0.25);
    align-self: flex-start;
}

.roi-icon {
    color: #ffffff;
    opacity: 0.9;
    flex-shrink: 0;
}

.hero-roi-pill span {
    color: #ffffff;
}

/* Premium Button Styling */
.btn-premium {
    background: linear-gradient(135deg, #319795 0%, #4fd1c7 50%, #68d391 100%) !important;
    box-shadow: 0 8px 24px rgba(49, 151, 149, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.btn-premium::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-premium:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(49, 151, 149, 0.4) !important;
    filter: brightness(1.05);
}

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

.btn-premium:focus {
    outline: none !important;
    box-shadow: 0 8px 24px rgba(49, 151, 149, 0.3), 0 0 0 3px rgba(49, 151, 149, 0.5) !important;
}

.btn-premium:active {
    transform: translateY(-1px) !important;
}

/* Enhanced Vault Animations & Effects */
@keyframes vaultSweepLight {
    0%, 100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    20% {
        opacity: 0.6;
        transform: rotate(45deg);
    }
    40% {
        opacity: 0.8;
        transform: rotate(90deg);
    }
    60% {
        opacity: 0.6;
        transform: rotate(135deg);
    }
    80% {
        opacity: 0.3;
        transform: rotate(180deg);
    }
}

@keyframes driftParticles {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }
    20% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px);
    }
}

@keyframes vaultSparkleEnhanced {
    0%, 90% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.2);
    }
}

.vault-sweep-light {
    animation: vaultSweepLight 7s ease-in-out infinite;
    animation-delay: 2s;
}

.drift-particle {
    animation: driftParticles 4s ease-out infinite;
}

.drift-particle-1 { animation-delay: 0s; }
.drift-particle-2 { animation-delay: 1s; }
.drift-particle-3 { animation-delay: 2s; }
.drift-particle-4 { animation-delay: 3s; }

.vault-sparkle {
    animation: vaultSparkleEnhanced 3s ease-in-out infinite;
}

.vault-sparkle-1 { animation-delay: 0.5s; }
.vault-sparkle-2 { animation-delay: 1.2s; }
.vault-sparkle-3 { animation-delay: 2.1s; }
.vault-sparkle-4 { animation-delay: 3.0s; }
.vault-sparkle-5 { animation-delay: 1.8s; }

/* Background Integration */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 151, 149, 0.03) 0%, rgba(79, 209, 199, 0.02) 50%, transparent 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(49, 151, 149, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.3;
    z-index: 1;
}

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

/* Vault Layout Adjustments */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 5%;
}

.vault-left-aura {
    animation: pulseAura 4s ease-in-out infinite;
}

@keyframes pulseAura {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Hero Disclaimer Centered */
.hero-disclaimer-centered {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 2rem;
}

.hero-disclaimer-centered small {
    font-size: 0.75rem;
    color: #718096;
    line-height: 1.6;
    opacity: 0.8;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .vault-sweep-light,
    .drift-particle,
    .vault-sparkle,
    .vault-left-aura {
        animation: none !important;
    }
    
    .vault-sweep-light {
        opacity: 0.3;
    }
    
    .vault-interior-glow {
        opacity: 0.4 !important;
    }
    
    .drift-particle {
        opacity: 0.6;
        transform: translateY(-20px);
    }
    
    .vault-sparkle {
        opacity: 0.5;
    }
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: subtleTextShimmer 4s ease-in-out infinite;
}

@keyframes subtleTextShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero h1 .highlight-text {
    color: #319795;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #319795 !important;
    animation: none;
}

/* Old hero-tagline removed - now using hero-social-proof */

.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    background: 
        radial-gradient(ellipse at center, rgba(49, 151, 149, 0.08) 0%, rgba(49, 151, 149, 0.04) 40%, transparent 80%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pill {
    background: linear-gradient(135deg, #319795 0%, #2c7a7b 50%, #285e61 100%);
    color: white;
    padding: 9px 20px;
    border-radius: 26px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 5px 15px rgba(49, 151, 149, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pill::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.6s ease;
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(49, 151, 149, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pill:hover::before {
    left: 100%;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.hero-ctas .btn-primary {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    box-shadow: 
        0 6px 20px rgba(237, 137, 54, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-ctas .btn-primary::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.6s ease;
}

.hero-ctas .btn-primary:hover {
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 10px 30px rgba(237, 137, 54, 0.5),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.hero-ctas .btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    pointer-events: none;
    padding-right: 0;
    margin-right: -2.5rem;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-visual:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
}

.hero-visual img {
    pointer-events: none;
}

.price-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #ED8936 0%, #DD6B20 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    z-index: 10;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(237, 137, 54, 0.3);
}

.price-caption {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: #718096;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Animation support for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-illustration * {
        animation: none !important;
        animation-duration: 0s !important;
        animation-delay: 0s !important;
    }
}

/* Hero Text Updates */
.hero-subheadline {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-roi {
    font-size: 1.125rem;
    color: #319795;
    margin: 0.75rem 0 1.75rem 0;
    font-weight: 600;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(49, 151, 149, 0.12) 0%, rgba(104, 211, 145, 0.08) 100%);
    border-radius: 14px;
    border: 1px solid rgba(49, 151, 149, 0.2);
    box-shadow: 
        0 4px 12px rgba(49, 151, 149, 0.1), 
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-roi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/* Vault Unlock Visual */
.vault-unlock-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.vault-door {
    width: 100%;
    height: auto;
    max-width: 520px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.06));
}

/* Enhanced Vault Animations */
.vault-halo {
    animation: vaultHaloPulse 5.5s ease-in-out infinite;
}

.vault-background-glow {
    animation: vaultBackgroundGlow 5.5s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { 
        transform: rotate(12deg) translateY(0px); 
    }
    50% { 
        transform: rotate(12deg) translateY(-20px); 
    }
}

.vault-wheel {
    animation: vaultWheelRotate 5.5s ease-in-out infinite;
    transform-origin: 280px 210px;
}

.vault-door-inner {
    animation: vaultDoorOpen 5.5s ease-in-out infinite;
    transform-origin: 280px 210px;
}

.vault-interior-glow {
    animation: vaultInteriorGlow 5.5s ease-in-out infinite;
}

.vault-sparkle {
    animation: vaultSparkle 5.5s ease-in-out infinite;
}

.vault-sparkle-1 {
    animation-delay: 2.2s;
}

.vault-sparkle-2 {
    animation-delay: 2.6s;
}

.vault-sparkle-3 {
    animation-delay: 3.0s;
}

.vault-sparkle-4 {
    animation-delay: 3.2s;
}

.vault-sparkle-5 {
    animation-delay: 2.8s;
}

/* Enhanced Keyframes */
@keyframes vaultHaloPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.08);
    }
}

@keyframes vaultBackgroundGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    45%, 65% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

@keyframes vaultWheelRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    20%, 35% {
        transform: rotate(28deg);
    }
    65%, 80% {
        transform: rotate(30deg);
    }
}

@keyframes vaultDoorOpen {
    0%, 100% {
        transform: rotate(0deg);
    }
    40%, 70% {
        transform: rotate(9deg);
    }
}

@keyframes vaultInteriorGlow {
    0%, 30%, 100% {
        opacity: 0;
    }
    50%, 75% {
        opacity: 0.9;
    }
}

@keyframes vaultSparkle {
    0%, 35%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.3);
    }
    55%, 75% {
        opacity: 1;
        transform: translateY(-12px) scale(1);
    }
}


/* Reduced Motion Support for Vault Visual */
@media (prefers-reduced-motion: reduce) {
    .vault-halo,
    .vault-background-glow,
    .vault-wheel,
    .vault-door-inner,
    .vault-interior-glow,
    .vault-sparkle {
        animation: none;
    }
    
    .vault-door-inner {
        transform: rotate(6deg);
    }
    
    .vault-interior-glow {
        opacity: 0.5;
    }
    
    .vault-background-glow {
        opacity: 0.7;
    }
    
    .vault-sparkle {
        display: none;
    }
}

.hero-disclaimer {
    text-align: center;
    margin-top: 20px;
    max-width: 85%;
    margin-left: auto;
    margin-right: -2.5rem;
}

.hero-disclaimer small {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.5;
    display: block;
}

/* Categories */
.categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-tile {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.category-tile:hover,
.category-tile:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #319795;
}

.category-tile h3 {
    color: #1a202c;
    margin-bottom: 8px;
}

.category-tile p {
    color: #4a5568;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Social Proof Strip */
.social-proof-strip {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.social-proof-text {
    text-align: center;
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
    font-weight: 400;
}

/* Examples Section */
.examples-section {
    padding: 80px 0;
    background: #ffffff;
}

.examples-intro {
    text-align: center;
    color: #4a5568;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.example-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    cursor: pointer;
}

.example-card:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #006d5b;
}

.example-content {
    flex: 1;
    text-align: center;
}

.example-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a202c;
    line-height: 1.3;
}

.category-chip {
    background: #f0fdfa;
    color: #319795;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #b2f5ea;
}

.chevron {
    color: #319795;
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: 12px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.example-card:hover .chevron {
    opacity: 1;
}

/* Featured Plans */
.featured {
    padding: 80px 0;
    background: #f7fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: #718096;
    font-weight: 400;
}

.subheadline {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #4a5568;
    font-weight: 400;
}

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

.headline-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.rotating-text {
    color: #319795;
    position: relative;
    display: inline-block;
    min-width: 200px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.rotating-text.fade-out {
    opacity: 0;
}

.supporting-copy {
    font-size: 1.125rem;
    color: #718096;
    font-weight: 400;
    margin-bottom: 0;
}

/* Plans Page Styles */
.plans-hero {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.plans-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.plans-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.plans-subtext {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.plans-disclaimer {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

.controls-bar {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 40;
}

.controls-content {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.search-control {
    flex: 1;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #319795;
}

.filter-control {
    flex: 2;
}

.category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-pill {
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.category-pill:hover {
    border-color: #319795;
    background: #f0fdfa;
}

.category-pill.active {
    background: #319795;
    color: white;
    border-color: #319795;
}

.sort-control {
    min-width: 150px;
}

.sort-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: #319795;
}

.plans-grid-section {
    padding: 40px 0 80px;
    background: #f7fafc;
}

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

.plan-example-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    position: relative;
}

.plan-example-card:hover,
.plan-example-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: #319795;
}

.example-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(113, 128, 150, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.plan-example-cover {
    height: 200px;
    background: linear-gradient(135deg, #319795 0%, #2c7a7b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 800;
}

.plan-example-content {
    padding: 24px;
}

.plan-example-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.plan-example-subtitle {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.5;
}

.plan-example-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #718096;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
    font-size: 1.125rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #718096;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #f7fafc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .headline-text {
        font-size: 1.875rem;
    }
    
    .supporting-copy {
        font-size: 1rem;
    }
    
    .social-proof-text {
        font-size: 0.875rem;
        padding: 0 1rem;
    }
    
    .plans-hero {
        padding: 140px 0 40px;
    }
    
    .plans-title {
        font-size: 2rem;
    }
    
    .controls-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .search-control,
    .filter-control,
    .sort-control {
        width: 100%;
        min-width: auto;
    }
    
    .category-pills {
        justify-content: center;
    }
    
    .controls-bar {
        top: 64px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.plan-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.plan-card:hover,
.plan-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: #319795;
}

.plan-cover {
    height: 200px;
    overflow: hidden;
}

.plan-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-content {
    padding: 24px;
}

.plan-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.plan-outcome {
    color: #4a5568;
    margin-bottom: 16px;
}

.plan-meta {
    margin-bottom: 16px;
}

.read-time {
    font-size: 0.875rem;
    color: #718096;
    display: block;
    margin-bottom: 4px;
}

.legal-line {
    font-size: 0.75rem;
    color: #a0aec0;
}

.plan-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.price-badge-small {
    background: #ed8936;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Removed How It Works section */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #319795;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-icon svg path {
    fill: currentColor;
}

/* Why Plan599 */
.why-plan599 {
    padding: 80px 0;
    background: #f7fafc;
}

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

.pillar {
    text-align: center;
}

.pillar h3 {
    color: #319795;
    margin-bottom: 16px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
}

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

.testimonial {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.stars img {
    width: 20px;
    height: 20px;
    filter: hue-rotate(45deg);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial cite {
    color: #718096;
    font-size: 0.875rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f7fafc;
}

.faq h2 {
    text-align: center;
}

.faq-items {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-items details {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e2e8f0;
}

.faq-items details summary {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a202c;
    list-style: none;
    position: relative;
    transition: all 0.2s ease;
}

.faq-items details summary::-webkit-details-marker {
    display: none;
}

.faq-items details summary::after {
    content: "▼";
    font-size: 0.75rem;
    color: #319795;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-items details[open] summary::after {
    transform: rotate(180deg);
}

.faq-items details summary:hover,
.faq-items details summary:focus {
    background: #f7fafc;
    font-weight: 700;
    outline: 2px solid #319795;
    outline-offset: -2px;
}

.faq-items details div {
    padding: 0 24px 20px;
}

.faq-items details div p {
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Support Line */
.support-line {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.7;
    color: #4a5568;
    transition: opacity 0.2s ease;
}

.support-line .support-email {
    text-decoration: none;
    color: #319795;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.2s ease;
}

.support-line .support-email:hover,
.support-line .support-email:focus {
    text-decoration: underline;
    opacity: 1;
    outline: 2px solid #319795;
    outline-offset: 2px;
    border-radius: 4px;
}

.support-line .support-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .support-line {
        text-align: center;
        padding: 0 1rem;
    }
}

/* Email Capture */
.email-capture {
    padding: 80px 0;
    background: #319795;
    color: white;
}

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

.email-capture h2 {
    color: white;
    margin-bottom: 1rem;
}

.email-capture p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.email-form input[type="email"] {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: border-color 0.2s ease;
}

.email-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-form input[type="email"]:focus {
    border-color: white;
    outline: none;
}

.error-message {
    color: #fed7d7;
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
}

.interests-section {
    margin-bottom: 32px;
}

.interests-label {
    text-align: left;
    margin-bottom: 16px;
    font-weight: 600;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-label:hover .checkmark {
    background: rgba(255, 255, 255, 0.2);
}

.checkbox-label input:checked ~ .checkmark {
    background: white;
    border-color: white;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #319795;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
}

.thank-you-state {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.thank-you-state h3 {
    color: white;
    margin-bottom: 8px;
}

.thank-you-state p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: white;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
}

.social-media a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-media a:hover {
    color: #319795;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    cursor: pointer;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #718096;
}

.modal-close:hover {
    background: #f7fafc;
    color: #2d3748;
}

.modal-body {
    padding: 24px;
}

.modal-body h3 {
    margin-bottom: 16px;
}

.modal-body ul {
    margin: 16px 0;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        gap: 8px;
    }
    
    .header-center {
        display: none;
    }
    
    .hero {
        padding: 200px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
        gap: 2rem;
        max-width: none;
    }
    
    .hero-proof-section {
        gap: 1.25rem;
    }
    
    .hero-social-proof {
        text-align: center;
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-disclaimer-centered {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .hero-pills {
        justify-content: center;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
    }
    
    .hero-roi {
        font-size: 1rem;
        margin: 0.5rem 0 1.5rem 0;
    }
    
    .hero-visual {
        align-items: flex-end;
        padding-right: 1rem;
    }
    
    .vault-unlock-visual {
        max-width: 380px;
        height: auto;
        justify-content: flex-end;
    }
    
    .vault-door {
        max-width: 380px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
        gap: 1.75rem;
        text-align: center;
        max-width: none;
    }
    
    .hero-social-proof {
        text-align: center;
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-disclaimer-centered {
        margin-top: 1.5rem;
        order: 3;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 2rem;
        align-items: center;
        padding-right: 0;
    }
    
    .vault-unlock-visual {
        justify-content: center;
    }
    
    .hero-disclaimer {
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .example-card {
        padding: 16px;
    }
    
    .example-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    
    .footer-nav,
    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }
    
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 200px 0 60px;
    }
    
    .hero-text {
        margin-top: 80px;
        gap: 1.5rem;
    }
    
    .hero-disclaimer-centered {
        margin-top: 1rem;
        padding: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-roi {
        font-size: 0.95rem;
        padding: 8px 12px;
        margin: 0.5rem 0 1.25rem 0;
    }
    
    .hero-visual {
        align-items: center;
        padding-right: 0;
    }
    
    .vault-unlock-visual {
        max-width: 75%;
        width: 75%;
        height: auto;
        margin: 2rem auto 0;
        justify-content: center;
    }
    
    .vault-door {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-disclaimer {
        max-width: 90%;
        margin-top: 16px;
        line-height: 1.4;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .plan-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .price-badge-small {
        align-self: flex-start;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
    
    .category-tile,
    .plan-card,
    .testimonial,
    .faq-item {
        border: 1px solid #2d3748;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-outline:hover,
    .category-tile:hover,
    .plan-card:hover {
        transform: none;
    }
}


/* Example Card Updates */
.example-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    min-height: 140px !important;
}

.example-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8px;
}

.card-footer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
}

.category-chip {
    background: #97c1b6 !important;
    color: #006d5b !important;
    margin-top: 8px;
}

/* Mid-page CTA */
.mid-page-cta {
    padding: 60px 0;
    background: #dfe4d6;
    text-align: center;
}

.mid-page-cta h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.mid-page-cta p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 32px;
}

.mid-page-cta .btn {
    background: #006d5b;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.mid-page-cta .btn:hover {
    background: #004d42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 109, 91, 0.3);
}

/* Enhanced Visual Effects */

/* Floating background shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: #97c1b6;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: #f6941d;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: #006d5b;
    bottom: 30%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Legacy Enhanced badges - keeping for backward compatibility */
.enhanced-badge {
    --teal: #006d5b;
    --tealLight: #97c1b6;
    --orange: #f6941d;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--tealLight) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(0, 109, 91, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-badge: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;
}

.enhanced-badge:hover:before {
    left: 100%;
}

.enhanced-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 109, 91, 0.4);
}

/* Enhanced How It Works Section */
.enhanced-step {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-step:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #006d5b, #97c1b6, #f6941d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.enhanced-step:hover:before {
    transform: scaleX(1);
}

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

.step-number {
    display: none !important;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 109, 91, 0.3);
}

.enhanced-step-icon {
    margin: 2rem 0 1.5rem;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.enhanced-step:hover .enhanced-step-icon {
    transform: scale(1.1);
}

/* Animation for pulse effect */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .enhanced-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        display: none !important;
    }
    
    .enhanced-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .floating-shapes .shape {
        opacity: 0.05;
    }
}

/* Old hero-tagline styles removed - now using hero-social-proof structure */

/* ROI Pill Mobile/Desktop Text Variants */
.roi-text-mobile {
    display: none;
}

@media (max-width: 640px) {
    .roi-text-desktop {
        display: none;
    }
    
    .roi-text-mobile {
        display: inline;
    }
}

/* ===== Browse Plans CTA Section ===== */
.browse-plans-cta {
    padding: 3rem 0;
    text-align: center;
}

.browse-plans-cta .cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.browse-plans-cta .cta-button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    transform: scale(1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.browse-plans-cta .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(49, 151, 149, 0.3);
}

@media (max-width: 768px) {
    .browse-plans-cta {
        padding: 2rem 0;
    }
    
    .browse-plans-cta .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ===== Email Signup Form Styles ===== */
.cta-actions {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.email-signup-form {
    flex: 1;
    max-width: 400px;
    min-width: 280px;
}

.email-form-content {
    width: 100%;
}

.email-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    transition: all 0.2s ease;
    min-width: 0; /* Allows flex item to shrink below its content size */
}

.email-input::placeholder {
    color: #718096;
}

.email-input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: #ffffff;
}

.email-input.error {
    border-color: #fc8181;
    box-shadow: 0 0 0 3px rgba(252, 129, 129, 0.3);
    background: #ffffff;
}

.email-submit-btn {
    padding: 0.875rem 1.5rem;
    white-space: nowrap;
    min-width: 120px;
    height: 3.25rem; /* Fixed height to match browse button */
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.email-trust-note {
    text-align: center;
    margin-top: 0.75rem;
}

.email-trust-note small {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.4;
}

.email-error {
    color: #fc8181;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: none;
}

.email-success {
    margin-top: 1rem;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(49, 151, 149, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(72, 187, 120, 0.3);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.2);
    animation: successSlideIn 0.5s ease-out;
}

.success-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: successBounce 0.6s ease-out 0.2s both;
}

.success-title {
    color: #38a169;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-message {
    color: #2d3748;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.success-action {
    margin-top: 1rem;
}

.browse-early-btn {
    display: inline-block;
    background: linear-gradient(135deg, #319795, #38a169);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(49, 151, 149, 0.3);
}

.browse-early-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 151, 149, 0.4);
    background: linear-gradient(135deg, #2c7a7b, #319795);
}

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

@keyframes successBounce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.browse-plans-btn {
    flex-shrink: 0;
    padding: 0.875rem 2rem;
    min-width: 160px;
    height: 3.25rem; /* Fixed height to match email button */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visually hidden class for accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .email-signup-form {
        width: 100%;
        max-width: none;
        order: 1;
    }
    
    .browse-plans-btn {
        width: 100%;
        max-width: 300px;
        order: 2;
        text-align: center;
    }
    
    .email-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .email-input,
    .email-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-actions {
        gap: 1rem;
    }
    
    .email-input,
    .email-submit-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .email-submit-btn {
        min-width: 100px;
    }
}

/* ===== Contact Form Styles ===== */
.contact-section {
    padding: 6rem 0 4rem;
    background: 
        radial-gradient(circle at 20% 20%, rgba(237, 137, 54, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(49, 151, 149, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f7fafc 0%, #edf2f7 40%, #e2e8f0 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.03) 100px,
        rgba(255, 255, 255, 0.03) 102px
    );
    z-index: 1;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    position: relative;
    padding: 2rem 0;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    width: 4px;
    height: 60px;
    background: linear-gradient(135deg, #ed8936 0%, #319795 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(237, 137, 54, 0.3);
}

.contact-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.contact-subtext {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    padding: 1.5rem 0;
}

.contact-subtext::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ed8936, #319795);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(237, 137, 54, 0.3);
}

.contact-legal-note {
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, #319795, #ed8936) 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-legal-note:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(49, 151, 149, 0.1);
}

.contact-legal-note::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0.7;
}

.contact-legal-note small {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.4;
}

/* Form Styling */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed8936, #319795, #ed8936);
    border-radius: 20px 20px 0 0;
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.form-label::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, #ed8936, #319795);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.form-group:focus-within .form-label::before {
    height: 100%;
}

.form-group:focus-within .form-label {
    color: #319795;
}

.form-label.required::after {
    content: '';
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.form-input:hover {
    border-color: #cbd5e0;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    outline: none;
    border-color: #319795;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 4px rgba(49, 151, 149, 0.1),
        0 6px 20px rgba(49, 151, 149, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-input.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-file {
    padding: 0.5rem;
    border-style: dashed;
}

.form-help {
    font-size: 0.75rem;
    color: #718096;
    margin-top: 0.25rem;
}

.error-message {
    color: #e53e3e;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 500;
    min-height: 1rem;
}

/* Radio and Checkbox Styling */
.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
}

.radio-input, .checkbox-input {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
}

/* Conditional Fields */
.conditional-field {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        margin-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        margin-bottom: 1.5rem;
    }
}

/* Form Actions */
.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

/* Enhanced Contact Form Submit Button */
.contact-form .btn-primary {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(237, 137, 54, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.contact-form .btn-primary::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.6s ease;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(237, 137, 54, 0.5),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .btn-primary:disabled:hover {
    transform: none;
}

/* Loading state animation */
.contact-form .btn-loading::after {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.form-secondary-action {
    margin-top: 1rem;
}

.secondary-link {
    color: #319795;
    text-decoration: none;
    font-size: 0.875rem;
}

.secondary-link:hover {
    text-decoration: underline;
}

/* Error Summary */
.error-summary {
    background: #fed7d7;
    border: 1px solid #fc8181;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.error-summary h3 {
    color: #c53030;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.error-summary ul {
    margin: 0;
    padding-left: 1rem;
}

.error-summary li {
    color: #c53030;
    margin-bottom: 0.25rem;
}

.error-summary a {
    color: #c53030;
    text-decoration: underline;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 3rem 2rem;
}

.success-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.6s ease-out;
}

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

.success-card h2 {
    color: #2d3748;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-card p {
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.redirect-notice {
    font-style: italic;
    color: #718096;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-card {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}

.thank-you-card h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.thank-you-submessage {
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-header {
        text-align: center;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .thank-you-card {
        padding: 3rem 2rem;
    }
    
    .thank-you-card h1 {
        font-size: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 10rem 0 3rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-header h1 {
        font-size: 1.75rem;
    }
    
    .contact-subtext {
        font-size: 1rem;
    }
}


/* ===== Plans Preview Section ===== */
#plans-preview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#plans-preview header {
  text-align: center;
  margin-bottom: 2rem;
}

#plans-preview h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827; /* dark gray */
}

#plans-preview p {
  color: #4b5563; /* medium gray */
  font-size: 1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Grid layout */
#plans-preview .grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Cards */
#plans-preview a {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  text-decoration: none;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#plans-preview a:hover,
#plans-preview a:focus {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  outline: none;
}

#plans-preview a div {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

#plans-preview a p {
  font-size: 0.9rem;
  color: #6b7280; /* lighter gray */
  margin-top: 0.5rem;
}

/* Definition Section - What's a 599 plan? */
#what-is-599-plan {
    padding: 3rem 1rem;
    margin-top: 2.25rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 300ms ease, transform 300ms ease;
}

#what-is-599-plan.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.def-card {
    position: relative;
    max-width: 920px;
    width: 100%;
    background: #FBFEFD;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.def-badge {
    position: absolute;
    top: -8px;
    left: 20px;
    background: #0EA5A4;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

.def-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.2;
    position: relative;
}

.def-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0EA5A4;
    margin-top: 8px;
    border-radius: 2px;
}

.def-lead {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.def-lead em {
    color: #2d3748;
    font-style: italic;
}

.def-divider {
    border: none;
    height: 0.5px;
    background: rgba(0, 0, 0, 0.06);
    margin: 2rem 0 1.5rem 0;
    position: relative;
}

.def-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #0EA5A4;
    border-radius: 50%;
}

.def-divider::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #0EA5A4;
    border-radius: 50%;
    opacity: 0.6;
}

.def-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.def-ipa {
    font-size: 16px;
    color: #718096;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    font-style: italic;
}

.def-list {
    padding-left: 1.5rem;
    margin: 0;
}

.def-list li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
}

.def-list li::marker {
    color: #0EA5A4;
    font-weight: 600;
}

.def-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.def-cta-link {
    font-size: 14px;
    color: #0EA5A4;
    text-decoration: none;
    font-weight: 500;
    transition: all 200ms ease;
    position: relative;
}

.def-cta-link:hover {
    color: #0d8584;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.def-cta-link:focus {
    outline: 2px solid #0EA5A4;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #what-is-599-plan {
        padding: 2rem 1rem;
        margin-top: 1.5rem;
    }
    
    .def-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .def-title {
        font-size: 28px;
    }
    
    .def-lead {
        font-size: 16px;
    }
    
    .def-subtitle {
        font-size: 18px;
    }
    
    .def-badge {
        font-size: 11px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .def-card {
        padding: 1.5rem;
    }
    
    .def-lead,
    .def-list li {
        font-size: 16px;
    }
    
    .def-badge {
        left: 1.5rem;
    }
}

/* Enhanced Heavy Lifting Section */
.heavy-lifting-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.heavy-lifting-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.heavy-lifting-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(14, 165, 164, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(246, 148, 29, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(0, 109, 91, 0.08) 0%, transparent 60%);
    background-size: 800px 800px, 600px 600px, 1000px 1000px;
    background-position: 0% 0%, 100% 100%, 50% 0%;
    animation: backgroundShift 20s ease-in-out infinite;
}

.heavy-lifting-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(14, 165, 164, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 8s ease-in-out infinite;
}

.heavy-lifting-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hl-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatGentle 12s ease-in-out infinite;
}

.hl-shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #0EA5A4, #97c1b6);
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hl-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #f6941d, #fbbf24);
    top: 65%;
    right: 10%;
    animation-delay: 4s;
}

.hl-shape-3 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #006d5b, #0EA5A4);
    bottom: 20%;
    left: 70%;
    animation-delay: 2s;
}

.hl-shape-4 {
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
    top: 30%;
    right: 60%;
    animation-delay: 6s;
}

.heavy-lifting-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

.heavy-lifting-header {
    text-align: center;
    margin-bottom: 4rem;
}

.heavy-lifting-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hl-emoji {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    display: inline-block;
    animation: iconBounce 3s ease-in-out infinite;
}

.hl-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid rgba(14, 165, 164, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

.heavy-lifting-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hl-title-line {
    display: block;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.hl-title-emphasis {
    display: block;
    background: linear-gradient(135deg, #0EA5A4 0%, #006d5b 50%, #0EA5A4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(14, 165, 164, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
}

.heavy-lifting-subtitle {
    font-size: 1.5rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.heavy-lifting-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hl-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0EA5A4 0%, #006d5b 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 
        0 8px 25px rgba(14, 165, 164, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: badgeFloat 6s ease-in-out infinite;
}

.hl-badge-1 { animation-delay: 0s; }
.hl-badge-2 { animation-delay: 0.5s; }
.hl-badge-3 { animation-delay: 1s; }
.hl-badge-4 { 
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    color: white;
    animation-delay: 1.5s; 
}

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

.hl-badge:hover::before {
    left: 100%;
}

.hl-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(14, 165, 164, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15);
}

.heavy-lifting-content {
    text-align: center;
}

.heavy-lifting-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(14, 165, 164, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.heavy-lifting-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(14, 165, 164, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hl-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: cardShine 8s ease-in-out infinite;
}

.hl-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hl-card-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hl-card-dots {
    display: flex;
    gap: 0.5rem;
}

.hl-card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0EA5A4;
    animation: dotPulse 2s ease-in-out infinite;
}

.hl-card-dots span:nth-child(2) { animation-delay: 0.3s; }
.hl-card-dots span:nth-child(3) { animation-delay: 0.6s; }

.hl-card-body {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #374151;
    text-align: center;
}

.hl-highlight-teal {
    color: #006d5b;
    background: linear-gradient(120deg, rgba(14, 165, 164, 0.1) 0%, rgba(14, 165, 164, 0.2) 100%);
    padding: 0.1em 0.3em;
    border-radius: 4px;
    font-weight: 700;
}

.hl-highlight-orange {
    color: #ea580c;
    background: linear-gradient(120deg, rgba(246, 148, 29, 0.1) 0%, rgba(246, 148, 29, 0.2) 100%);
    padding: 0.1em 0.3em;
    border-radius: 4px;
    font-weight: 700;
}

/* Heavy Lifting Animations */
@keyframes backgroundShift {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 0%; }
    50% { background-position: 100% 50%, 0% 0%, 25% 100%; }
}

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

@keyframes floatGentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(-8px) rotate(240deg); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(14, 165, 164, 0.3); }
    50% { text-shadow: 0 0 40px rgba(14, 165, 164, 0.6); }
}

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

@keyframes cardShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Mobile Responsive for Heavy Lifting Section */
@media (max-width: 768px) {
    .heavy-lifting-section {
        padding: 4rem 1rem;
    }
    
    .hl-emoji {
        font-size: 3rem;
    }
    
    .hl-icon-ring {
        width: 80px;
        height: 80px;
    }
    
    .heavy-lifting-subtitle {
        font-size: 1.25rem;
    }
    
    .hl-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .heavy-lifting-card {
        padding: 2rem 1.5rem;
    }
    
    .hl-card-body {
        font-size: 1.125rem;
    }
    
    .hl-shape {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .heavy-lifting-section {
        padding: 3rem 1rem;
    }
    
    .heavy-lifting-header {
        margin-bottom: 3rem;
    }
    
    .hl-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .heavy-lifting-card {
        padding: 1.5rem 1rem;
    }
    
    .hl-card-body {
        font-size: 1rem;
    }
}

/* Layout helpers (re-use if you already have container/section spacing) */
.site-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 56px 0; }

/* Pro Help card */
.pro-help-card {
  position: relative;
  border-radius: 16px;
  padding: 32px;
  background: radial-gradient(1200px 600px at 100% -10%, rgba(16,185,129,0.10), transparent 50%),
              linear-gradient(180deg, #ffffff, #ffffff);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.pro-help-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 700;
  color: #0F766E;              /* teal-700 */
  background: #CCFBF1;         /* teal-100 */
  border: 1px solid #99F6E4;   /* teal-200 */
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pro-help-title {
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.2;
  margin: 6px 0 10px;
  color: #0F172A;              /* slate-950 */
}

.pro-help-lead {
  font-size: clamp(16px, 2.2vw, 18px);
  color: #0B1220;              /* near-black */
  margin: 6px 0 10px;
}

.pro-help-body {
  font-size: 16px;
  color: #3E4A5B;              /* slate-ish */
  margin: 0 0 18px;
}

.sms-instructions {
  margin: 20px 0 24px;
}

.sms-header {
  font-size: 16px;
  color: #2D3748;
  margin-bottom: 16px;
  font-weight: 500;
}

.keyword-list {
  background: rgba(49, 151, 149, 0.03);
  border: 1px solid rgba(49, 151, 149, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.keyword-item {
  font-size: 16px;
  color: #2D3748;
  margin-bottom: 8px;
  line-height: 1.4;
}

.keyword-item:last-child {
  margin-bottom: 0;
}

.keyword-quick-link {
  font-size: 18px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 4px;
  border-radius: 4px;
  margin-left: 8px;
}

.keyword-quick-link:hover {
  opacity: 1;
  transform: scale(1.1);
}

.phone-highlight {
  background: linear-gradient(135deg, #319795, #68d391);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(49, 151, 149, 0.2);
}

/* Contact SMS Section */
.contact-sms-section {
  margin-top: 32px;
  padding: 24px;
  background: rgba(49, 151, 149, 0.03);
  border: 1px solid rgba(49, 151, 149, 0.1);
  border-radius: 12px;
}

.contact-sms-section h3 {
  font-size: 20px;
  color: #2D3748;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-sms-cta {
  text-align: center;
  margin-top: 16px;
}

.btn-sms {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #319795, #68d391);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(49, 151, 149, 0.2);
}

.btn-sms:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(49, 151, 149, 0.3);
}

@media (max-width: 640px) {
  .keyword-item {
    font-size: 15px;
    gap: 8px;
  }
  
  .keyword-quick-link {
    font-size: 16px;
    margin-left: 4px;
  }
  
  .sms-header {
    font-size: 15px;
  }
  
  .contact-sms-section {
    margin-top: 24px;
    padding: 20px;
  }
  
  .contact-sms-section h3 {
    font-size: 18px;
  }
  
}

/* Center-aligned Pro Help Section */
.pro-help-card {
  text-align: center;
}

.pro-help-title {
  text-align: center;
}

.pro-help-lead {
  text-align: center;
}

.pro-help-body {
  text-align: center;
}

/* Simplified SMS Instructions */
.simplified-sms-instructions {
  margin: 20px 0 24px;
}

.simplified-sms-text {
  font-size: 18px;
  color: #2D3748;
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}

.more-help-emphasis {
  color: #319795; /* site's accent color */
  font-style: italic;
  font-weight: 700;
}

.simplified-human-note {
  font-size: 14px;
  color: #6B7280; /* gray-500 - secondary text color */
  line-height: 1.4;
  text-align: center;
  margin: 16px 0 0;
}

.pro-help-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Pro Help Button Container */
.pro-help-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.btn-pro {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.btn-pro:hover { 
  transform: translateY(-1px); 
  filter: brightness(1.02); 
}

.btn-pro:active { 
  transform: translateY(0); 
}

/* Primary Button (Browse Plans) */
.btn-pro-primary {
  background: linear-gradient(180deg, #10B981, #059669); /* emerald-500 → emerald-600 */
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(16,185,129,0.25);
}

.btn-pro-primary:hover {
  box-shadow: 0 10px 22px rgba(16,185,129,0.3);
}

/* Secondary Button (Contact Us) */
.btn-pro-secondary {
  background: transparent;
  color: #059669;
  border: 2px solid #10B981;
  box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}

.btn-pro-secondary:hover {
  background: rgba(16,185,129,0.05);
  box-shadow: 0 6px 16px rgba(16,185,129,0.2);
}

@media (max-width: 480px) {
  .pro-help-buttons {
    flex-direction: column;
  }
  
  .btn-pro {
    flex: none;
    width: 100%;
  }
}

.cta-note {
  font-size: 14px;
  color: #64748B;              /* slate-500 */
}

/* Subtle accent line at top of card */
.pro-help-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #99F6E4, #10B981 45%, #99F6E4);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  opacity: 0.85;
}

/* Responsive spacing tweaks */
@media (max-width: 640px) {
  .pro-help-card { padding: 24px; }
}

/* Container & section spacing (reuse if exists) */
.site-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 48px 0; }

/* Clean card styling */
.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Clean badge styling */
.why-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 700;
  color: #059669;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 auto 20px;
  text-transform: uppercase;
}

.why-badge::before {
  content: "💚";
  margin-right: 6px;
  font-size: 12px;
}

/* Enhanced typography */
.why-title { 
  font-size: clamp(24px, 3.2vw, 32px); 
  line-height: 1.2; 
  color: #1a202c; 
  margin: 0 0 16px;
  font-weight: 700;
  text-align: center;
}

.why-sub { 
  color: #4a5568; 
  margin: 0 0 32px; 
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

/* Clean benefit list */
.why-list { 
  list-style: none; 
  padding: 0; 
  margin: 0 0 32px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2d3748;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.why-list li::before {
  content: "✓";
  color: #10B981;
  font-weight: 900;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Highlight bar and support text */
.why-footnote { 
  color: #4a5568; 
  margin: 24px 0 16px; 
  font-size: 15px;
  padding: 16px 20px;
  background: rgba(16,185,129,0.08);
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.why-support { 
  color: #718096; 
  margin-top: 0; 
  font-size: 14px;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .why-card { 
    padding: 24px 20px; 
    margin: 0 16px;
  }
  .section-pad { padding: 32px 0; }
  .why-list li { 
    font-size: 16px;
    padding: 10px 0;
  }
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(237, 137, 54, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(49, 151, 149, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-content {
    position: relative;
    z-index: 2;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.how-it-works-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.how-step {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.how-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ed8936, #319795);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.how-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.how-step:hover::before {
    opacity: 1;
}

.step-number {
    display: none !important;
}

.step-number::after {
    display: none !important;
}

.how-step:hover .step-number::after {
    display: none !important;
}

.step-icon {
    color: #319795;
    margin: 0 auto 1.5rem;
    display: block;
    opacity: 0.9;
    transition: all 0.25s ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    width: 48px;
    height: 48px;
}

.how-step:hover .step-icon {
    color: #319795;
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(49, 151, 149, 0.4)) 
            drop-shadow(0 0 15px rgba(237, 137, 54, 0.3));
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.how-it-works-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.how-it-works-cta .btn-primary {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 
        0 6px 20px rgba(237, 137, 54, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-cta .btn-primary:hover {
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(237, 137, 54, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.how-it-works-cta .secondary-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    transition: all 0.3s ease;
}

.how-it-works-cta .secondary-link:hover {
    color: #ffffff;
    text-decoration-color: #ed8936;
    transform: translateY(-1px);
}

.how-it-works-legal {
    text-align: center;
    margin-top: 1rem;
}

.how-it-works-legal small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.125rem;
    }
    
    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .how-step {
        padding: 1.5rem;
    }
    
    .how-it-works-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .how-it-works-cta .btn-primary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .how-it-works-header {
        margin-bottom: 3rem;
    }
    
    .how-it-works-title {
        font-size: 1.75rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1rem;
    }
    
    .step-number {
        display: none !important;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}


/* Heavy Lifting CTA Area */
.heavy-lifting-cta {
    margin-top: 3rem;
    text-align: center;
}

.heavy-lifting-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.heavy-lifting-cta .secondary-link {
    color: #319795;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.heavy-lifting-cta .secondary-link:hover {
    color: #2c7a7b;
    text-decoration: underline;
}
