/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    /* Colors */
    --teal-primary: #0D9488;
    --teal-light: #14B8A6;
    --teal-dark: #0F766E;
    --teal-glow: rgba(20, 184, 166, 0.3);
    
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    --gradient-hero: linear-gradient(180deg, #FAFAFA 0%, #F0FDFC 50%, #CCFBF1 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Typography */
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px var(--teal-glow);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-900);
    background: var(--neutral-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-gradient {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

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

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-shimmer {
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal-primary);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--neutral-900);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
    background: white;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-200);
}

.btn-secondary:hover {
    border-color: var(--teal-primary);
    color: var(--teal-primary);
}

.shimmer-button {
    position: relative;
    overflow: hidden;
}

.shimmer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    animation: shimmer-slide 3s infinite;
}

@keyframes shimmer-slide {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

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

.stat {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--teal-primary);
    line-height: 1;
}

.stat-number::after {
    content: '';
    font-size: 24px;
}

.stat:nth-child(3) .stat-number::after {
    content: '%';
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-600);
    margin-top: 8px;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.phone-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 100%;
    padding: 16px;
    background: linear-gradient(145deg, #1f1f1f, #2d2d2d);
    border-radius: 48px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
}

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

.phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.booking-card {
    padding: 20px;
    border-radius: 16px;
    animation: float-card 3s ease-in-out infinite;
}

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

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.booking-header h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.booking-status {
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ADE80;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.booking-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--neutral-600);
    font-size: 14px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--neutral-400);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--teal-primary);
    border-radius: 2px;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: white;
}

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

.step-card {
    position: relative;
    padding: 40px;
    background: var(--gradient-hero);
    border-radius: 20px;
    border: 2px solid var(--teal-light);
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--neutral-700);
    font-size: 16px;
    line-height: 1.6;
}

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

/* ===================================
   TRANSFORMATION SECTION
   =================================== */
.transformation {
    padding: var(--section-padding) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.section-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.comparison-card {
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.old-way {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 2px solid #FCA5A5;
}

.new-way {
    background: linear-gradient(135deg, #F0FDFC 0%, #CCFBF1 100%);
    border: 2px solid #5EEAD4;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.icon-cross {
    color: #DC2626;
    font-weight: 700;
    flex-shrink: 0;
}

.icon-check {
    color: #14B8A6;
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-arrow {
    animation: pulse-arrow 2s ease-in-out infinite;
}

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

.transformation-visual {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.transformation-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--neutral-50);
}

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

.feature-card {
    padding: 32px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-light);
}

.feature-card[data-tilt] {
    transform-style: preserve-3d;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neutral-900);
}

.feature-description {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--teal-dark);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */
.value-proposition {
    padding: var(--section-padding) 0;
    background: white;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.value-card {
    padding: 40px;
    background: var(--gradient-hero);
    border-radius: 20px;
    border: 2px solid var(--teal-light);
    transition: var(--transition-normal);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.value-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
}

.metrics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px;
    background: var(--gradient-hero);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--teal-primary);
    display: block;
    margin-bottom: 8px;
    word-break: keep-all;
    white-space: nowrap;
}

.metric-label {
    font-size: 14px;
    color: var(--neutral-600);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.metric-subtext {
    font-size: 10px;
    opacity: 0.7;
}

/* ===================================
   ROI CALCULATOR SECTION
   =================================== */
.roi-calculator {
    padding: var(--section-padding) 0;
    background: var(--neutral-50);
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.roi-card {
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.roi-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.old-method {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 2px solid #FCA5A5;
}

.new-method {
    background: linear-gradient(135deg, #F0FDFC 0%, #CCFBF1 100%);
    border: 2px solid #5EEAD4;
}

.roi-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--neutral-900);
}

.roi-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--neutral-600);
}

.roi-items {
    margin-bottom: 24px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--neutral-700);
}

.roi-icon {
    font-size: 24px;
}

.roi-total {
    padding-top: 16px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
    color: var(--neutral-900);
}

.roi-arrow {
    animation: pulse-arrow 2s ease-in-out infinite;
}

.roi-result {
    padding: 40px;
    background: var(--gradient-primary);
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.roi-result-content {
    color: white;
}

.roi-highlight {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.roi-value {
    font-size: 20px;
    opacity: 0.95;
}

.roi-value strong {
    font-weight: 800;
    text-decoration: underline;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--neutral-50);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: 24px;
    border: 2px solid var(--teal-light);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--neutral-900);
}

.pricing-price {
    text-align: center;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--teal-primary);
    vertical-align: top;
}

.price-amount {
    font-size: 72px;
    font-weight: 800;
    color: var(--teal-primary);
    line-height: 1;
}

.price-period {
    font-size: 20px;
    color: var(--neutral-600);
}

.pricing-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    padding: 4px;
    background: var(--neutral-100);
    border-radius: 12px;
}

.toggle-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: var(--neutral-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle-btn.active {
    background: white;
    color: var(--teal-primary);
    box-shadow: var(--shadow-sm);
}

.savings {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--neutral-700);
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--neutral-600);
}

.pricing-final-copy {
    text-align: center;
    font-size: 15px;
    color: var(--neutral-700);
    margin-top: 8px;
    font-weight: 500;
}

.pricing-guarantee {
    max-width: 600px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 2px dashed var(--teal-light);
}

.guarantee-icon {
    font-size: 48px;
}

.pricing-guarantee h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--neutral-900);
}

.pricing-guarantee p {
    font-size: 14px;
    color: var(--neutral-600);
}

/* Three-tier pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-tier {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid var(--neutral-200);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-light);
}

.pricing-tier.popular {
    border-color: var(--teal-primary);
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.15);
}

.popular-badge,
.savings-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.savings-badge {
    background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
}

.tier-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-900);
    text-align: center;
}

.tier-price {
    text-align: center;
    margin-bottom: 12px;
}

.tier-commission {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-600);
    margin-bottom: 24px;
    min-height: 24px;
}

.tier-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--neutral-700);
}

.tier-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-restriction {
    color: var(--neutral-500);
    font-size: 14px;
}

.tier-note {
    text-align: center;
    font-size: 13px;
    color: var(--neutral-600);
    margin-top: 12px;
}

.pricing-comparison {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 32px;
    background: var(--neutral-100);
    border-radius: 16px;
    border: 2px solid var(--neutral-200);
}

.comparison-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-900);
    text-align: center;
}

.comparison-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--neutral-700);
    text-align: center;
}

.comparison-text strong {
    color: var(--neutral-900);
    font-weight: 600;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--section-padding) 0;
    background: white;
}

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

.faq-item {
    padding: 32px;
    background: var(--gradient-hero);
    border-radius: 16px;
    border: 2px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--teal-light);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neutral-900);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    z-index: -1;
}

.cta-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: var(--teal-primary);
    box-shadow: var(--shadow-xl);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--neutral-900);
    color: var(--neutral-400);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-gradient {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--neutral-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--neutral-800);
    text-align: center;
    font-size: 14px;
}

/* ===================================
   ANIMATIONS
   =================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .roi-comparison {
        grid-template-columns: 1fr;
    }
    
    .roi-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero-badge {
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid,
    .steps-grid,
    .value-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        padding: 32px 20px;
    }
    
    .metric-value {
        font-size: 32px;
    }
    
    .metric-label {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .phone-mockup {
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat {
        text-align: center;
    }
    
    .nav-cta {
        min-height: 44px;
        padding: 12px 20px;
    }
}

/* ===================================
   ADD-ONS REVENUE MULTIPLIER CALLOUT
   =================================== */

.addons-callout {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    position: relative;
    overflow: hidden;
}

.addons-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.addons-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.addons-icon {
    font-size: 72px;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

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

.addons-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.addons-description {
    font-size: 20px;
    color: var(--neutral-700);
    margin-bottom: 40px;
    line-height: 1.6;
}

.addons-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.example-before,
.example-after {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    min-width: 250px;
}

.example-before h4,
.example-after h4 {
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 12px;
}

.example-calc {
    font-size: 16px;
    color: var(--neutral-700);
    margin-bottom: 0;
}

.example-profit {
    font-size: 18px;
    font-weight: 700;
    color: #15803d;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #dcfce7;
}

.example-arrow {
    font-size: 48px;
    color: var(--teal-primary);
    font-weight: 700;
}

.addons-footer {
    font-size: 18px;
    color: var(--neutral-700);
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   WAITLIST EMAIL FORMS
   =================================== */

.waitlist-form {
    margin-top: 32px;
}

.email-signup-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
    max-width: 600px;
}

.email-signup-form.centered-form {
    margin: 24px auto 0;
    justify-content: center;
}

.email-signup-form.large-form {
    max-width: 700px;
}

.email-input {
    flex: 1;
    min-width: 0;
    padding: 16px 24px;
    font-size: 16px;
    border: 2px solid var(--teal-light);
    border-radius: 12px;
    background: white;
    color: var(--neutral-900);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.email-input::placeholder {
    color: var(--neutral-400);
}

.email-input.large-input {
    font-size: 18px;
    padding: 20px 28px;
}

.email-signup-form button {
    flex-shrink: 0;
    white-space: nowrap;
}

.success-message {
    margin-top: 16px;
    padding: 16px 24px;
    background: #D1FAE5;
    border: 2px solid #10B981;
    border-radius: 12px;
    color: #065F46;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

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

.error-message {
    margin-top: 16px;
    padding: 16px 24px;
    background: #FEE2E2;
    border: 2px solid #EF4444;
    border-radius: 12px;
    color: #991B1B;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@media (max-width: 640px) {
    .email-signup-form {
        flex-direction: column;
    }
    
    .email-signup-form button {
        width: 100%;
    }
}

/* ===================================
   NEW HOMEPAGE ELEMENTS
   =================================== */

/* Trial Banner */
.trial-banner {
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 12px;
    text-align: center;
}

.trial-banner p {
    margin: 0;
    color: var(--teal-dark);
    font-size: 15px;
    font-weight: 600;
}

/* CTA Micro Copy */
.cta-micro-copy {
    margin-top: 12px;
    color: var(--neutral-600);
    font-size: 14px;
    text-align: center;
}

/* Step Description */
.step-description {
    font-size: 15px;
    color: var(--neutral-700);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Founder Story Section */
.founder-story {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #F0FDFC 0%, #CCFBF1 100%);
}

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

.founder-header {
    margin-bottom: 32px;
}

.founder-text {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.founder-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neutral-700);
    margin-bottom: 24px;
}

.founder-text p:last-child {
    margin-bottom: 0;
}

.founder-highlight {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--teal-dark) !important;
    margin-top: 32px !important;
    padding-top: 24px;
    border-top: 2px solid rgba(20, 184, 166, 0.2);
}

/* Enhanced ROI Section */
.roi-breakdown {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.roi-annual {
    margin-top: 24px;
    padding: 24px;
    background: rgba(20, 184, 166, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--teal-primary);
}

.roi-annual h4 {
    font-size: 18px;
    color: var(--neutral-900);
    margin-bottom: 16px;
    font-weight: 700;
}

.roi-annual ul {
    list-style: none;
    margin: 16px 0;
}

.roi-annual li {
    font-size: 16px;
    color: var(--neutral-700);
    margin-bottom: 8px;
    font-weight: 500;
}

.roi-final {
    font-size: 20px !important;
    color: var(--teal-dark) !important;
    margin-top: 16px !important;
    padding-top: 16px;
    border-top: 2px solid rgba(20, 184, 166, 0.2);
}

/* Pricing Section Enhancements */
.pricing-subtext {
    margin-top: 8px;
    font-size: 13px;
    color: var(--neutral-500);
}

.pricing-urgency {
    margin-top: 16px;
    font-size: 14px;
    color: var(--neutral-600);
    font-style: italic;
}

/* Large Guarantee Section */
.pricing-guarantee-large {
    margin-top: 48px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon-large {
    font-size: 64px;
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-size: 28px;
    color: var(--neutral-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.guarantee-text p {
    font-size: 16px;
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .founder-text {
        padding: 32px 24px;
    }
    
    .founder-text p {
        font-size: 16px;
    }
    
    .founder-highlight {
        font-size: 18px !important;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text h3 {
        font-size: 24px;
    }
    
    .roi-annual h4 {
        font-size: 16px;
    }
    
    .trial-banner {
        padding: 12px 16px;
    }
    
    .trial-banner p {
        font-size: 13px;
    }
    
    .addons-title {
        font-size: 32px;
    }
    
    .addons-description {
        font-size: 18px;
    }
    
    .addons-example {
        gap: 20px;
    }
    
    .example-arrow {
        font-size: 32px;
        transform: rotate(90deg);
    }
    
    .example-before,
    .example-after {
        padding: 24px;
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .addons-footer {
        font-size: 16px;
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .metrics-bar {
        padding: 24px 16px;
        gap: 20px 12px;
    }
    
    .metric-value {
        font-size: 28px;
    }
    
    .metric-label {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .btn-primary,
    .btn-secondary,
    .nav-cta {
        min-height: 48px;
    }
    
    .founder-text {
        padding: 24px 16px;
    }
    
    .guarantee-icon-large {
        font-size: 48px;
    }
    
    .guarantee-text h3 {
        font-size: 20px;
    }
    
    .pricing-guarantee-large {
        padding: 24px 16px;
    }
}
