/* ============================================
   LANDING PAGES - REFINED AURORA EDITION
   Elegant, premium, sophisticated lines & type
   ============================================ */


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

:root {
    /* Refined palette - softer, sophisticated */
    --primary: #8b5cf6;          /* refined purple */
    --primary-soft: #a78bfa;
    --accent: #ec4899;           /* pink */
    --accent-2: #06b6d4;         /* teal */
    --accent-3: #f59e0b;         /* amber */
    --gold: #d97706;
    --success: #10b981;

    /* Dark base - deeper, richer */
    --bg-darkest: #07071a;
    --bg-dark: #0c0c24;
    --bg-card: rgba(20, 20, 40, 0.4);
    --bg-card-hover: rgba(30, 30, 55, 0.5);

    /* Text */
    --text: #e2e8f0;
    --text-bright: #ffffff;
    --text-dim: #94a3b8;
    --text-dimmer: #64748b;
    --text-faint: rgba(148, 163, 184, 0.4);

    /* Border - hairline */
    --border: rgba(148, 163, 184, 0.08);
    --border-bright: rgba(148, 163, 184, 0.15);
    --border-strong: rgba(148, 163, 184, 0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--cps-font-ui);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-darkest);
    overflow-x: hidden;

    letter-spacing: -0.011em;
}

/* Refined aurora background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 15% 0%, rgba(139, 92, 246, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 50% at 85% 10%, rgba(236, 72, 153, 0.12), transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(6, 182, 212, 0.08), transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Subtle noise */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--text-bright); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    background: rgba(7, 7, 26, 0.7);
    border-bottom: 1px solid var(--border);
}
.nav-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-bright);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    letter-spacing: -0.02em;
    line-height: 1;
}
.logo-mark {
    display: inline-block;
    height: 24px;
    width: auto;
    color: var(--text-bright);
    transform: translateY(4px);
    transition: color 0.2s;
}
.logo-mark svg { height: 100%; width: auto; display: block; }
.logo-network {
    font-style: normal;
    font-weight: 300;
    color: var(--text-dim);
    font-size: 22px;
    transition: color 0.2s;
}
.logo:hover .logo-network { color: var(--text-bright); }
.nav-links { display: flex; gap: 36px; flex: 1; justify-content: center; }
.nav-links a {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 450;
    position: relative;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a.aktif { color: var(--text-bright); }
.nav-links a.aktif::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}
.nav-actions { display: flex; gap: 8px; align-items: center; }

/* BUTTONS - refined */
.btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-primary {
    background: var(--text-bright);
    color: var(--bg-darkest) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 0 0 1px rgba(255,255,255,0.05);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 8px 24px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(255,255,255,0.05);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-bright) !important;
    border: 1px solid var(--border-bright);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-strong);
}
.btn-ghost {
    background: transparent;
    color: var(--text-dim) !important;
}
.btn-ghost:hover { color: var(--text-bright) !important; }
.btn-lg { padding: 14px 32px; font-size: 14px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 100px 32px 120px;
    position: relative;
    overflow: hidden;
}

/* Refined gradient orbs - smaller, subtler */
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 60%);
    border-radius: 50%;
    top: -100px;
    left: 5%;
    filter: blur(80px);
    animation: float 22s ease-in-out infinite;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.28), transparent 60%);
    border-radius: 50%;
    bottom: -50px;
    right: 5%;
    filter: blur(80px);
    animation: float 28s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero-publisher::before { background: radial-gradient(circle, rgba(16, 185, 129, 0.32), transparent 60%); }
.hero-publisher::after { background: radial-gradient(circle, rgba(6, 182, 212, 0.32), transparent 60%); }
.hero-advertiser::before { background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 60%); }
.hero-advertiser::after { background: radial-gradient(circle, rgba(236, 72, 153, 0.28), transparent 60%); }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-wrap {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 5px 14px 5px 5px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 36px;
    border: 1px solid var(--border-bright);
    color: var(--text-dim);
    letter-spacing: -0.005em;
}
.hero-badge::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-badge strong {
    color: var(--text-bright);
    font-weight: 600;
}

.hero h1 {
    font-family: var(--cps-font-ui);
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.95;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    color: var(--text-bright);
}
.hero-accent {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent) 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 44px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    font-weight: 400;
}
.hero-sub strong {
    color: var(--text-bright);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    font-size: 12px;
    color: var(--text-dimmer);
    font-family: var(--cps-font-mono);
    letter-spacing: 0.02em;
    font-weight: 400;
}

/* HERO CTA GRID - refined cards */
.hero-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 880px;
    margin: 56px auto 0;
}
.hero-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text) !important;
    text-decoration: none !important;
    display: block;
    position: relative;
    overflow: hidden;
}
.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.hero-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}
.hero-card:hover::after { opacity: 1; }
.hero-card-advertiser:hover::after {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.5), transparent 60%);
}

.hero-card .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid var(--border-bright);
    font-size: 20px;
}
.hero-card h3 {
    font-family: var(--cps-font-ui);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-bright);
    letter-spacing: -0.025em;
    line-height: 1.1;
}
.hero-card p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
}
.hero-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-bright);
    transition: gap 0.3s;
}
.hero-card .card-link::after {
    content: '→';
    transition: transform 0.3s;
    color: var(--text-dim);
}
.hero-card:hover .card-link { gap: 10px; }
.hero-card:hover .card-link::after {
    transform: translateX(2px);
    color: var(--text-bright);
}

/* ============================================
   STATS
   ============================================ */
.stats { padding: 64px 32px; position: relative; z-index: 1; }
.stats-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 36px 48px;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-bright);
    border-radius: 24px;
    position: relative;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--border-bright);
}
.stat-num {
    font-family: var(--cps-font-ui);
    font-size: 44px;
    font-weight: 400;
    color: var(--text-bright);
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: -0.04em;
}
.stat-lbl {
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.005em;
}

/* ============================================
   SECTIONS
   ============================================ */
section { position: relative; z-index: 1; }
.section-title {
    font-family: var(--cps-font-ui);
    font-size: clamp(36px, 5vw, 52px);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: var(--text-bright);
    line-height: 1.1;
}
.section-title em {
    font-style: normal;
    font-weight: 300;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-sub {
    text-align: center;
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 64px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

/* ============================================
   HOW IT WORKS - cleaner
   ============================================ */
.how { padding: 100px 32px; }
.how-wrap { max-width: 1100px; margin: 0 auto; }
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.how-step {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--border-bright);
    position: relative;
    transition: all 0.3s ease;
}
.how-step:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.how-num {
    font-family: var(--cps-font-ui);
    font-style: normal;
    font-size: 44px;
    color: var(--text-bright);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    font-weight: 400;
}
.how-step h3 {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}
.how-step p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   FEATURES / BENEFITS
   ============================================ */
.features, .benefits { padding: 100px 32px; }
.features-wrap, .benefits-wrap { max-width: 1180px; margin: 0 auto; }
.features-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feat, .benefit-card {
    padding: 28px 24px;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-bright);
    border-radius: 18px;
    transition: all 0.3s ease;
    position: relative;
}
.feat:hover, .benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
}
.feat-icon, .benefit-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.08));
    border-radius: 12px;
    border: 1px solid var(--border-bright);
    font-size: 20px;
}
.feat h3, .benefit-card h3 {
    font-family: var(--cps-font-ui);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-bright);
    font-weight: 400;
    letter-spacing: -0.015em;
}
.feat p, .benefit-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   DETAIL STEPS
   ============================================ */
.detail { padding: 100px 32px; }
.detail-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.detail-wrap::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(139, 92, 246, 0.4) 10%,
        rgba(236, 72, 153, 0.4) 50%,
        rgba(6, 182, 212, 0.4) 90%,
        transparent);
}
.detail-step {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    align-items: flex-start;
    position: relative;
}
.detail-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-darkest);
    border: 1px solid var(--border-strong);
    color: var(--text-bright);
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--cps-font-mono);
    position: relative;
    z-index: 1;
}
.detail-content { padding-top: 8px; flex: 1; }
.detail-content h3 {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}
.detail-content p {
    color: var(--text-dim);
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.65;
}
.detail-content code {
    background: rgba(139, 92, 246, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--primary-soft);
    font-family: var(--cps-font-mono);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.detail-content .btn-sm {
    margin-top: 4px;
}

/* ============================================
   WHO
   ============================================ */
.who { padding: 100px 32px; }
.who-wrap { max-width: 1100px; margin: 0 auto; }
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.who-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-bright);
    transition: all 0.3s ease;
}
.who-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.who-icon {
    font-size: 28px;
    margin-bottom: 10px;
    opacity: 0.9;
}
.who-card h4 {
    font-family: var(--cps-font-ui);
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-bright);
    font-weight: 400;
    letter-spacing: -0.015em;
}
.who-card p { color: var(--text-dim); font-size: 12.5px; line-height: 1.55; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 100px 32px; }
.testimonials-wrap { max-width: 1180px; margin: 0 auto; }
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.test-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    padding: 28px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-bright);
    position: relative;
}
.test-stars {
    color: var(--accent-3);
    font-size: 12px;
    margin-bottom: 14px;
    letter-spacing: 3px;
}
.test-card p {
    color: var(--text);
    font-family: var(--cps-font-ui);
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.55;
    font-style: normal;
    font-weight: 300;
    letter-spacing: -0.015em;
}
.test-author {
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.005em;
}

/* ============================================
   CAMPAIGNS / INTEGRATIONS
   ============================================ */
.campaigns, .integrations { padding: 100px 32px; }
.campaigns-wrap, .integrations-wrap { max-width: 1100px; margin: 0 auto; }
.camp-grid, .int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.camp-card, .int-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-bright);
    padding: 26px 22px;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.camp-card:hover, .int-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.camp-card h4, .int-card h4 {
    font-family: var(--cps-font-ui);
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-bright);
    font-weight: 400;
    letter-spacing: -0.015em;
}
.camp-card p, .int-card p {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.6;
}
.int-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: inline-block;
    opacity: 0.9;
}
.int-card code {
    background: rgba(139, 92, 246, 0.12);
    color: var(--primary-soft);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 11px;
    font-family: var(--cps-font-mono);
}

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: 100px 32px; }
.pricing-wrap { max-width: 880px; margin: 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    padding: 36px 28px;
    border-radius: 24px;
    border: 1px solid var(--border-bright);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
}
.pricing-featured {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), rgba(20, 20, 40, 0.4));
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.12);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    color: white;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -0.005em;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}
.pricing-card h3 {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}
.pricing-num {
    font-family: var(--cps-font-ui);
    font-size: 72px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--text-bright), var(--text-dim));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.045em;
}
.pricing-featured .pricing-num {
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-lbl {
    color: var(--text-dim);
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 400;
}
.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    padding: 0;
}
.pricing-card ul li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-note {
    display: block;
    margin-top: 12px;
    color: var(--text-dimmer);
    font-size: 11px;
    line-height: 1.5;
}
.pricing-compare {
    text-align: center;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 13px;
    color: var(--text);
    border: 1px solid var(--border-bright);
}
.pricing-compare strong {
    color: var(--accent-3);
    font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 100px 32px; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-bright);
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.04);
}
.faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-bright);
    letter-spacing: -0.01em;
}
.faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--text-dim);
    border-bottom: 1.5px solid var(--text-dim);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 6px;
    margin-bottom: 4px;
}
.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-bottom: 0;
    margin-top: 4px;
}
.faq-body {
    padding: 0 24px 20px;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.65;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 32px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.12), transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(236, 72, 153, 0.1), transparent 50%);
    border-radius: 28px;
    border: 1px solid var(--border-bright);
    z-index: -1;
}
.cta-publisher::before {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(16, 185, 129, 0.12), transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(6, 182, 212, 0.1), transparent 50%);
}
.cta-advertiser::before {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(245, 158, 11, 0.12), transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(236, 72, 153, 0.1), transparent 50%);
}
.cta-wrap { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta h2 {
    font-family: var(--cps-font-ui);
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 14px;
    font-weight: 400;
    color: var(--text-bright);
    letter-spacing: -0.035em;
    line-height: 1.1;
}
.cta p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 28px;
    line-height: 1.55;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-dimmer);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(7, 7, 26, 0.5);
    backdrop-filter: blur(20px);
    color: var(--text-dim);
    padding: 56px 32px 28px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 36px;
}
.footer-col h4 {
    color: var(--text-bright);
    font-size: 12px;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.footer-col a {
    display: block;
    color: var(--text-dim);
    font-size: 13.5px;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text-bright); }
.footer-tag {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
    max-width: 280px;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text-dimmer);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 880px) {
    .nav-links { display: none; }
    .hero { padding: 72px 24px 60px; }
    .hero-cta-grid { grid-template-columns: 1fr; }
    .stats-wrap {
        grid-template-columns: 1fr 1fr;
        padding: 28px 24px;
        gap: 28px;
    }
    .stat:nth-child(2)::after,
    .stat:not(:last-child)::after { display: none; }
    .stat-num { font-size: 36px; }
    .how-steps, .features-grid, .benefits-grid,
    .who-grid, .test-grid, .camp-grid, .int-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-wrap { grid-template-columns: 1fr 1fr; gap: 28px; }
    .detail-step { gap: 18px; }
    .detail-wrap::before { left: 19px; }
    .detail-num { width: 40px; height: 40px; line-height: 38px; font-size: 13px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 0.7s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero h1 { animation: fadeUp 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-sub { animation: fadeUp 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-actions { animation: fadeUp 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-trust { animation: fadeUp 0.7s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-cta-grid { animation: fadeUp 0.7s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }

/* ============================================
   IADE LOGO MARK (logo SVG + "network" yazısı)
   Landing pages için. .logo class'ı zaten yukarıda
   inline-flex baseline ile tanımlı.
   ============================================ */

.logo-mark {
    display: inline-block;
    height: 22px;
    width: auto;
    color: var(--text-bright);
    transform: translateY(4px);
    transition: opacity 0.2s;
}
.logo-mark svg {
    height: 100%;
    width: auto;
    display: block;
}

.logo-network {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    color: var(--text-dim);
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 0.2s;
}

.logo:hover .logo-mark,
.logo:hover .logo-network {
    color: var(--text-bright);
}

/* Footer logo - landing sayfaları footer'ında */
.footer-col .footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--text-bright);
    margin-bottom: 14px;
    text-transform: none;
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}
.footer-col .footer-logo .logo-mark {
    height: 20px;
}
.footer-col .footer-logo .logo-network {
    font-size: 20px;
}

/* ============================================
   MARKALAR ŞERİDİ (sonsuz kayan)
   ============================================ */
.brands {
    padding: 48px 0 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.brands-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.brands-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-dimmer);
    margin-bottom: 24px;
    font-family: var(--cps-font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.brands-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.brands-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: brandsScroll 40s linear infinite;
}
.brand-pill {
    flex-shrink: 0;
    padding: 12px 22px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    font-family: var(--cps-font-ui);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}
.brand-pill:hover {
    background: var(--bg-card-hover);
    color: var(--text-bright);
    border-color: var(--primary-soft);
    transform: translateY(-2px);
}
@keyframes brandsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   KARŞILAŞTIRMA TABLOSU
   ============================================ */
.compare {
    padding: 100px 32px;
}
.compare-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.compare-card {
    padding: 32px 28px;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-bright);
    border-radius: 24px;
    position: relative;
    transition: all 0.3s;
}
.compare-card-us {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), rgba(20, 20, 40, 0.4));
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.12);
}
.compare-card-them {
    opacity: 0.85;
}
.compare-badge {
    display: inline-block;
    font-family: var(--cps-font-ui);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-bright);
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.compare-badge-them {
    background: rgba(148, 163, 184, 0.15);
    color: var(--text-dim);
    border: 1px solid var(--border-bright);
}
.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.compare-list li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.compare-list li:last-child {
    border-bottom: none;
}
.compare-list strong {
    color: var(--text-bright);
    font-weight: 600;
}
.compare-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--success);
    font-weight: 700;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    font-size: 12px;
}
.compare-x {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    color: var(--text-dimmer);
    font-weight: 400;
    background: rgba(148, 163, 184, 0.08);
    border-radius: 50%;
    font-size: 14px;
}
.compare-card-them .compare-list li {
    color: var(--text-dim);
}
.compare-card-them .compare-list strong {
    color: var(--text);
}

/* Karşılaştırma responsive */
@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.dil-secici {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
}
.dil-opsiyon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.005em;
}
.dil-opsiyon:hover {
    color: var(--text-bright);
    background: rgba(255,255,255,0.04);
}
.dil-opsiyon.aktif {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}
.dil-bayrak {
    font-size: 13px;
    line-height: 1;
}
.dil-kod {
    font-family: var(--cps-font-mono);
    font-size: 10px;
    font-weight: 600;
}
