/* =======================================================
   EjeHair Landing Page — Premium CSS
   Inspired by Fresha.com & AgendaPro
   Palette: Navy, Gold, Lavender, Cream
   ======================================================= */

/* ===================== VARIABLES ===================== */
:root {
    --navy: #0F172A;
    --navy-mid: #1E293B;
    --navy-light: #334155;
    --gold: #CBA135;
    --gold-light: #E8C55A;
    --gold-dark: #A07C20;
    --lavender: #C084FC;
    --rose: #FB7185;
    --mint: #34D399;
    --cream: #FDF8F3;
    --white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #CBD5E1;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 1rem;
    --radius-sm: 0.5rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 0 30px rgba(203, 161, 53, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-login {
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: var(--transition) !important;
}

.nav-login:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.btn-nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: 0.5rem;
    transition: var(--transition) !important;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    background: linear-gradient(135deg, #0F172A 0%, #1E1438 50%, #0F172A 100%);
    overflow: hidden;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(203, 161, 53, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(192, 132, 252, 0.08) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: float infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(203, 161, 53, 0.12);
    border: 1px solid rgba(203, 161, 53, 0.3);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.9s ease 0.2s both;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.text-light-muted {
    color: var(--text-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-subtitle strong {
    color: var(--gold);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.9s ease 0.6s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
    border-radius: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(203, 161, 53, 0.4);
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(203, 161, 53, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 0.75rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    animation: fadeInUp 0.9s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 6px;
    height: 30px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    border-radius: 3px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
    background: var(--cream);
    padding: 2rem 0;
    border-bottom: 1px solid #e8ddd0;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo svg {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.trust-logo:hover svg {
    opacity: 1;
}

/* ===================== SECTIONS COMMON ===================== */
.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--navy);
}

.section-cream {
    background: var(--cream);
}

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(203, 161, 53, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.section-eyebrow-light {
    background: rgba(203, 161, 53, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================== FEATURES ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.feature-card-highlight {
    background: linear-gradient(135deg, var(--navy) 0%, #1E293B 100%);
    border-color: var(--gold);
    color: var(--white);
}

.feature-card-highlight h3 {
    color: var(--white);
}

.feature-card-highlight p {
    color: rgba(255, 255, 255, 0.75);
}

.feature-card-highlight .feature-list li {
    color: rgba(255, 255, 255, 0.85);
}

.feature-badge-new {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.8rem;
    border-radius: 2rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.feature-icon-blue {
    background: #EFF6FF;
}

.feature-icon-gold {
    background: rgba(203, 161, 53, 0.15);
}

.feature-icon-green {
    background: #F0FDF4;
}

.feature-icon-purple {
    background: #F5F3FF;
}

.feature-icon-rose {
    background: #FFF1F2;
}

.feature-icon-teal {
    background: #F0FDFA;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(203, 161, 53, 0.08);
    border-color: rgba(203, 161, 53, 0.3);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(203, 161, 53, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
}

/* ===================== COMPARISON ===================== */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 600;
}

.th-ejehair {
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
}

.comparison-table td {
    padding: 0.85rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: #f8fafc;
}

.td-check {
    color: #16a34a;
    font-size: 1.1rem;
}

.td-cross {
    color: #dc2626;
    font-size: 1.1rem;
}

.td-partial {
    color: #d97706;
}

.comparison-row-price td {
    background: #f8fafc;
    font-weight: 600;
}

.td-price {
    font-size: 0.8rem;
}

.td-ejehair-price {
    color: var(--gold-dark);
    font-weight: 800;
}

/* ===================== PRICING ===================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

input:checked+.toggle-slider {
    background: var(--gold);
}

input:checked+.toggle-slider::before {
    transform: translateX(24px);
}

.save-badge {
    background: var(--mint);
    color: #064E3B;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 2rem;
    margin-left: 0.3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: rgba(203, 161, 53, 0.4);
    transform: translateY(-4px);
}

.pricing-card-popular {
    background: rgba(203, 161, 53, 0.06);
    border-color: var(--gold);
    transform: scale(1.03);
}

.pricing-card-popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.plan-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.plan-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.plan-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 0.3rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.price-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.3rem;
}

.plan-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    font-style: italic;
}

.plan-features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 2rem;
    transition: var(--transition);
}

.btn-plan-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-plan-primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.btn-plan-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-plan-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pricing-footer-note {
    text-align: center;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card-featured {
    background: linear-gradient(135deg, var(--navy), #1E293B);
    border-color: var(--gold);
    color: var(--white);
}

.testimonial-card-featured .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card-featured strong {
    color: var(--white);
}

.testimonial-card-featured span {
    color: rgba(255, 255, 255, 0.5) !important;
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.author-avatar-1 {
    background: linear-gradient(135deg, #7C3AED, #C084FC);
}

.author-avatar-2 {
    background: linear-gradient(135deg, #CBA135, #E8C55A);
}

.author-avatar-3 {
    background: linear-gradient(135deg, #059669, #34D399);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===================== ECOSYSTEM ===================== */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.eco-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.eco-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.eco-card-active {
    background: linear-gradient(135deg, var(--navy), #1E293B);
    border-color: var(--gold);
    color: var(--white);
}

.eco-card-active h3 {
    color: var(--white);
}

.eco-card-active p {
    color: rgba(255, 255, 255, 0.65);
}

.eco-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.eco-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.eco-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.eco-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    background: #EFF6FF;
    color: #1D4ED8;
}

.eco-badge-active {
    background: var(--gold);
    color: var(--navy);
}

.ecosystem-cta {
    text-align: center;
}

.ecosystem-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ===================== FINAL CTA ===================== */
.final-cta {
    position: relative;
    background: var(--navy);
    background: linear-gradient(135deg, #0F172A 0%, #1E1438 100%);
    padding: 8rem 1.5rem;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(203, 161, 53, 0.15) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(203, 161, 53, 0.15);
    border: 1px solid rgba(203, 161, 53, 0.3);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(203, 161, 53, 0.4);
}

.btn-cta-final:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(203, 161, 53, 0.5);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-trust-badges span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================== FOOTER ===================== */
.footer {
    background: #070E1A;
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo-text {
    font-size: 1.8rem !important;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--gold);
    background: rgba(203, 161, 53, 0.1);
    color: var(--gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.3rem 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
    color: var(--gold) !important;
    opacity: 0.7;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .testimonials-grid,
    .pricing-grid,
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-popular {
        transform: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-trust-badges {
        gap: 1rem;
    }
}

/* ===================== PWA INSTALL BANNER ===================== */
.pwa-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    width: calc(100% - 2rem);
    max-width: 520px;
    animation: slideUpFade 0.4s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.pwa-banner-inner {
    background: #0F172A;
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.pwa-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.pwa-text {
    flex: 1;
    line-height: 1.3;
}

.pwa-text strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.pwa-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.pwa-btn-install {
    background: #CBA135;
    color: #0F172A;
    border: none;
    padding: 0.5rem 1.1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.pwa-btn-install:hover {
    background: #E8C55A;
}

.pwa-btn-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.25rem;
    transition: color 0.2s;
    flex-shrink: 0;
}

.pwa-btn-close:hover {
    color: white;
}

/* ===================== WOMPI BUTTONS ===================== */
#wompi-pro,
#wompi-premium {
    margin-top: 1.5rem;
}

/* Override Wompi's injected button */
#wompi-pro button,
#wompi-premium button {
    display: block !important;
    width: 100% !important;
    background: #CBA135 !important;
    color: #0F172A !important;
    border: none !important;
    padding: 0.85rem 1rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    text-align: center !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    transition: all 0.2s !important;
}

#wompi-premium button {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

#wompi-premium button:hover {
    border-color: #CBA135 !important;
    color: #CBA135 !important;
}