:root {
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-blue: #1e293b;
    --light: #f8fafc;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.25);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-btn i {
    animation: whatsapp-icon-pulse 3s infinite ease-in-out;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    animation: whatsapp-ping 2s infinite ease-out;
    z-index: 1;
}

.whatsapp-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background-color: #4ade80;
    border: 2px solid #25d366;
    border-radius: 50%;
    z-index: 3;
}

@keyframes whatsapp-ping {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes whatsapp-icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-display);
}

/* ========== NAVBAR — Scroll-Aware Glassmorphism ========== */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.7rem;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    filter: drop-shadow(0 0 8px rgba(79, 70, 229, 0.3));
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-brand i {
    color: var(--primary);
    margin-right: 8px;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.navbar-brand:hover i {
    transform: rotate(0deg) scale(1.1);
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    margin: 0 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

/* ========== COMMON PAGE HEADER ========== */
.page-header {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #fff;
    text-align: center;
    border-radius: 32px;
    margin: 80px 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.25) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 50%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.btn-cta-premium {
    background: #fff;
    color: #4f46e5 !important;
    font-weight: 800;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    text-decoration: none !important;
}

.btn-cta-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    background: #f8fafc;
}

/* ========== BUTTONS ========== */
.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff !important;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.05rem;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.45);
}

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

.btn--secondary {
    background-color: #fff;
    color: var(--dark) !important;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 30px;
    border: 2px solid rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    font-size: 1.05rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

/* ========== HERO SECTION — Animated Mesh Gradient ========== */
.hero {
    padding: 100px 0 120px 0;
    background: 
        radial-gradient(circle at 10% 25%, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0) 65%),
        radial-gradient(circle at 90% 75%, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0) 65%),
        var(--light);
    position: relative;
    overflow: hidden;
}

/* Disable the animated elements and floating orbs since we use a static gradient background on the container */
.hero::before,
.hero::after,
.hero-orb {
    display: none !important;
}

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

.hero__badge {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(99, 102, 241, 0.12) 100%);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}

.hero__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.08), transparent);
    transform: translateX(-100%);
    animation: shimmerBadge 3s ease-in-out infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.hero__badge i {
    margin-right: 8px;
    animation: boltPulse 2s ease-in-out infinite;
}

@keyframes boltPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero__title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.hero__subtitle {
    font-size: 1.18rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 520px;
}

/* Hero Phone Mockup Animation */
.hero-mockup-wrapper {
    position: relative;
    display: inline-block;
}

.hero-mockup-wrapper img {
    animation: mockupFloat 6s ease-in-out infinite;
    border-radius: 32px !important;
    border: 10px solid #fff;
    max-height: 500px;
    box-shadow: 0 30px 80px rgba(79, 70, 229, 0.2), 0 0 0 1px rgba(79, 70, 229, 0.05) !important;
    transition: box-shadow 0.3s ease;
}

.hero-mockup-wrapper:hover img {
    box-shadow: 0 35px 90px rgba(79, 70, 229, 0.28), 0 0 0 1px rgba(79, 70, 229, 0.1) !important;
}

.hero-mockup-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: mockupGlow 6s ease-in-out infinite;
}

@keyframes mockupFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes mockupGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ========== HERO FREE TRIAL BADGE ========== */
.hero__free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #059669;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    animation: freeBadgePulse 3s ease-in-out infinite;
}

.hero__free-badge i {
    font-size: 1rem;
}

@keyframes freeBadgePulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== STATS BAR — Glassmorphic Gradient Cards ========== */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 25px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.stat-card__number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-card__label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* ========== SECTION COMMON ========== */
.section {
    padding: 120px 0;
}

.section--gray {
    background-color: #f1f5f9;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: rgba(79, 70, 229, 0.06);
    border-radius: 30px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 70px auto;
    line-height: 1.7;
}

/* Section wave divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    margin: 0 auto 60px auto;
}

/* ========== STEPS LAYOUT — Connected ========== */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

/* Connecting line between steps */
.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
    z-index: 0;
    opacity: 0.3;
}

.step {
    background: #fff;
    padding: 45px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.1);
}

.step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
    animation: stepPulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes stepPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.step__title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ========== SHOWCASE BLOCKS ========== */
.showcase-block {
    padding: 100px 0;
}

.showcase-text {
    padding-right: 50px;
}

.showcase-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.showcase-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.showcase-feature-list {
    list-style: none;
    padding-left: 0;
}

.showcase-feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
}

.showcase-feature-list li i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Showcase image wrapper with glow blob */
.showcase-img-wrapper {
    position: relative;
    display: inline-block;
}

.showcase-img-wrapper img {
    border-radius: 24px !important;
    border: 8px solid #fff;
    max-height: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-img-wrapper:hover img {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15) !important;
}

.showcase-img-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.5;
}

.showcase-img-glow--indigo {
    background: rgba(79, 70, 229, 0.15);
}

.showcase-img-glow--emerald {
    background: rgba(16, 185, 129, 0.15);
}

/* ========== FEATURES CARDS GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 35px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border-color: rgba(79, 70, 229, 0.1);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.card__title {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ========== WHY MENUBOOK — FEATURES GRID ========== */
.why-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.15), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.why-card {
    background: var(--light);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.1);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.why-card:hover .why-card__icon {
    transform: scale(1.15) rotate(5deg);
}

.why-card__icon--indigo {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: var(--primary);
}

.why-card__icon--emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.2) 100%);
    color: var(--secondary);
}

.why-card__icon--amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.2) 100%);
    color: #d97706;
}

.why-card__icon--rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(251, 113, 133, 0.2) 100%);
    color: #e11d48;
}

.why-card__icon--cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(34, 211, 238, 0.2) 100%);
    color: #0891b2;
}

.why-card__icon--violet {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.2) 100%);
    color: #7c3aed;
}

.why-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-card__text {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ========== FEATURE COMPARISON TABLE ========== */
.comparison-section {
    padding: 120px 0;
    background: var(--light);
}

.comparison-table-wrapper {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    margin-top: 60px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead th {
    padding: 28px 30px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    background: #fafbfc;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead th:not(:first-child) {
    text-align: center;
    min-width: 180px;
}

.comparison-table thead th.th-highlight {
    color: var(--primary);
    position: relative;
    background: rgba(79, 70, 229, 0.03);
}

.comparison-table thead th.th-highlight::before {
    content: 'TÜM ÖZELLİKLER';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    background: var(--secondary);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: rgba(79, 70, 229, 0.02);
}

.comparison-table tbody td {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.97rem;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.comparison-table tbody td:not(:first-child) {
    text-align: center;
}

.comparison-table .check-icon {
    color: var(--secondary);
    font-size: 1.15rem;
}

.comparison-table .premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-left: 6px;
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tfoot td {
    padding: 25px 30px;
    background: #fafbfc;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

/* ========== PRICING — Dark Glassmorphism ========== */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #090d16 0%, #0f172a 50%, #1e1b4b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(250px);
    opacity: 0.12;
    bottom: -15%;
    right: -10%;
}

.pricing::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    filter: blur(200px);
    opacity: 0.08;
    top: -10%;
    left: -5%;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 550px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.pricing-card__badge {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin: 25px 0;
    letter-spacing: -1.5px;
}

.pricing-price span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 35px 0 45px 0;
}

.pricing-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.pricing-list li i {
    color: var(--secondary);
    margin-right: 14px;
    font-size: 1.15rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 120px 0;
    background-color: #fff;
}

.faq-accordion .card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.faq-accordion .card:hover {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.06);
}

.faq-accordion .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 22px 25px;
    cursor: pointer;
}

.faq-question {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
    padding: 0 25px 25px 25px;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(180deg, #0b0f19 0%, #060810 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
}

footer h5 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}

.footer-brand-title {
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-decoration: none !important;
}

.footer-brand-title span {
    color: var(--primary);
}

.footer-brand-title i {
    color: var(--primary);
    margin-right: 8px;
    transform: rotate(-10deg);
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-list a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.footer-contact-info {
    list-style: none;
    padding-left: 0;
}

.footer-contact-info li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact-info i {
    color: var(--primary-light);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* ========== FINAL CTA BANNER ========== */
.final-cta {
    padding: 0 0 120px 0;
    background: var(--light);
}

.final-cta__inner {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    border-radius: 32px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.3);
}

.final-cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta__inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.final-cta__title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.final-cta__desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 45px;
}

.final-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--cta-white {
    background: #fff;
    color: var(--primary) !important;
    font-weight: 800;
    padding: 18px 42px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn--cta-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.08), transparent);
    transition: left 0.6s ease;
}

.btn--cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

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

.btn--cta-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    font-weight: 700;
    padding: 18px 42px;
    border-radius: 30px;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--cta-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.5s;
}

.animate-on-scroll.delay-6 {
    transition-delay: 0.6s;
}

/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-orb {
        display: none;
    }

    .hero-mockup-wrapper img {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .navbar {
        padding: 16px 20px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
    }

    .hero__title {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-cta__inner {
        padding: 60px 30px;
    }

    .final-cta__title {
        font-size: 2.2rem;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 650px;
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 0 80px 0;
    }

    .hero__title {
        font-size: 2.1rem;
        letter-spacing: -1px;
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero__actions .btn {
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .showcase-text {
        padding-right: 0;
        margin-top: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .final-cta__title {
        font-size: 1.8rem;
    }

    .final-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .stat-card__number {
        font-size: 2.2rem;
    }

    .hero-orb--1 {
        width: 150px;
        height: 150px;
    }

    .hero-orb--2 {
        width: 100px;
        height: 100px;
    }

    .hero-orb--3 {
        display: none;
    }

    .hero-mockup-wrapper img {
        max-height: 350px;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }
}