/* ============================================================
   AUTOPOL — AURORA DESIGN SYSTEM
   Modern dynamic · vibrant · gradient-rich
   v1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Surface */
    --bg: #ffffff;
    --bg-2: #fafafa;
    --bg-3: #f4f4f5;
    --bg-elev: #ffffff;
    --line: #e4e4e7;
    --line-soft: #f1f1f3;

    /* Ink */
    --ink: #09090b;
    --ink-2: #18181b;
    --text: #3f3f46;
    --text-soft: #52525b;
    --muted: #a1a1aa;

    /* Brand & accents */
    --indigo: #5b6cff;
    --indigo-deep: #4338ca;
    --violet: #8b5cf6;
    --pink: #ec4899;
    --cyan: #06b6d4;
    --amber: #f59e0b;
    --emerald: #10b981;
    --rose: #f43f5e;

    /* Tints */
    --indigo-50: #eef2ff;
    --violet-50: #f5f3ff;
    --pink-50: #fdf2f8;
    --cyan-50: #ecfeff;

    /* Aurora gradients */
    --aurora: linear-gradient(135deg, #5b6cff 0%, #8b5cf6 35%, #ec4899 70%, #f59e0b 100%);
    --aurora-soft: linear-gradient(135deg, rgba(91,108,255,0.10), rgba(139,92,246,0.10), rgba(236,72,153,0.10));
    --mesh-indigo: radial-gradient(circle at 20% 30%, rgba(91,108,255,0.20) 0%, transparent 50%);
    --mesh-violet: radial-gradient(circle at 80% 20%, rgba(139,92,246,0.20) 0%, transparent 50%);
    --mesh-pink: radial-gradient(circle at 50% 80%, rgba(236,72,153,0.16) 0%, transparent 50%);
    --mesh-cyan: radial-gradient(circle at 80% 80%, rgba(6,182,212,0.14) 0%, transparent 50%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(9,9,11,0.04);
    --shadow-sm: 0 4px 14px rgba(9,9,11,0.05);
    --shadow-md: 0 10px 30px rgba(9,9,11,0.08);
    --shadow-lg: 0 24px 60px rgba(9,9,11,0.14);
    --shadow-glow: 0 14px 40px rgba(91,108,255,0.30);

    /* Type */
    --display: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;

    /* Misc */
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1280px;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html, body { overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    text-rendering: optimizeLegibility;
}
img, video, iframe, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--indigo); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 999px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--indigo-deep); }

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.center { text-align: center; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: var(--indigo-50);
    border: 1px solid rgba(91,108,255,0.15);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--indigo-deep);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aurora);
}
.gradient-text {
    background: var(--aurora);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h1, h2, h3, h4, h5 {
    font-family: var(--display);
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 700; }
p.lead { font-size: 1.12rem; line-height: 1.7; color: var(--text-soft); max-width: 680px; }
p { line-height: 1.7; color: var(--text-soft); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, background 0.3s, color 0.3s;
    will-change: transform;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-primary {
    background: var(--aurora);
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 12px 30px rgba(91,108,255,0.35);
    animation: gradientShift 8s ease infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(91,108,255,0.45); }
.btn-primary::after {
    content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.30), transparent);
    transform: translateX(-100%); transition: transform 0.7s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-secondary {
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.btn-secondary:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: var(--shadow-lg); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-3); border-color: var(--ink); }
.btn-link {
    color: var(--indigo-deep);
    font-weight: 600;
    padding: 0;
    background: transparent;
}
.btn-link:hover { gap: 12px; }
.btn-link i { transition: transform 0.3s ease; }
.btn-link:hover i { transform: translateX(4px); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1320px;
    z-index: 100;
    padding: 10px 14px 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(228,228,231,0.7);
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(9,9,11,0.05);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 14px 40px rgba(9,9,11,0.08);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.08rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--aurora);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(91,108,255,0.4);
}
.brand-logo {
    height: 38px;
    display: block;
    object-fit: contain;
}
.footer-brand .brand-logo {
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.mdrawer .brand-logo { height: 32px; }
@media (max-width: 600px) {
    .brand-logo { height: 32px; }
}

/* === Instagram / Elfsight video gallery container === */
.video-gallery {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 600px;
    position: relative;
}
.video-gallery .elfsight-app-c6ba99c2-99ad-46f0-812d-8413ee12bf17 {
    border-radius: 22px;
    overflow: hidden;
}
.elfsight-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    text-align: center;
    color: var(--text-soft);
}
.elfsight-loading .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--line);
    border-top-color: var(--indigo);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.elfsight-loading p { font-size: 0.9rem; }
/* Hide elfsight branding link */
a[href*="elfsight.com"] { display: none !important; opacity: 0 !important; visibility: hidden !important; height: 0 !important; }

/* Video grid alternative (manual) */
.vgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.vcard {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.35s;
    cursor: pointer;
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(91,108,255,0.3); }
.vcard-cover {
    aspect-ratio: 9/16;
    position: relative;
    background: var(--aurora);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vcard-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.20), transparent 60%);
}
.vcard-cover .play-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 14px 35px rgba(0,0,0,0.30);
    transition: 0.3s;
}
.vcard:hover .play-icon { transform: scale(1.1); background: #fff; }
.vcard-cover .vlabel {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 0.7rem;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 5px 11px;
    border-radius: 6px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}
.vcard-cover .vbadge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--rose);
    color: #fff;
    border-radius: 999px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(244,63,94,0.4);
}
.vcard.pink .vcard-cover { background: linear-gradient(135deg, #ec4899, #f43f5e, #f59e0b); }
.vcard.cyan .vcard-cover { background: linear-gradient(135deg, #06b6d4, #0ea5e9, #6366f1); }
.vcard.amber .vcard-cover { background: linear-gradient(135deg, #f59e0b, #ef4444, #ec4899); }
.vcard.emerald .vcard-cover { background: linear-gradient(135deg, #10b981, #06b6d4, #6366f1); }
.vcard.violet .vcard-cover { background: linear-gradient(135deg, #8b5cf6, #a855f7, #ec4899); }
.vcard-body { padding: 16px 20px 20px; }
.vcard-meta {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vcard-meta .views { display: inline-flex; align-items: center; gap: 4px; color: var(--text-soft); }
.vcard h4 {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav a {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-soft);
    border-radius: 999px;
    transition: 0.25s ease;
}
.nav a:hover, .nav a.active { background: var(--bg-3); color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 8px; }
.header-cta .btn { padding: 9px 18px; font-size: 0.85rem; }

.burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-3);
    color: var(--ink);
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .nav, .header-cta { display: none; }
    .burger { display: inline-flex; }
}

/* Mobile drawer */
.mdrawer {
    position: fixed;
    top: 0; right: -100%;
    width: 86%;
    max-width: 380px;
    height: 100%;
    background: var(--bg);
    z-index: 110;
    padding: 30px 26px;
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(9,9,11,0.15);
    border-left: 1px solid var(--line);
}
.mdrawer.open { right: 0; }
.mdrawer-close {
    float: right;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--bg-3);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.mdrawer ul { list-style: none; padding: 0; margin: 60px 0 0; }
.mdrawer ul li a {
    display: block;
    padding: 14px 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
}
.mdrawer .mb-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.mdrawer-overlay {
    position: fixed; inset: 0;
    background: rgba(9,9,11,0.5);
    z-index: 109;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}
.mdrawer-overlay.show { opacity: 1; pointer-events: auto; }

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    background: var(--bg);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--mesh-indigo), var(--mesh-violet), var(--mesh-pink), var(--mesh-cyan);
    z-index: 0;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
.hero-blob.b1 { width: 480px; height: 480px; background: rgba(91,108,255,0.4); top: -120px; left: -120px; animation: blob1 18s ease-in-out infinite; }
.hero-blob.b2 { width: 420px; height: 420px; background: rgba(236,72,153,0.32); top: 20%; right: -100px; animation: blob2 22s ease-in-out infinite; }
.hero-blob.b3 { width: 320px; height: 320px; background: rgba(6,182,212,0.28); bottom: -80px; left: 30%; animation: blob3 16s ease-in-out infinite; }
@keyframes blob1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60px, 80px) scale(1.1); } }
@keyframes blob2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-80px, 40px) scale(0.9); } }
@keyframes blob3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -60px) scale(1.15); } }

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    margin-bottom: 22px;
    letter-spacing: -0.035em;
}
.hero p.lead {
    font-size: 1.18rem;
    color: var(--text-soft);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.hero-cta {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
.hero-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    justify-content: center;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    max-width: 880px;
    margin: 0 auto;
}
.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text-soft);
    font-weight: 500;
}
.hero-meta i {
    color: var(--indigo);
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--indigo-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ===== LOGO STRIP ===== */
.logos {
    padding: 30px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--bg);
    overflow: hidden;
    position: relative;
}
.logos::before, .logos::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logos::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logos::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.logos-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 32s linear infinite;
    width: fit-content;
    align-items: center;
}
.logos-track span {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--muted);
    transition: 0.3s;
    white-space: nowrap;
}
.logos-track span:hover { color: var(--ink); }
@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== SECTION HEAD ===== */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-soft); }

/* ===== FEATURE / SERVICE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
}
.feature-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--aurora-soft);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91,108,255,0.3);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }
.feature-card .ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--aurora);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(91,108,255,0.30);
}
.feature-card.alt-pink .ico { background: linear-gradient(135deg, #ec4899, #f43f5e); box-shadow: 0 8px 20px rgba(236,72,153,0.30); }
.feature-card.alt-cyan .ico { background: linear-gradient(135deg, #06b6d4, #0ea5e9); box-shadow: 0 8px 20px rgba(6,182,212,0.30); }
.feature-card.alt-amber .ico { background: linear-gradient(135deg, #f59e0b, #ef4444); box-shadow: 0 8px 20px rgba(245,158,11,0.30); }
.feature-card.alt-emerald .ico { background: linear-gradient(135deg, #10b981, #06b6d4); box-shadow: 0 8px 20px rgba(16,185,129,0.30); }
.feature-card.alt-violet .ico { background: linear-gradient(135deg, #8b5cf6, #a855f7); box-shadow: 0 8px 20px rgba(139,92,246,0.30); }

.feature-card h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}
.feature-card p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--text-soft);
    margin-bottom: 16px;
}
.feature-card .btn-link { font-size: 0.88rem; }

/* ===== STATS ===== */
.stats {
    padding: 90px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.stat {
    text-align: left;
    padding: 30px 26px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--aurora);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat:hover::before { transform: scaleX(1); }
.stat .num {
    font-family: var(--display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--aurora);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat .lbl {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ===== PROCESS / STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
}
.step {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: 0.35s;
    position: relative;
}
.step:hover { transform: translateY(-4px); border-color: rgba(91,108,255,0.3); box-shadow: var(--shadow-md); }
.step .num {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--indigo-deep);
    background: var(--indigo-50);
    padding: 5px 11px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.step h4 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
}
.tmcard {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: 0.35s;
    position: relative;
}
.tmcard:hover { transform: translateY(-4px); border-color: rgba(91,108,255,0.3); box-shadow: var(--shadow-md); }
.tmcard .stars { color: var(--amber); margin-bottom: 14px; font-size: 0.95rem; }
.tmcard p {
    font-family: var(--display);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 22px;
}
.tmcard .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.tmcard .ava {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--aurora);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.9rem;
}
.tmcard .who b { font-family: var(--display); font-size: 0.92rem; color: var(--ink); display: block; }
.tmcard .who span { font-size: 0.78rem; color: var(--text-soft); }

/* ===== CTA / BANNER ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-card {
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 32px;
    background: var(--ink);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(91,108,255,0.40), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236,72,153,0.40), transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(6,182,212,0.30), transparent 40%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: #fff; backdrop-filter: blur(10px); }
.cta-card h2 { color: #fff; max-width: 720px; margin: 0 auto 18px; }
.cta-card p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto 30px; }
.cta-card .btn-primary { background: #fff; color: var(--ink); animation: none; box-shadow: 0 14px 35px rgba(0,0,0,0.30); }
.cta-card .btn-primary:hover { background: var(--bg-2); }
.cta-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.30); }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.50); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
    transition: 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
    width: 100%;
    padding: 24px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    transition: 0.25s;
}
.faq-q:hover { color: var(--indigo-deep); }
.faq-q i { color: var(--indigo); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 24px; color: var(--text-soft); font-size: 0.98rem; line-height: 1.7; }

/* ===== FORM ===== */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.single { grid-template-columns: 1fr; }
.field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
    letter-spacing: 0;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--body);
    font-size: 0.96rem;
    color: var(--ink);
    transition: 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--indigo);
    box-shadow: 0 0 0 4px var(--indigo-50);
}
.field textarea { min-height: 120px; resize: vertical; }
.form .btn-primary { padding: 16px; font-size: 0.96rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.site-footer {
    padding: 80px 0 30px;
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--aurora);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    max-width: var(--container);
    margin: 0 auto 50px;
    padding: 0 24px;
}
.footer-col h5 {
    font-family: var(--display);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.65; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li a i { font-size: 0.75rem; color: var(--indigo); opacity: 0.7; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-family: var(--display); font-weight: 800; color: #fff; font-size: 1.25rem; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.footer-social a:hover { background: var(--aurora); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== PAGE HERO (alt sayfalar) ===== */
.page-hero {
    padding: 160px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--mesh-indigo), var(--mesh-violet), var(--mesh-pink);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .crumbs {
    font-family: var(--mono);
    font-size: 0.74rem;
    letter-spacing: 1.5px;
    color: var(--indigo-deep);
    background: var(--indigo-50);
    padding: 7px 16px;
    border-radius: 999px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 22px;
}
.page-hero .crumbs a { color: rgba(67,56,202,0.7); }
.page-hero .crumbs span { margin: 0 6px; opacity: 0.5; }
.page-hero h1 { margin-bottom: 18px; max-width: 880px; margin-left: auto; margin-right: auto; }
.page-hero p.lead { margin: 0 auto; max-width: 680px; }

/* ===== SERVICE DETAIL ROWS (urunler.html) ===== */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto 100px;
    padding: 0 24px;
}
.service-row.flip { direction: rtl; }
.service-row.flip > * { direction: ltr; }
.service-visual {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: 24px;
    background: var(--aurora);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: -0.04em;
    text-align: center;
    padding: 30px;
}
.service-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.service-visual > * { position: relative; z-index: 1; }
.service-row .feat-list {
    list-style: none;
    margin: 22px 0;
    padding: 0;
}
.service-row .feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    color: var(--text);
    font-size: 0.95rem;
}
.service-row .feat-list li i {
    color: var(--indigo-deep);
    background: var(--indigo-50);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 3px;
}
@media (max-width: 900px) {
    .service-row, .service-row.flip { grid-template-columns: 1fr; gap: 30px; direction: ltr; margin-bottom: 60px; }
    .service-visual { font-size: 2.4rem; aspect-ratio: 16/10; }
}

/* ===== TIMELINE / STORY (hakkimizda) ===== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.story-visual {
    aspect-ratio: 4/5;
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 30%, rgba(91,108,255,0.5), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236,72,153,0.4), transparent 50%),
        var(--ink);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.story-visual::after {
    content: "AUTOPOL";
    position: absolute;
    bottom: 24px; left: 24px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.2rem;
    color: rgba(255,255,255,0.92);
    letter-spacing: -0.02em;
}
.story-visual::before {
    content: "EST. 2015";
    position: absolute;
    top: 24px; right: 24px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}
.story-text h2 { margin-bottom: 22px; }
.story-text p { margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.story-text strong { color: var(--ink); font-weight: 700; }
.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.story-stats div b {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--ink);
    background: var(--aurora);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.story-stats div span { font-size: 0.74rem; color: var(--text-soft); font-weight: 500; letter-spacing: 0; text-transform: uppercase; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
}
.value {
    padding: 30px 26px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: 0.3s;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value .v-num {
    font-family: var(--mono);
    font-size: 0.74rem;
    color: var(--indigo-deep);
    background: var(--indigo-50);
    padding: 5px 11px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.value h4 { font-family: var(--display); font-size: 1.2rem; color: var(--ink); margin-bottom: 10px; }
.value p { font-size: 0.92rem; line-height: 1.65; color: var(--text-soft); }

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
}
.tcard {
    padding: 30px 26px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: 0.3s;
    text-align: center;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(91,108,255,0.3); }
.tcard .ava-lg {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--aurora);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.7rem;
    margin: 0 auto 18px;
    box-shadow: 0 14px 30px rgba(91,108,255,0.30);
}
.tcard h4 { font-family: var(--display); font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
.tcard .role { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.5px; color: var(--indigo-deep); background: var(--indigo-50); padding: 4px 12px; border-radius: 999px; display: inline-block; margin-bottom: 14px; }
.tcard p { font-size: 0.88rem; line-height: 1.6; color: var(--text-soft); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.contact-form-wrap {
    padding: 40px 36px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap p { font-size: 0.94rem; color: var(--text-soft); margin-bottom: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-item {
    padding: 22px 22px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: 0.3s;
}
.info-item:hover { border-color: rgba(91,108,255,0.3); transform: translateY(-2px); }
.info-item .ico-sm {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--indigo-50);
    color: var(--indigo-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-item h5 { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 4px; }
.info-item p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }
.info-item a { color: var(--indigo-deep); font-weight: 500; }
.contact-map { margin-top: 60px; max-width: var(--container); margin-left: auto; margin-right: auto; padding: 0 24px; }
.contact-map iframe { width: 100%; height: 400px; border: 0; border-radius: 22px; box-shadow: var(--shadow-md); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ===== BLOG ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    max-width: var(--container);
    margin: 0 auto;
}
.post {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: 0.35s;
    cursor: pointer;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(91,108,255,0.30); }
.post-cover {
    aspect-ratio: 16/10;
    background: var(--aurora);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    position: relative;
}
.post.cover-pink .post-cover { background: linear-gradient(135deg, #ec4899, #f43f5e, #f59e0b); }
.post.cover-cyan .post-cover { background: linear-gradient(135deg, #06b6d4, #0ea5e9, #6366f1); }
.post.cover-emerald .post-cover { background: linear-gradient(135deg, #10b981, #06b6d4, #6366f1); }
.post-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 50%);
}
.post-body { padding: 24px 26px 28px; }
.post-meta { display: flex; gap: 12px; font-size: 0.74rem; color: var(--muted); font-family: var(--mono); letter-spacing: 0.5px; margin-bottom: 12px; text-transform: uppercase; font-weight: 600; }
.post-meta .cat { color: var(--indigo-deep); background: var(--indigo-50); padding: 3px 10px; border-radius: 6px; }
.post h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; line-height: 1.25; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.post p { font-size: 0.92rem; line-height: 1.6; color: var(--text-soft); }

/* ===== TOAST ===== */
.toast-stack { position: fixed; bottom: 24px; right: 24px; z-index: 4000; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.toast {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-left: 3px solid var(--indigo);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(120%);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: auto;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.success { border-left-color: var(--emerald); }
.toast .ti {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--indigo-50);
    color: var(--indigo-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.toast.success .ti { background: rgba(16,185,129,0.12); color: var(--emerald); }
.toast h5 { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 3px; }
.toast p { font-size: 0.85rem; color: var(--text-soft); margin: 0; line-height: 1.5; }
.toast .tx { background: transparent; border: 0; color: var(--muted); font-size: 1.1rem; padding: 0; width: 24px; height: 24px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; }
.toast .tx:hover { background: var(--bg-3); color: var(--ink); }
@media (max-width: 600px) { .toast-stack { left: 14px; right: 14px; bottom: 80px; } .toast { max-width: none; } }

/* ===== FLOAT BUTTON (WhatsApp) ===== */
.fbtn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 14px 30px rgba(37,211,102,0.40);
    z-index: 90;
    transition: 0.3s;
}
.fbtn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37,211,102,0.55); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }

/* ===== RESPONSIVE FINAL ===== */
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .hero { padding: 130px 0 70px; }
    .container { padding: 0 18px; }
    .cta-card { padding: 50px 24px; border-radius: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
