﻿/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
    --white: #FFFFFF;
    --off: #F6FAFF;
    --soft: #EEF5FF;
    --blue: #3B82F6;
    --blue-d: #2563EB;
    --blue-l: #60A5FA;
    --cyan: #00B7FF;
    --cyan-d: #0090CC;
    --cyan-l: #67D9FF;
    --pink: #FF30FF;
    --pink-d: #D400D4;
    --pink-l: #FF80FF;
    --ink: #0F1929;
    --ink2: #1E2D45;
    --slate: #64748B;
    --border: #E0ECFF;
    --border2: rgba(0,183,255,0.15);
    --grad-main: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 50%, var(--pink) 100%);
    --grad-blue: linear-gradient(135deg, var(--blue-d), var(--cyan));
    --grad-pink: linear-gradient(135deg, var(--cyan), var(--pink));
    --grad-soft: linear-gradient(135deg, #EEF5FF 0%, #F0F0FF 100%);
    --shadow-sm: 0 2px 12px rgba(59,130,246,0.10);
    --shadow-md: 0 8px 32px rgba(59,130,246,0.15);
    --shadow-lg: 0 20px 60px rgba(59,130,246,0.18);
    --shadow-glow: 0 0 40px rgba(0,183,255,0.25);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ══════════════════════════════════════
   UTILS
══════════════════════════════════════ */
.grad-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-text-blue {
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-anim {
    position: relative;
}

    .border-anim::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: inherit;
        padding: 2px;
        background: linear-gradient(90deg, rgba(0,183,255,0) 0%, rgba(0,183,255,0.4) 20%, rgba(0,183,255,1) 40%, rgba(255,48,255,1) 60%, rgba(255,48,255,0.4) 80%, rgba(255,48,255,0) 100%);
        background-size: 200% 100%;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: borderSlide 3s linear infinite;
        pointer-events: none;
        z-index: 0;
    }

@keyframes borderSlide {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
    background: linear-gradient(90deg, var(--blue-d), var(--cyan-d), var(--pink-d));
    background-size: 200% 100%;
    animation: gradShift 6s ease infinite;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    position: fixed; /* ekle */
    top: 0; /* ekle */
    z-index: 201; /* ekle — nav'dan bir fazla */
}

@keyframes gradShift {
    0%,100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.ticker-track {
    display: flex;
    animation: ticker 24s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
    position: fixed;
    top: 36px;
    z-index: 200;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    width: 100%;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,183,255,0.4);
}

.nav-logo-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
}

.nav-logo-sub {
    font-size: 11px;
    color: var(--slate);
    font-weight: 400;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--slate);
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--blue);
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-nav-ghost {
    padding: 9px 20px;
    border: 1.5px solid var(--border2);
    background: transparent;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-nav-ghost:hover {
        background: var(--soft);
        border-color: var(--cyan);
    }

.btn-nav-primary {
    padding: 9px 22px;
    background: var(--grad-main);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,183,255,0.35);
    transition: all 0.2s;
}

    .btn-nav-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 24px rgba(0,183,255,0.45);
    }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    min-height: calc(100vh - 104px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(0,183,255,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 80% 30%, rgba(255,48,255,0.06) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 60% 80%, rgba(59,130,246,0.08) 0%, transparent 60%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(0,183,255,0.12);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(255,48,255,0.08);
    top: 50px;
    right: 100px;
    animation-delay: -3s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(59,130,246,0.1);
    bottom: 0;
    left: 30%;
    animation-delay: -6s;
}

@keyframes blobFloat {
    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-24px) scale(1.04);
    }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(0,183,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,183,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 70%);
}

.hero-left {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, rgba(0,183,255,0.1), rgba(255,48,255,0.08));
    border: 1px solid rgba(0,183,255,0.25);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--cyan-d);
    margin-bottom: 28px;
    width: fit-content;
    letter-spacing: 0.03em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-main);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

    .hero h1 .italic-part {
        font-family: 'Crimson Pro', serif;
        font-style: italic;
        font-weight: 700;
        font-size: 110%;
    }

.hero-desc {
    font-size: 17px;
    color: var(--slate);
    font-weight: 400;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 44px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-hero {
    padding: 15px 36px;
    background: var(--grad-main);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,183,255,0.35);
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-hero:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 36px rgba(0,183,255,0.45);
    }

.btn-hero-ghost {
    padding: 14px 28px;
    border: 1.5px solid var(--border);
    background: rgba(255,255,255,0.8);
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-hero-ghost:hover {
        border-color: var(--cyan);
        color: var(--cyan-d);
        background: var(--soft);
    }

.hero-stats {
    display: flex;
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.hstat {
    flex: 1;
    padding-right: 32px;
    border-right: 1px solid var(--border);
}

    .hstat:last-child {
        border-right: none;
        padding-right: 0;
        padding-left: 32px;
    }

    .hstat:not(:first-child):not(:last-child) {
        padding-left: 32px;
    }

.hstat-val {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
}

.hstat-label {
    font-size: 13px;
    color: var(--slate);
    font-weight: 400;
}

/* ══════════════════════════════════════
   HERO RIGHT — MODULES SHOWCASE
   (TEK TANIMLI — çakışma yok)
══════════════════════════════════════ */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 40px;
    overflow: visible;
}

/* Eski preview-card gizle */
.preview-card,
.mini-modules,
.mm,
.hub-logo-preview,
.hlp-icon,
.pf-field,
.pf-actions,
.pf-remember,
.pf-forgot,
.btn-login-preview {
    display: none !important;
}

/* Showcase container — inline style override */
.modules-showcase {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 460px;
    height: 380px;
    margin: 0 auto;
}

/* Ortak kart stili */
.ms-card {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: default;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(59,130,246,0.10);
    will-change: transform;
    text-decoration: none;
    color: inherit;
}

.ms-card-icon {
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-card-name {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    text-align: center;
}

/* ── KART POZİSYONLARI — 2x2 grid + Sadakatim merkez ── */

/* Sadakatim — merkez üst, featured */
.ms-sadakatim {
    top: 20px;
    left: 35%;
    transform: translateX(-50%);
    z-index: 3;
    border-color: rgba(0,183,255,0.3);
    box-shadow: 0 8px 32px rgba(0,183,255,0.18);
    overflow: visible;
}

    .ms-sadakatim:hover {
        transform: translateX(-50%) translateY(-6px);
        box-shadow: 0 18px 48px rgba(0,183,255,0.28);
    }

    /* Animated border — sadece Sadakatim */
    .ms-sadakatim::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 22px;
        padding: 2px;
        background: linear-gradient(90deg, rgba(0,183,255,0) 0%, rgba(0,183,255,0.4) 20%, rgba(0,183,255,1) 40%, rgba(255,48,255,1) 60%, rgba(255,48,255,0.4) 80%, rgba(255,48,255,0) 100%);
        background-size: 200% 100%;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: borderSlide 3s linear infinite;
        pointer-events: none;
        z-index: 0;
    }

/* QlickBI — sağ üst */
.ms-qlickbi {
    top: 40px;
    right: 10px;
    transform: rotate(8deg);
    z-index: 2;
}

    .ms-qlickbi:hover {
        transform: rotate(8deg) translateY(-6px);
        box-shadow: 4px 16px 40px rgba(59,130,246,0.18);
    }

/* CRM — sol alt */
.ms-crm {
    bottom: 20px;
    left: 30px;
    transform: rotate(-6deg);
    z-index: 2;
}

    .ms-crm:hover {
        transform: rotate(-6deg) translateY(-6px);
        box-shadow: -4px 16px 40px rgba(59,130,246,0.18);
    }

/* Rampa — sağ alt */
.ms-rampa {
    bottom: 10px;
    right: 30px;
    transform: rotate(5deg);
    z-index: 2;
}

    .ms-rampa:hover {
        transform: rotate(5deg) translateY(-6px);
        box-shadow: 4px 16px 40px rgba(59,130,246,0.18);
    }

/* Admin — sol üst (eğer kullanılıyorsa) */
.ms-admin {
    top: 40px;
    left: 10px;
    transform: rotate(-10deg);
    z-index: 1;
}

    .ms-admin:hover {
        transform: rotate(-10deg) translateY(-6px);
        box-shadow: -4px 16px 40px rgba(59,130,246,0.18);
    }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 16px 0;
    background: var(--off);
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.mi {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    color: var(--slate);
    padding: 0 32px;
}

.mi-sep {
    color: var(--cyan);
    font-style: normal;
    font-weight: 700;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.sec {
    padding: 96px 60px;
    max-width: 1260px;
    margin: 0 auto;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.tag-blue {
    background: rgba(59,130,246,0.1);
    color: var(--blue-d);
}

.tag-cyan {
    background: rgba(0,183,255,0.1);
    color: var(--cyan-d);
}

.tag-pink {
    background: rgba(255,48,255,0.1);
    color: var(--pink-d);
}

.sec-h {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.sec-sub {
    font-size: 17px;
    color: var(--slate);
    font-weight: 400;
    max-width: 520px;
    line-height: 1.75;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-bg {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.how-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.28s;
    box-shadow: var(--shadow-sm);
}

    .how-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-main);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .how-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--border2);
    }

        .how-card:hover::after {
            transform: scaleX(1);
        }

.how-step-num {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--border) 0%, var(--soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.how-card:hover .how-step-num {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
}

.how-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.how-card p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
}

.how-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 22px;
    align-self: center;
    margin-top: 60px;
}

/* ══════════════════════════════════════
   MODULES
══════════════════════════════════════ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.mc {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.28s;
    box-shadow: var(--shadow-sm);
}

    .mc:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.mc-7 {
    grid-column: span 7;
}

.mc-5 {
    grid-column: span 5;
}

.mc-4 {
    grid-column: span 4;
}

.mc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.mc:hover::before {
    opacity: 1;
}

.mc-v::before {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.mc-c::before {
    background: linear-gradient(90deg, var(--cyan), #06b6d4);
}

.mc-q::before {
    background: linear-gradient(90deg, var(--blue-l), var(--blue));
}

.mc-r::before {
    background: linear-gradient(90deg, var(--cyan-d), var(--blue-d));
}

.mc-a::before {
    background: var(--grad-main);
}

.mc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--ink);
}

.mc-svg {
    width: 26px;
    height: 26px;
    display: block;
}

.ic-v {
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(0,183,255,0.12));
    color: var(--blue-d);
}

.ic-c {
    background: rgba(6,182,212,0.12);
    color: #0891b2;
}

.ic-q {
    background: rgba(59,130,246,0.12);
    color: #4f46e5;
}

.ic-r {
    background: linear-gradient(135deg, rgba(0,144,204,0.12), rgba(59,130,246,0.12));
    color: var(--cyan-d);
}

.ic-a {
    background: linear-gradient(135deg, rgba(0,183,255,0.12), rgba(255,48,255,0.12));
    color: var(--pink-d);
}

.mc-tag {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mt-v {
    background: rgba(59,130,246,0.1);
    color: var(--blue-d);
}

.mt-c {
    background: rgba(6,182,212,0.1);
    color: #0891b2;
}

.mt-q {
    background: rgba(99,102,241,0.1);
    color: #4f46e5;
}

.mt-r {
    background: rgba(0,144,204,0.1);
    color: var(--cyan-d);
}

.mt-a {
    background: rgba(255,48,255,0.1);
    color: var(--pink-d);
}

.mc h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}

.mc p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
}

.mc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s;
}

.mc:hover .mc-link {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════
   ACCESS / PERMISSIONS — dark section
══════════════════════════════════════ */
.access-outer {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

    .access-outer::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 55% 70% at 0% 50%, rgba(0,183,255,0.12) 0%, transparent 60%), radial-gradient(ellipse 45% 60% at 100% 50%, rgba(255,48,255,0.1) 0%, transparent 60%);
    }

.access-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 96px 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.access-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}

.access-h {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: white;
    margin-bottom: 20px;
}

    .access-h em {
        font-family: 'Crimson Pro', serif;
        font-style: italic;
        color: rgba(255,255,255,0.45);
    }

.access-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 40px;
}

.access-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ac-item {
    padding: 20px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    gap: 16px;
    transition: background 0.2s;
}

    .ac-item:hover {
        background: rgba(255,255,255,0.07);
        border-color: rgba(0,183,255,0.25);
    }

.ac-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,183,255,0.2), rgba(255,48,255,0.15));
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

    .ac-icon svg {
        width: 22px;
        height: 22px;
    }

.ac-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.ac-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

/* Role matrix */
.role-matrix {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    overflow: hidden;
}

.rm-header {
    display: grid;
    grid-template-columns: 160px repeat(5, 1fr);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

    .rm-header span {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.3);
        text-align: center;
    }

        .rm-header span:first-child {
            text-align: left;
        }

.rm-row {
    display: grid;
    grid-template-columns: 160px repeat(5, 1fr);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    align-items: center;
}

    .rm-row:last-child {
        border-bottom: none;
    }

    .rm-row:hover {
        background: rgba(255,255,255,0.04);
    }

.rm-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.rm-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 1px;
}

.rm-dot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot-y {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 8px rgba(0,183,255,0.5);
}

.dot-n {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.rm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.rm-tag {
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.04);
    transition: all 0.2s;
}

    .rm-tag:hover {
        border-color: rgba(0,183,255,0.4);
        color: var(--cyan);
    }

/* ══════════════════════════════════════
   FEATURES BENTO
══════════════════════════════════════ */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
    margin-top: 56px;
}

.bc {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

    .bc:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--border2);
    }

.bc-2 {
    grid-column: span 2;
}

.bc-3 {
    grid-column: span 3;
}

.bc-6 {
    grid-column: span 6;
}

.bc-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}

.bc h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.bc p {
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.65;
}

.bc-gradient {
    background: linear-gradient(135deg, var(--blue-d), var(--cyan-d));
    border-color: transparent;
    color: white;
}

    .bc-gradient h4, .bc-gradient p {
        color: rgba(255,255,255,0.9);
    }

    .bc-gradient p {
        color: rgba(255,255,255,0.65);
    }

.bc-big-num {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .bc-big-num .big-n {
        font-size: 64px;
        font-weight: 900;
        letter-spacing: -0.05em;
        line-height: 1;
        margin-bottom: 8px;
    }

.bc-pink {
    background: linear-gradient(135deg, rgba(255,48,255,0.06), rgba(0,183,255,0.06));
    border-color: rgba(255,48,255,0.15);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-bg {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.tc {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    position: relative;
}

    .tc:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .tc::before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 24px;
        font-family: 'Crimson Pro', serif;
        font-size: 64px;
        line-height: 1;
        color: var(--border);
        pointer-events: none;
    }

.tc-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

    .tc-stars span {
        font-size: 14px;
    }

.tc-text {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: white;
}

.tc-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
}

.tc-role {
    font-size: 11.5px;
    color: var(--slate);
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.pc {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 36px 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    /* inline style override */
    left: auto !important;
}

    .pc:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .pc.featured {
        background: var(--grad-main);
        border-color: transparent;
        box-shadow: 0 12px 48px rgba(0,183,255,0.3);
        left: auto !important;
        position: relative !important;
    }

        .pc.featured:hover {
            box-shadow: 0 20px 60px rgba(0,183,255,0.4);
        }

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pc-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 16px;
}

.featured .pc-name {
    color: rgba(255,255,255,0.75);
}

.pc-price {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.featured .pc-price {
    color: white;
}

.pc-period {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 28px;
}

.featured .pc-period {
    color: rgba(255,255,255,0.65);
}

.pc-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.featured .pc-divider {
    background: rgba(255,255,255,0.2);
}

.pc-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

    .pc-feats li {
        display: flex;
        gap: 10px;
        font-size: 14px;
        color: var(--slate);
    }

.featured .pc-feats li {
    color: rgba(255,255,255,0.8);
}

.pf-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    flex-shrink: 0;
    margin-top: 1px;
}

.featured .pf-check {
    background: rgba(255,255,255,0.25);
}

.btn-pc {
    width: 100%;
    padding: 14px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-pc:hover {
        background: var(--soft);
        border-color: var(--blue);
        color: var(--blue);
    }

.btn-pc-white {
    width: 100%;
    padding: 14px;
    border: none;
    background: white;
    color: var(--blue-d);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

    .btn-pc-white:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F0FF 50%, #FFF0FF 100%);
    border-top: 1px solid var(--border);
}

.cta-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 96px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-left h2 {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 18px;
}

.cta-left p {
    font-size: 16px;
    color: var(--slate);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-right {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

    .cta-right::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 24px;
        padding: 2px;
        background: linear-gradient(90deg, rgba(0,183,255,0) 0%, rgba(0,183,255,0.4) 20%, rgba(0,183,255,1) 40%, rgba(255,48,255,1) 60%, rgba(255,48,255,0.4) 80%, rgba(255,48,255,0) 100%);
        background-size: 200% 100%;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: borderSlide 3s linear infinite;
        pointer-events: none;
    }

    .cta-right h3 {
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 8px;
    }

    .cta-right p {
        font-size: 13.5px;
        color: var(--slate);
        margin-bottom: 24px;
    }

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-c {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: default;
    transition: all 0.2s;
}

    .cta-c:hover {
        border-color: var(--cyan);
        background: #F0FAFF;
    }

.cta-c-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(0,183,255,0.12), rgba(255,48,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cta-c strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    display: block;
}

.cta-c small {
    font-size: 11.5px;
    color: var(--slate);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 100%;
}

.foot-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foot-brand-icon {
    width: 34px;
    height: 34px;
    background: var(--grad-main);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
}

.foot-brand-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
}

.foot-copy {
    font-size: 12px;
    color: var(--slate);
}

.foot-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

    .foot-links a {
        font-size: 13px;
        color: var(--slate);
        text-decoration: none;
        transition: color 0.2s;
    }

        .foot-links a:hover {
            color: var(--blue);
        }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    min-width: 0;
    width: 100%;
    overflow-wrap: break-word;
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* NAV */
    nav {
        padding: 0 24px;
        height: 58px;
    }

    .nav-links {
        gap: 18px;
    }

        .nav-links a {
            font-size: 13px;
        }

    /* HERO */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 48px 40px 32px;
        text-align: center;
        align-items: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: clamp(38px, 5vw, 56px);
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .hstat-val {
        font-size: 34px;
    }

    /* HERO RIGHT — showcase */
    .hero-right {
        padding: 0 20px 48px;
        width: 100%;
    }

    .modules-showcase {
        max-width: 400px;
        height: 320px;
    }

    .ms-card {
        width: 140px;
        height: 140px;
    }

    /* HOW */
    .how-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .how-card {
        padding: 26px 20px;
    }

    /* MODULES */
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mc-7, .mc-5 {
        grid-column: span 2;
    }

    .mc-4 {
        grid-column: span 1;
    }

    /* ACCESS */
    .access-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 32px;
    }

    .role-matrix {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rm-header, .rm-row {
        min-width: 520px;
    }

    /* BENTO */
    .bento {
        grid-template-columns: repeat(4, 1fr);
    }

    .bc-2 {
        grid-column: span 2;
    }

    .bc-3, .bc-6 {
        grid-column: span 4;
    }

    /* TESTIMONIALS */
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* PRICING */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pc {
        position: static !important;
        left: auto !important;
        width: 100% !important;
        max-width: 480px;
        margin: 0 auto !important;
    }

        .pc.featured {
            order: -1;
        }

    /* CTA */
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 32px;
    }

    .cta-left {
        text-align: center;
    }

    .cta-btns {
        justify-content: center;
    }

    /* SECTIONS */
    .sec {
        padding: 72px 32px;
    }

    /* FOOTER */
    footer {
        padding: 36px 24px;
    }

    /* REVEAL — mobilde disable */
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* NAV */
    nav {
        padding: 0 16px;
        height: 54px;
        gap: 8px;
    }

    .nav-links {
        display: none;
    }

    .nav-logo-sub {
        display: none;
    }

    .btn-nav-ghost {
        padding: 7px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .btn-nav-primary {
        padding: 7px 16px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* TICKER */
    .ticker-wrap {
        height: 30px;
    }

    .ticker-item {
        font-size: 10px;
        padding: 0 16px;
    }

    /* HERO */
    .hero-left {
        padding: 36px 20px 28px;
        text-align: center;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 46px);
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        margin-bottom: 32px;
    }

    .btn-hero, .btn-hero-ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* HERO STATS */
    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
    }

    .hstat {
        flex: 1;
        text-align: center;
        padding: 0 8px !important;
    }

    .hstat-val {
        font-size: 28px;
    }

    .hstat-label {
        font-size: 11px;
    }

    /* HERO RIGHT — showcase gizle */
    .hero-right {
        display: none !important;
    }

    /* MARQUEE */
    .marquee-section {
        padding: 10px 0;
    }

    .mi {
        font-size: 12px;
        padding: 0 18px;
    }

    /* SECTIONS */
    .sec {
        padding: 52px 20px;
        overflow: hidden;
    }

    .sec-h {
        font-size: clamp(26px, 6vw, 38px);
    }

    .sec-sub {
        font-size: 15px;
    }

    /* HOW */
    .how-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    .how-arrow-icon {
        display: none;
    }

    /* MODULES */
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    .mc-7, .mc-5, .mc-4 {
        grid-column: span 1;
    }

    .mc {
        padding: 24px 20px;
    }

        .mc h3 {
            font-size: 18px;
        }

    /* ACCESS */
    .access-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 52px 16px;
    }

    .access-h {
        font-size: clamp(26px, 6vw, 38px);
    }

    .rm-header, .rm-row {
        min-width: 520px;
        grid-template-columns: 110px repeat(5, 1fr);
    }

    /* BENTO */
    .bento {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 32px;
    }

    .bc-2 {
        grid-column: span 1;
    }

    .bc-3, .bc-6 {
        grid-column: span 2;
    }

    .bc {
        padding: 22px 18px;
    }

    /* TESTIMONIALS */
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    /* PRICING */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px;
    }

    .pc {
        position: static !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 28px 22px !important;
        margin: 0 !important;
    }

    /* CTA */
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 52px 20px;
    }

    .cta-left {
        text-align: center;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

        .cta-btns .btn-hero,
        .cta-btns .btn-hero-ghost {
            width: 100%;
            justify-content: center;
        }

    .cta-right {
        padding: 24px 20px;
        width: 100%;
    }

    /* FOOTER */
    footer {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 16px;
        text-align: center;
    }

    .foot-left {
        flex-direction: column;
        gap: 10px;
    }

    .foot-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    /* BLOBS */
    .blob-1 {
        width: 260px;
        height: 260px;
        top: -60px;
        left: -60px;
    }

    .blob-2 {
        width: 200px;
        height: 200px;
        top: 10px;
        right: -60px;
    }

    .blob-3 {
        width: 180px;
        height: 180px;
    }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    nav {
        padding: 0 12px;
        height: 50px;
    }

    .nav-logo-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        font-size: 10px;
    }

    .nav-logo-name {
        font-size: 13px;
    }

    .nav-right {
        gap: 6px;
    }

    .btn-nav-ghost {
        padding: 5px 10px;
        font-size: 11px;
    }

    .btn-nav-primary {
        padding: 5px 12px;
        font-size: 11px;
    }

    .hero-left {
        padding: 28px 16px 20px;
    }

    .hero h1 {
        font-size: clamp(26px, 8.5vw, 36px);
    }

    .hero-desc {
        font-size: 13.5px;
    }

    .hstat-val {
        font-size: 24px;
    }

    .hstat-label {
        font-size: 10px;
    }

    .sec {
        padding: 40px 16px;
    }

    .sec-h {
        font-size: clamp(22px, 7vw, 32px);
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .bc-2, .bc-3, .bc-6 {
        grid-column: span 1;
    }

    .pc {
        padding: 24px 18px !important;
    }

    .pc-price {
        font-size: 36px !important;
    }

    .cta-inner {
        padding: 40px 16px;
    }

    footer {
        padding: 22px 14px;
    }
}

@media (max-width: 360px) {
    nav {
        padding: 0 8px;
    }

    .nav-logo-name {
        font-size: 12px;
    }

    .btn-nav-ghost {
        display: none;
    }

    .hero-left {
        padding: 22px 10px 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hstat-val {
        font-size: 20px;
    }

    .sec {
        padding: 32px 10px;
    }

    .pc-price {
        font-size: 28px !important;
    }
}


/* ──────────────────────────────────────
   TOUCH DEVICES — hover kaldır
────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
    .how-card:hover,
    .mc:hover,
    .bc:hover,
    .tc:hover,
    .pc:hover,
    .ms-card:hover,
    .ac-item:hover,
    .cta-c:hover {
        transform: none !important;
        box-shadow: var(--shadow-sm) !important;
    }

    .mc-link {
        opacity: 1;
        transform: none;
    }

    .ms-qlickbi, .ms-qlickbi:hover {
        transform: rotate(8deg) !important;
    }

    .ms-crm, .ms-crm:hover {
        transform: rotate(-6deg) !important;
    }

    .ms-rampa, .ms-rampa:hover {
        transform: rotate(5deg) !important;
    }

    .ms-admin, .ms-admin:hover {
        transform: rotate(-10deg) !important;
    }

    .ms-sadakatim, .ms-sadakatim:hover {
        transform: translateX(-50%) !important;
    }

    .btn-hero:hover, .btn-nav-primary:hover {
        transform: none !important;
    }
}
.pricing-grid {
    display: flex;
    justify-content: center;
}

.pc {
    width: 100%;
    max-width: 420px;
}



/* ══════════════════════════════════════
   MOBİL & TABLET — SHOWCASE KARTLARI GÖSTER
══════════════════════════════════════ */

/* 768px altında hero-right gizleniyordu — şimdi göster ama layout değiştir */
@media (max-width: 768px) {
    .hero-right {
        display: flex !important;
        padding: 0 20px 40px;
        width: 100%;
    }

    .modules-showcase {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .ms-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: calc(50% - 8px);
        height: 120px;
    }

    .ms-sadakatim::before {
        /* Animated border kalsın */
        inset: -2px;
        border-radius: 22px;
    }

    .ms-card-icon img {
        width: 100px !important;
        height: 50px !important;
    }
}

/* TABLET (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-right {
        display: flex !important;
        padding: 0 20px 48px;
        width: 100%;
    }

    .modules-showcase {
        position: relative !important;
        width: 100% !important;
        max-width: 600px !important;
        height: auto !important;
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .ms-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: calc(25% - 14px);
        height: 130px;
    }
}