/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables - Thriwin Brand Colors */
:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --secondary: #10B981;
    --accent: #8B5CF6;
    --success: #10B981;
    --warning: #F59E0B;
    --dark: #0A0A0F;
    --darker: #050508;
    --card-bg: #1A1A24;
    --card-hover: #252535;
    --light: #F9FAFB;
    --gray: #9CA3AF;
    --border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-2: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    --gradient-3: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --glow-primary: rgba(59, 130, 246, 0.5);
    --glow-secondary: rgba(16, 185, 129, 0.5);
    --glow-accent: rgba(139, 92, 246, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
}

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

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px var(--glow-primary), 0 0 60px var(--glow-primary);
    }
    50% {
        box-shadow: 0 0 50px var(--glow-primary), 0 0 100px var(--glow-primary);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* @keyframes neon-pulse {
    0%, 100% {
        text-shadow: 0 0 10px var(--glow-primary), 0 0 20px var(--glow-primary);
    }
    50% {
        text-shadow: 0 0 20px var(--glow-primary), 0 0 40px var(--glow-primary), 0 0 60px var(--glow-primary);
    }
} */

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

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

/* Ticker Bar */
.ticker-bar {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    flex-shrink: 0;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

/* Header */
.header {
    padding: 24px 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header:hover {
    border-bottom-color: var(--primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

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

.logo {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 43px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 8px;
    padding: 4px;
}

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

.logo:hover img {
    filter: brightness(1.2);
}

.header-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-cta {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.header-cta.secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.header-cta.secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.header-cta.primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px var(--glow-primary);
}

.header-cta.primary::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.6s ease;
}

.header-cta.primary:hover::before {
    left: 100%;
}

.header-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow-primary);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.1) 0%, var(--dark) 50%);
    position: relative;
    overflow: hidden;
}

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

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--glow-accent) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
    filter: blur(60px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: none;
    background: var(--gradient-1);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    box-shadow: 0 0 40px var(--glow-primary);
    animation: pulse-glow 3s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-badge:hover {
    transform: scale(1.1);
    animation: none;
}

.hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: 80px;
    line-height: 1.05;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    letter-spacing: -3px;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.hero-headline:hover {
    letter-spacing: -4px;
    text-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
}

.hero-subheadline {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 56px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline strong {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Enhanced Price Comparison - Dark */
.price-comparison {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 64px;
    max-width: 950px;
    margin: 0 auto 56px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 1px var(--border);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.6s ease;
}

.price-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    background-size: 200% auto;
    animation: gradient-shift 4s ease infinite;
}

.price-comparison::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
}

.price-comparison:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 80px var(--glow-primary);
    border-color: var(--primary);
}

.price-comparison:hover::after {
    opacity: 0.15;
    top: -50%;
    left: -50%;
}

.price-header {
    text-align: center;
    margin-bottom: 56px;
}

.price-title {
    font-family: 'DM Serif Display', serif;
    font-size: 38px;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.price-option {
    text-align: center;
    padding: 40px;
    border-radius: 28px;
    transition: all 0.5s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.price-option.old {
    background: linear-gradient(135deg, rgba(50, 50, 60, 0.5) 0%, rgba(40, 40, 50, 0.5) 100%);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.price-option.old:hover {
    transform: scale(0.96);
    opacity: 0.6;
    border-color: rgba(255, 0, 0, 0.3);
}

.price-option.new {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 3px solid var(--primary);
    box-shadow: 0 0 60px var(--glow-primary), inset 0 0 40px rgba(59, 130, 246, 0.1);
}

.price-option.new:hover {
    transform: scale(1.08);
    box-shadow: 0 0 100px var(--glow-primary), 0 0 50px var(--glow-accent), inset 0 0 60px rgba(59, 130, 246, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

.price-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.price-option.old .price-label {
    color: #6B7280;
}

.price-option.new .price-label {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--glow-primary);
}

.price-amount-wrapper {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    transition: all 0.4s ease;
}

.price-option.old .price-amount {
    color: #4B5563;
    text-decoration: line-through;
    text-decoration-thickness: 4px;
}

.price-option.new .price-amount {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: neon-pulse 3s ease-in-out infinite; */
}

.price-period {
    font-size: 20px;
    color: var(--gray);
    font-weight: 500;
    display: block;
    margin-top: 8px;
}

.price-features {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.savings-banner {
    background: var(--gradient-3);
    color: white;
    padding: 28px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.savings-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: shimmer 8s linear infinite;
}

.savings-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 0 100px rgba(16, 185, 129, 0.6);
}

.savings-text {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.savings-subtext {
    font-size: 15px;
    opacity: 0.95;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

/* Hero CTA */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta.primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 0 60px var(--glow-primary);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--light);
    border: 3px solid var(--primary);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
}

.hero-cta:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta:hover {
    transform: translateY(-8px) scale(1.05);
}

.hero-cta.primary:hover {
    box-shadow: 0 0 100px var(--glow-primary), 0 10px 60px rgba(0, 0, 0, 0.5);
}

.hero-cta.secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 80px rgba(59, 130, 246, 0.4);
}

.hero-cta span {
    transition: transform 0.3s ease;
}

.hero-cta:hover span {
    transform: translateX(8px);
}

.hero-cta-note {
    font-size: 15px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.hero-cta-wrapper:hover .hero-cta-note {
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow-primary);
}

/* Section Headers (used across sections) */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 0 0 40px var(--glow-primary);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: scale(1.15);
    box-shadow: 0 0 60px var(--glow-primary);
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--light);
    font-weight: 400;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    font-size: 21px;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, var(--dark) 50%);
}

.offer-container {
    max-width: 950px;
    margin: 0 auto;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 72px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 1px var(--border);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.6s ease;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    background-size: 200% auto;
    animation: gradient-shift 4s ease infinite;
}

.offer-card:hover {
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9), 0 0 100px var(--glow-primary);
    transform: translateY(-12px);
    border-color: var(--primary);
}

.offer-header {
    text-align: center;
    margin-bottom: 64px;
}

.offer-title {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--light);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.offer-subtitle {
    font-size: 19px;
    color: var(--gray);
}

.offer-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(234, 88, 12, 0.15) 100%);
    border-left: 5px solid #f59e0b;
    padding: 36px;
    border-radius: 20px;
    margin-bottom: 48px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.offer-highlight::before {
    content: '🎁';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 140px;
    opacity: 0.08;
    transition: all 0.6s ease;
}

.offer-highlight:hover {
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
}

.offer-highlight:hover::before {
    transform: rotate(25deg) scale(1.3);
    opacity: 0.15;
}

.offer-highlight-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 16px;
}

.offer-highlight-text {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
}

.offer-steps {
    display: grid;
    gap: 28px;
    margin-bottom: 56px;
}

.offer-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    border-radius: 20px;
    transition: all 0.5s ease;
    background: rgba(30, 30, 40, 0.5);
    border: 1px solid var(--border);
}

.offer-step:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transform: translateX(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 0 40px var(--glow-primary);
    transition: all 0.4s ease;
}

.offer-step:hover .step-number {
    transform: scale(1.3) rotate(360deg);
    box-shadow: 0 0 60px var(--glow-primary);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
}

.step-description {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
}

.offer-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--darker);
}

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

.benefit-card {
    text-align: center;
    padding: 56px 40px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 30, 40, 0.8) 100%);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 1px var(--border);
    transition: all 0.6s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.8s ease;
}

.benefit-card:hover::before {
    opacity: 0.1;
    top: -50%;
    left: -50%;
}

.benefit-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 100px var(--glow-primary);
    border-color: var(--primary);
}

.benefit-icon {
    width: 96px;
    height: 96px;
    background: var(--gradient-1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
    box-shadow: 0 0 60px var(--glow-primary);
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.3) rotate(15deg);
    box-shadow: 0 0 100px var(--glow-primary);
    animation: bounce 0.8s ease;
}

.benefit-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.benefit-description {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Proof Section */
.proof-section {
    padding: 120px 0;
    background: var(--gradient-1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="white" opacity="0.15"/></svg>');
    animation: float 25s linear infinite;
}

.proof-title {
    font-family: 'DM Serif Display', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.proof-text {
    font-size: 22px;
    margin-bottom: 48px;
    opacity: 0.98;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.proof-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.proof-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    transition: all 0.5s ease;
}

.proof-cta.primary {
    background: white;
    color: var(--dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.proof-cta.secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.proof-cta:hover {
    transform: translateY(-8px) scale(1.08);
}

.proof-cta.primary:hover {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.proof-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(255, 255, 255, 0.3);
}

.proof-note {
    margin-top: 28px;
    font-size: 15px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: var(--dark);
}

.final-cta-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    padding: 72px;
    border-radius: 32px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 1px var(--border);
    border: 1px solid var(--border);
    transition: all 0.6s ease;
}

.final-cta-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9), 0 0 100px var(--glow-primary);
    border-color: var(--primary);
}

.final-cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--light);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.final-cta-text {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 44px;
    line-height: 1.8;
}

.scarcity-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.2) 100%);
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 36px;
    border-left: 5px solid #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.4);
    transition: all 0.4s ease;
}

.scarcity-box:hover {
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.3);
}

.scarcity-text {
    font-size: 17px;
    color: var(--light);
    font-weight: 600;
    margin-bottom: 10px;
}

.scarcity-timer {
    font-size: 15px;
    color: var(--gray);
}

.final-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form Styles */
.claim-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 28px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
    text-align: left;
}

.form-group .required {
    color: #EF4444;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(30, 30, 40, 0.8);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--light);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-align: left;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    background: rgba(40, 40, 50, 0.9);
}

.form-group input::placeholder {
    color: var(--gray);
}

.claim-form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 22px 56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 0 60px var(--glow-primary);
    margin-top: 12px;
}

.claim-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
}

.claim-form button[type="submit"]:hover:not(:disabled)::before {
    width: 400px;
    height: 400px;
}

.claim-form button[type="submit"]:disabled::before {
    display: none;
}

.claim-form button[type="submit"]:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 100px var(--glow-primary), 0 10px 60px rgba(0, 0, 0, 0.5);
}

.claim-form button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: rgba(59, 130, 246, 0.3);
    box-shadow: none;
}

.claim-form button[type="submit"]:disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(59, 130, 246, 0.3);
}

.claim-form button[type="submit"]:disabled span {
    opacity: 0.5;
}

.claim-form button[type="submit"] span {
    transition: transform 0.3s ease;
}

.claim-form button[type="submit"]:hover span {
    transform: translateX(8px);
}

.claim-form button[type="submit"]:disabled:hover span {
    transform: none;
}

/* Intl Tel Input Styles */
.form-group .iti {
    width: 100%;
}

.form-group .iti input {
    width: 100%;
    padding: 16px 20px 16px 60px;
    background: rgba(30, 30, 40, 0.8);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--light);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-align: left;
}

.form-group .iti input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    background: rgba(40, 40, 50, 0.9);
}

.form-group .iti__selected-flag {
    background: transparent;
    padding: 0 12px;
    border-radius: 12px 0 0 12px;
}

.form-group .iti__selected-flag:hover {
    background: rgba(40, 40, 50, 0.5);
}

.form-group .iti__flag {
    margin-right: 8px;
}

.form-group .iti__arrow {
    border-top-color: var(--gray);
}

.form-group .iti__country-list {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--light);
}

.form-group .iti__country-list .iti__country {
    color: var(--light);
}

.form-group .iti__country-list .iti__country:hover,
.form-group .iti__country-list .iti__country.iti__highlight {
    background: rgba(59, 130, 246, 0.2);
}

/* Footer */
.footer {
    padding: 80px 0 50px;
    background: var(--darker);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    margin-bottom: 28px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-logo img {
    height: 43px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 8px;
    padding: 4px;
}

.footer-logo:hover {
    transform: scale(1.15);
}

.footer-logo:hover img {
    filter: brightness(1.2);
}

.footer-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.9;
}
.margin-top-0_5rem{
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 36px 0;
}

.footer-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--glow-primary);
}

.footer-link:hover {
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow-primary);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .hero-subheadline {
        font-size: 19px;
    }
    
    .price-comparison {
        padding: 40px 28px;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .price-amount {
        font-size: 56px;
    }
    
    .price-title {
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    .offer-section {
        padding: 2rem 0;
    }
    
    .offer-card {
        padding: 48px 28px;
    }
    
    .offer-title {
        line-height: 1.3;
    }
    
    .offer-step {
        flex-direction: column;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .proof-title {
        font-size: 40px;
        line-height: 1.3;
    }
    
    .proof-cta.secondary {
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    .final-cta-title {
        font-size: 40px;
        line-height: 1.3;
    }
    
    .final-cta-box {
        padding: 40px 24px;
    }
    
    .claim-form button[type="submit"] {
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas, .offer-ctas, .proof-ctas, .final-ctas {
        flex-direction: column;
    }
    
    .hero-cta, .proof-cta {
        width: 100%;
        justify-content: center;
    }
    
    .header-ctas {
        flex-direction: column;
        gap: 8px;
    }
}
