:root {
    --blue-primary: #0066FF;
    --blue-bright: #00b4ff;
    --blue-electric: #2dd4f0;
    --blue-light: #E8F4FF;
    --blue-lighter: #F0F8FF;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --danger-red: #ef4444;
    --accent: #0066FF;

    /* Premium enhancements */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 20px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08), 0 30px 60px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 4px 20px rgba(0, 102, 255, 0.25), 0 8px 32px rgba(0, 102, 255, 0.15);
    --shadow-blue-lg: 0 8px 30px rgba(0, 102, 255, 0.3), 0 16px 50px rgba(0, 102, 255, 0.2);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShimmer 4s ease-in-out infinite;
}

@keyframes gradientShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.accent-text {
    color: var(--blue-primary);
}

/* Premium section label styling */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 180, 255, 0.08));
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.15);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gray-900);
}

.logo-text span {
    color: var(--blue-primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gray-900);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--blue-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--gray-800);
    transition: all 0.3s ease;
}

.urgency-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 12px 20px;
    text-align: center;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.urgency-banner p {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.urgency-banner svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--blue-lighter) 0%, var(--white) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 180, 255, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse 50% 30% at 20% 30%, rgba(0, 102, 255, 0.06) 0%, transparent 40%);
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(2%, 1%) scale(1.02);
    }

    50% {
        transform: translate(-1%, 2%) scale(1);
    }

    75% {
        transform: translate(1%, -1%) scale(1.01);
    }
}

/* Floating shapes */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 180, 255, 0.05));
    filter: blur(40px);
}

.hero-bg::before {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    animation: floatShape1 15s ease-in-out infinite;
}

.hero-bg::after {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    animation: floatShape2 18s ease-in-out infinite;
}

@keyframes floatShape1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -20px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 15px) rotate(-3deg);
    }
}

@keyframes floatShape2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-25px, 20px) rotate(-4deg);
    }

    66% {
        transform: translate(20px, -15px) rotate(6deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards, badgeGlow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
    }

    50% {
        box-shadow: 0 4px 30px rgba(0, 102, 255, 0.2);
    }
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--blue-primary);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    max-width: 900px;
    margin-bottom: 24px;
    color: var(--gray-900);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 16px auto;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s forwards;
    opacity: 0;
}

.hero-promise {
    font-size: 1.05rem;
    color: var(--blue-primary);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 600;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.25s forwards;
    opacity: 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(0, 180, 255, 0.04));
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.3s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-primary) 0%, #0055dd 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-blue-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* CTA Glow animation */
.hero-cta-group .btn-primary {
    animation: fadeInUp 0.8s var(--transition-smooth) 0.3s forwards, ctaGlow 3s ease-in-out 1s infinite;
    opacity: 0;
}

@keyframes ctaGlow {

    0%,
    100% {
        box-shadow: var(--shadow-blue);
    }

    50% {
        box-shadow: 0 8px 40px rgba(0, 102, 255, 0.4), 0 16px 60px rgba(0, 102, 255, 0.25);
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--gray-800);
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
}

/* Glassmorphic stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s var(--transition-smooth);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

.hero-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.6s forwards;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue-primary);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.6;
    }
}

.problem-section {
    background: var(--white);
    position: relative;
}

.problem-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* section-label is defined globally above */
.problem-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.problem-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--danger-red);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.offer-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
}

.offer-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.offer-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.offer-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.offer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-bright));
}

.offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.offer-card-emoji {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.offer-card>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pricing-section {
    background: var(--white);
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: var(--white);
    border: 2px solid var(--blue-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pricing-name {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-amount span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.pricing-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--success-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 16px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-cta.primary {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.pricing-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.pricing-cta.secondary {
    background: transparent;
    color: var(--gray-800);
    border: 2px solid var(--gray-300);
}

.pricing-cta.secondary:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.bonuses-section {
    background: var(--blue-light);
    position: relative;
}

.bonuses-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.bonuses-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--gray-900);
}

.bonuses-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.bonus-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-primary);
}

.guarantee-section {
    background: var(--white);
    padding: 80px 0;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success-green), #059669);
    border-radius: 50%;
    margin-bottom: 30px;
    position: relative;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px dashed rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.guarantee-badge svg {
    width: 60px;
    height: 60px;
    stroke: var(--white);
}

.guarantee-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--success-green);
}

.guarantee-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.guarantee-content p strong {
    color: var(--gray-900);
}

.testimonial-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(0, 102, 255, 0.05), transparent 70%);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--gray-800);
}

.testimonial-quote::before {
    content: '"';
    display: block;
    font-size: 5rem;
    line-height: 1;
    color: var(--blue-primary);
    opacity: 0.3;
    margin-bottom: -30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.case-studies-section {
    background: var(--white);
}

.case-studies-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.case-studies-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.case-study-header {
    background: linear-gradient(135deg, var(--danger-red), #dc2626);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.case-study-header.success {
    background: linear-gradient(135deg, var(--success-green), #059669);
}

.case-study-header svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.case-study-header span {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-body {
    padding: 32px;
}

.case-study-body h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.case-study-body>p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.case-study-result {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.result-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-green);
    line-height: 1;
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.result-label strong {
    color: var(--gray-900);
    display: block;
    margin-bottom: 4px;
}

.process-section {
    background: var(--gray-50);
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.process-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.process-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue-primary), var(--blue-bright));
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.process-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-step-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    flex: 1;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-content {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.process-step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.scarcity-section {
    background: var(--blue-light);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.scarcity-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.scarcity-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.scarcity-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scarcity-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--blue-primary);
}

.scarcity-text h3 {
    font-size: 1.3rem;
    color: var(--blue-primary);
    margin-bottom: 4px;
}

.scarcity-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.05), transparent 60%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.cta-content>p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.cta-contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue-primary);
}

.cta-contact-item a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-contact-item a:hover {
    color: var(--blue-primary);
}

.footer {
    background: var(--gray-900);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--blue-bright);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-500);
    font-size: 0.85rem;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    list-style: none;
}

.mobile-nav-links a {
    color: var(--gray-900);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-close svg {
    width: 32px;
    height: 32px;
    stroke: var(--gray-800);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .scarcity-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .urgency-banner {
        top: 70px;
        padding: 10px 16px;
    }

    .urgency-banner p {
        font-size: 0.85rem;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        gap: 20px;
    }

    .process-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .case-study-result {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}