/* ============================================
   VENTUM — Glassmorphism Tema (Bootstrap 5 üzeri)
   ============================================ */

:root {
  --ink: #1f1b3a;
  --ink-soft: #6b6885;
  --purple: #8b2bd9;
  --purple-deep: #5b1fb0;
  --pink: #ec1c7d;
  --magenta: #d6249f;
  --orange: #ff8a1e;
  --blue: #4ea8ff;
  --bg: #f4f1fb;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.9);
  --shadow: 0 30px 70px -34px rgba(91, 33, 176, 0.22);
  --shadow-soft: 0 18px 50px -28px rgba(91, 33, 176, 0.18);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --grad: linear-gradient(120deg, var(--orange) 0%, var(--pink) 45%, var(--purple) 100%);
  --grad-pp: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%);
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 48% 40% at 88% 6%, rgba(255, 196, 232, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 46% at 100% 30%, rgba(196, 170, 255, 0.45), transparent 72%),
    radial-gradient(ellipse 55% 50% at -8% 78%, rgba(214, 162, 255, 0.5), transparent 72%),
    radial-gradient(ellipse 45% 40% at 18% 100%, rgba(255, 178, 224, 0.45), transparent 70%),
    linear-gradient(180deg, #faf8ff 0%, var(--bg) 55%, #f3eefb 100%);
  background-attachment: scroll;
  overflow-x: hidden;
}

a { text-decoration: none; }

/* ---------- Dekoratif bloblar + küreler ---------- */
.blobs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45; }

.blob.b1 { width: 620px; height: 620px; top: -180px; left: -160px; background: #ece2f6; }
.blob.b2 { width: 540px; height: 540px; top: -120px; right: -140px; background: #d9f3e3; }
.blob.b3 { width: 600px; height: 600px; bottom: -220px; left: -120px; background: #f9eccb; }
.blob.b4 { width: 520px; height: 520px; bottom: -160px; right: -150px; background: #f8dde3; }

.sphere {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -8px -10px 20px rgba(91, 43, 217, 0.25), 0 18px 30px -12px rgba(91, 43, 217, 0.3);
}

.sphere.s1 { width: 46px; height: 46px; top: 14%; left: 7%; background: radial-gradient(circle at 32% 28%, #b9a6ff, #6f4bdd); }
.sphere.s2 { width: 34px; height: 34px; top: 22%; right: 6%; background: radial-gradient(circle at 32% 28%, #ffb3e2, #f046b2); }
.sphere.s3 { width: 28px; height: 28px; bottom: 28%; left: 4%; background: radial-gradient(circle at 32% 28%, #e6e0ff, #b3a6f5); }

main { position: relative; z-index: 1; }

/* ---------- Glass kart ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-strong { background: var(--glass-strong); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.site-header .navbar { min-height: 78px; }

.navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ink) !important;
  display: inline-flex;
  align-items: center;
}

.navbar-brand img { height: 40px; width: auto; display: block; }

.navbar-brand .v {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.navbar-nav .nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  margin-inline: 0.6rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.5rem; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--grad);
  transition: right 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { right: 0.5rem; }

/* ---------- Butonlar ---------- */
.btn-ventum {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 14px 30px -10px rgba(123, 92, 240, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ventum:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(123, 92, 240, 0.65);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--purple-deep);
  border: 1px solid rgba(123, 92, 240, 0.25);
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease;
}

.btn-ghost:hover { color: var(--purple-deep); transform: translateY(-2px); }

/* ---------- Tipografi ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 700; }

.section-sub { color: var(--ink-soft); max-width: 640px; line-height: 1.7; font-size: 0.95rem; }

.kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; color: var(--purple); }

.text-soft { color: var(--ink-soft); }

/* ---------- Page hero ---------- */
.page-hero { padding: 4.2rem 0 1.2rem; text-align: center; }

.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 800; }

.page-hero p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Hero (anasayfa) ---------- */
.hero-title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.85;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.big-v {
  font-size: clamp(7rem, 14vw, 11rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ff4d6d 0%, #7b5cf0 60%, #5b2bd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 24px 30px rgba(91, 43, 217, 0.35));
}

.dots {
  position: absolute;
  width: 110px; height: 70px;
  background-image: radial-gradient(rgba(123, 92, 240, 0.5) 2px, transparent 2px);
  background-size: 16px 16px;
}

.dots.tl { top: 26px; left: 26px; }
.dots.br { bottom: 26px; right: 26px; }

.dot-grid {
  width: 110px; height: 50px;
  margin-inline: auto;
  background-image: radial-gradient(rgba(240, 70, 178, 0.55) 2.2px, transparent 2.2px);
  background-size: 18px 16px;
}

/* ---------- İkon kutuları ---------- */
.icon-tile {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: none;
}

.tone-purple { background: linear-gradient(135deg, #ece5ff, #d9ccff); color: #7b5cf0; }
.tone-pink { background: linear-gradient(135deg, #ffe3f4, #ffc9e9); color: #f046b2; }
.tone-blue { background: linear-gradient(135deg, #e0efff, #c9e2ff); color: #4ea8ff; }

/* ---------- Hizmet kartı ---------- */
.service-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  color: var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -22px rgba(91, 43, 217, 0.32);
}

.service-card strong { font-size: 0.95rem; font-weight: 600; display: block; }

.service-card small { font-size: 0.74rem; color: var(--pink); font-weight: 500; }

.service-card .arrow { margin-left: auto; color: var(--purple); font-size: 1.4rem; font-weight: 600; }

/* ---------- Adım numaraları ---------- */
.step-no {
  width: 56px; height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 14px 26px -10px rgba(91, 43, 217, 0.5);
}

.step-no.no-1 { background: linear-gradient(135deg, #ffb648, #ff8a3d); }
.step-no.no-2 { background: linear-gradient(135deg, #6ea8ff, #4a78f5); }
.step-no.no-3 { background: linear-gradient(135deg, #ff7ab8, #f046b2); }

/* ---------- Proje kartı ---------- */
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 40px -18px rgba(91, 43, 217, 0.28);
  transition: transform 0.22s ease;
  color: var(--ink);
  display: block;
}

.project-card:hover { transform: translateY(-5px); color: var(--ink); }

.project-visual {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

/* ---------- Marka ızgarası ---------- */
.brand-cell {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 76px;
  padding: 0.6rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: #8a87a3;
  border-radius: 14px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.brand-cell:hover {
  color: var(--purple-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px -14px rgba(91, 43, 217, 0.35);
}

/* ---------- Blog kartı ---------- */
.post-card { overflow: hidden; transition: transform 0.22s ease; display: block; color: var(--ink); }

.post-card:hover { transform: translateY(-5px); color: var(--ink); }

.post-cover {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--grad);
}

/* ---------- Form ---------- */
.form-control {
  border-radius: 14px;
  border: 1px solid rgba(123, 92, 240, 0.2);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
}

.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(123, 92, 240, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.form-label { font-size: 0.8rem; font-weight: 600; }

/* ---------- Marka detay (showcase) ---------- */
.showcase { position: relative; overflow: hidden; text-align: center; }

.showcase-bg { position: absolute; inset: 0; opacity: 0.14; }

.laptop { width: min(560px, 78%); }

.screen {
  background: #fff;
  border: 6px solid #2b2b35;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(33, 27, 78, 0.45);
}

.screen-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0.8rem; }

.logo-chip { font-size: 0.6rem; font-weight: 800; color: #fff; border-radius: 6px; padding: 0.25rem 0.45rem; }

.bar-lines { display: flex; gap: 0.4rem; margin-left: auto; }

.bar-lines i { width: 26px; height: 5px; border-radius: 3px; background: #e3e0f2; }

.screen-hero {
  aspect-ratio: 16 / 6.5;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: clamp(0.9rem, 2.4vw, 1.5rem);
}

.screen-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0.6rem 0.8rem 0.9rem; }

.screen-cards i { height: 34px; border-radius: 8px; background: #efedf8; }

.laptop .base { height: 14px; margin: 0 -7%; background: linear-gradient(#d8d6e4, #b9b6c9); border-radius: 0 0 16px 16px; }

.phone { width: clamp(78px, 14%, 120px); margin-left: -6%; position: relative; z-index: 2; }

.phone-screen {
  background: #fff;
  border: 5px solid #2b2b35;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 46px -20px rgba(33, 27, 78, 0.5);
}

.phone-hero { aspect-ratio: 1 / 0.9; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.1rem; }

.phone-lines { padding: 0.5rem; display: grid; gap: 0.35rem; }

.phone-lines i { height: 8px; border-radius: 4px; background: #efedf8; }

/* ---------- Rozet ve çipler ---------- */
.badge-tech {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.chip {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(123, 92, 240, 0.25);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-deep);
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(236, 230, 252, 0.7));
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: var(--purple);
  box-shadow: 0 8px 18px -8px rgba(91, 43, 217, 0.3);
  transition: transform 0.2s ease;
}

.social-btn:hover { transform: translateY(-3px); color: var(--purple-deep); }

/* ---------- Yardımcılar ---------- */
.avatar-circle {
  width: 180px; height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 24px 50px -18px rgba(123, 92, 240, 0.55);
}

.stars { color: #ffce3d; font-size: 1.5rem; letter-spacing: 0.4em; }

.underbar { display: block; width: 56px; height: 4px; border-radius: 4px; }

.underbar.tone-purple { background: linear-gradient(90deg, #7b5cf0, #b79bff); }
.underbar.tone-blue { background: linear-gradient(90deg, #4ea8ff, #8ec8ff); }
.underbar.tone-pink { background: linear-gradient(90deg, #f046b2, #ff8ed1); }

.spark {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ece5ff, #ffd9f1);
  color: var(--purple);
  font-size: 1.4rem;
}

/* ============================================================
   BENTO KONSEPT — Anasayfa yeni tasarım sistemi
   ============================================================ */

/* ---- Etiket (eyebrow pill) ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(139, 43, 217, 0.09);
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
}

/* ---- Bento kart ---- */
.bento-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.2rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.bento-card.tinted-purple { background: linear-gradient(160deg, rgba(244, 236, 255, 0.92), rgba(255, 255, 255, 0.78)); }
.bento-card.tinted-pink { background: linear-gradient(160deg, rgba(255, 234, 246, 0.92), rgba(255, 255, 255, 0.78)); }

/* dekoratif köşe parıltısı */
.bento-card .glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.bento-card .glow.tr { top: -90px; right: -70px; background: #e7c4ff; }
.bento-card .glow.br { bottom: -90px; right: -60px; background: #ffc4e6; }

/* ---- Hero ---- */
.home-hero { padding: 3.2rem 0 2rem; }

.home-hero .tagline-right {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: right;
  border-right: 3px solid var(--pink);
  padding-right: 0.9rem;
}

.hero-big {
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero-big .line-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Mini hizmet kartları (hero altı) ---- */
.mini-service {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mini-service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.mini-service h3 { font-size: 0.92rem; font-weight: 700; margin: 0.9rem 0 0.35rem; }
.mini-service p { font-size: 0.76rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

.svc-ico {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-pp);
  box-shadow: 0 10px 22px -10px rgba(139, 43, 217, 0.6);
}
.svc-ico.g-orange { background: linear-gradient(135deg, #ff8a1e, #ff2d55); box-shadow: 0 10px 22px -10px rgba(255, 90, 60, 0.6); }
.svc-ico.g-pink { background: linear-gradient(135deg, #ec1c7d, #ff5e9e); }
.svc-ico.g-blue { background: linear-gradient(135deg, #6a5cff, #4ea8ff); }
.svc-ico svg { width: 22px; height: 22px; }

/* ---- Cihaz mockup (hero görsel) ---- */
.hero-stage { position: relative; padding: 1rem 0; }

.mock-laptop {
  background: #fff;
  border: 8px solid #2a2740;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(33, 27, 78, 0.5);
}

.mock-top {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid #f0edf8;
}
.mock-top .mlogo { height: 14px; }
.mock-top .mnav { display: flex; gap: 0.7rem; margin-left: auto; }
.mock-top .mnav i { width: 26px; height: 5px; border-radius: 3px; background: #e6e2f2; }
.mock-top .mbtn { width: 42px; height: 14px; border-radius: 999px; background: var(--grad-pp); }

.mock-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0.7rem; padding: 1.1rem; align-items: center; }
.mock-body h4 { font-size: 0.78rem; font-weight: 700; line-height: 1.3; margin: 0 0 0.4rem; }
.mock-body h4 span { background: var(--grad-pp); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock-body p { font-size: 0.56rem; color: var(--ink-soft); margin: 0 0 0.5rem; line-height: 1.5; }
.mock-body .mpill { display: inline-block; width: 64px; height: 16px; border-radius: 999px; background: var(--grad-pp); }
.mock-art {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: linear-gradient(150deg, #efe6ff, #ffe3f1);
  display: grid; place-items: center;
}
.mock-art img { height: 54%; }

.mock-phone {
  position: absolute;
  right: -2%; bottom: -6%;
  width: 23%;
  background: #fff;
  border: 5px solid #2a2740;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(33, 27, 78, 0.55);
}
.mock-phone .pbar { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0.5rem; }
.mock-phone .pbar img { height: 10px; }
.mock-phone .pbar i { width: 12px; height: 3px; background: #d9d4ea; border-radius: 2px; box-shadow: 0 5px 0 #d9d4ea, 0 -5px 0 #d9d4ea; }
.mock-phone .part { aspect-ratio: 1/1; margin: 0 0.4rem; border-radius: 10px; background: linear-gradient(150deg, #efe6ff, #ffe3f1); display: grid; place-items: center; }
.mock-phone .part img { height: 50%; }
.mock-phone .plines { padding: 0.5rem; display: grid; gap: 0.3rem; }
.mock-phone .plines i { height: 5px; border-radius: 3px; background: #ece8f6; }
.mock-phone .plines i:last-child { width: 60%; }

/* ---- Dev istatistik (%67) ---- */
.stat-huge {
  font-size: clamp(4.2rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Özellik listesi (AI kart / vaka) ---- */
.feature-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-row + .feature-row { margin-top: 0.9rem; }
.feature-row .fico {
  width: 40px; height: 40px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(139, 43, 217, 0.1);
  color: var(--purple);
}
.feature-row .fico svg { width: 19px; height: 19px; }
.feature-row h4 { font-size: 0.86rem; font-weight: 700; margin: 0 0 0.15rem; }
.feature-row p { font-size: 0.76rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

.feature-pill {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-soft);
}

/* ---- Vaka çalışması cihaz + yüzde rozeti ---- */
.case-phone {
  border-radius: 22px;
  overflow: hidden;
  border: 5px solid #2a2740;
  box-shadow: 0 26px 50px -20px rgba(33, 27, 78, 0.5);
  background: linear-gradient(160deg, #2f6b4f, #1f4a6b);
  aspect-ratio: 9/15;
}
.pct-badge {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  background: var(--grad-pp);
  box-shadow: 0 18px 36px -12px rgba(139, 43, 217, 0.6);
}
.pct-badge b { font-size: 1.5rem; line-height: 1; display: block; }
.pct-badge span { font-size: 0.52rem; letter-spacing: 0.04em; }

/* ---- Alıntı kartı ---- */
.quote-mark {
  font-size: 4rem;
  line-height: 0.6;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote-text { font-size: 1.25rem; font-weight: 600; line-height: 1.5; }

/* ---- Proje istatistik sütunu ---- */
.kpi { display: grid; gap: 0.1rem; }
.kpi b { font-size: 1.4rem; font-weight: 800; }
.kpi b.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi span { font-size: 0.7rem; color: var(--ink-soft); }
.kpi + .kpi { border-top: 1px solid rgba(139, 43, 217, 0.12); padding-top: 0.7rem; margin-top: 0.7rem; }

/* ---- Haber kartı görsel ---- */
.news-photo {
  border-radius: 18px;
  overflow: hidden;
  min-height: 150px;
  background: linear-gradient(135deg, #6a4bd0, #b14bd0);
  position: relative;
}
.news-photo .ph-logo {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.news-photo .ph-logo img { height: 46px; opacity: 0.95; }

.loc {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--ink-soft);
}
.loc svg { width: 16px; height: 16px; color: var(--pink); }

/* ---- CTA bandı / footer ---- */
.cta-band {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(244, 236, 255, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.4rem 2.6rem;
}
.cta-mark {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 32px -14px rgba(139, 43, 217, 0.4);
}
.cta-mark img { height: 38px; }
.cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; line-height: 1.2; margin: 0; }
.cta-band h2 .g { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-link {
  font-size: 1.1rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.social-pill {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: inline-grid; place-items: center;
  background: #fff;
  color: var(--purple);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}
.social-pill:hover { transform: translateY(-3px); color: var(--pink); }
.social-pill svg { width: 19px; height: 19px; }

@media (max-width: 768px) {
  .home-hero .tagline-right { text-align: left; border-right: none; border-left: 3px solid var(--pink); padding-right: 0; padding-left: 0.9rem; margin-top: 1rem; }
  .mock-phone { width: 26%; }
}

/* CodeIgniter client compatibility */
body.is-home-page {
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(ellipse 48% 40% at 88% 6%, rgba(255, 196, 232, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 46% at 100% 30%, rgba(196, 170, 255, 0.45), transparent 72%),
    radial-gradient(ellipse 55% 50% at -8% 78%, rgba(214, 162, 255, 0.5), transparent 72%),
    radial-gradient(ellipse 45% 40% at 18% 100%, rgba(255, 178, 224, 0.45), transparent 70%),
    linear-gradient(180deg, #faf8ff 0%, var(--bg) 55%, #f3eefb 100%);
}

.site-shell {
  min-height: 100vh;
}

.site-main {
  flex: 1 0 auto;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(123, 92, 240, 0.12);
}

.dropdown-menu {
  border: 1px solid rgba(123, 92, 240, 0.14);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.dropdown-item {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--purple-deep);
  background: rgba(139, 43, 217, 0.08);
}

.social-pill i {
  font-size: 18px;
}

.feature-row .fico i,
.loc i {
  font-size: 17px;
}

.cta-band .social-pill i {
  line-height: 1;
}

/* ---------- Klasik anasayfa ---------- */
.hero-classic {
  padding: 6.25rem 0 5rem;
  position: relative;
}

.hero-classic .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 43, 217, 0.1);
  color: var(--purple);
  border-radius: 999px;
  padding: 0.38rem 1.12rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}

.hero-classic .hero-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-block;
}

.hero-classic h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-classic .hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 1.25rem;
}

.hero-classic .hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(139, 43, 217, 0.1);
}

.hero-stats .stat-item b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.hero-stats .stat-item span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.line-grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual-classic {
  min-height: 380px;
  aspect-ratio: auto;
  overflow: visible;
}

.hero-card-main {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 2.25rem 2rem;
  max-width: 380px;
  width: 100%;
  position: relative;
}

.hero-card-main .vc-logo {
  height: 36px;
  margin-bottom: 1.5rem;
}

.hero-card-main h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.62rem;
}

.hero-card-main p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-card-main .vc-pill {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  padding: 0.56rem 1.38rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.sector-chips .chip-s {
  background: rgba(139, 43, 217, 0.07);
  color: var(--purple-deep);
  border-radius: 999px;
  padding: 0.32rem 0.88rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.fcard {
  position: absolute;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: 0 10px 30px -14px rgba(91, 33, 176, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 1rem;
}

.fcard-tl {
  top: -28px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.fcard-tl .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-pp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.fcard-tl .ico svg {
  width: 16px;
  height: 16px;
}

.fcard-tl b {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.fcard-tl span,
.fcard-br span {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.fcard-br {
  bottom: -24px;
  right: -32px;
  text-align: center;
  padding: 0.88rem 1.25rem;
}

.fcard-br b {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.section-header .sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 0.88rem;
}

.section-header .sec-label::before,
.section-header .sec-label::after {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--purple);
  opacity: 0.5;
}

.section-header h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  max-width: 520px;
  margin: 0.62rem auto 0;
  line-height: 1.7;
}

.svc-card-classic {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.svc-card-classic:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.svc-card-classic .svc-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(139, 43, 217, 0.06);
  line-height: 1;
}

.svc-card-classic .svc-ico-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.svc-card-classic .svc-ico-wrap svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.8;
}

.svc-card-classic h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.62rem;
}

.svc-card-classic p {
  font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.svc-card-classic .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  margin-top: 1.12rem;
}

.svc-card-classic .svc-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--purple);
  stroke-width: 1.8;
}

.process-classic-section {
  background: rgba(139, 43, 217, 0.03);
}

.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px -8px rgba(236, 28, 125, 0.4);
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

.brands-section {
  padding: 5rem 0;
}

.brand-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.5rem 1.12rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 18px -8px rgba(91, 33, 176, 0.14);
  transition: transform 0.2s, box-shadow 0.2s, color 0.2s;
}

.brand-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px -10px rgba(91, 33, 176, 0.22);
  color: var(--purple-deep);
}

.brand-chip .bc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-pp);
  flex-shrink: 0;
}

.blog-card-classic {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  color: inherit;
}

.blog-card-classic:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  color: inherit;
}

.blog-card-classic .blog-img {
  height: 180px;
  background: linear-gradient(135deg, #c4aaff 0%, #f4a0d0 50%, #ffb87a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-classic .blog-img-2 {
  background: linear-gradient(135deg, #a0d8f4 0%, #c4aaff 60%, #f4a0d0 100%);
}

.blog-card-classic .blog-img-3 {
  background: linear-gradient(135deg, #ffb87a 0%, #f4a0d0 55%, #c4aaff 100%);
}

.blog-card-classic .blog-img svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 1.5;
}

.blog-card-classic .blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-classic .blog-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--purple);
  margin-bottom: 0.62rem;
  text-transform: uppercase;
}

.blog-card-classic h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.62rem;
}

.blog-card-classic p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.blog-card-classic .blog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.12rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 43, 217, 0.08);
}

.blog-card-classic .blog-date {
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.blog-card-classic .blog-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(139, 43, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-classic .blog-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--purple);
  stroke-width: 1.8;
}

.cta-section-classic {
  padding: 5rem 0;
}

.cta-box-classic {
  background: var(--grad);
  border-radius: var(--radius-xl);
  padding: 3.75rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-box-classic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 20%, rgba(255, 255, 255, 0.2), transparent 70%);
}

.cta-box-classic h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  position: relative;
  line-height: 1.2;
}

.cta-box-classic p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  margin: 1rem 0 2rem;
  position: relative;
}

.btn-white,
.btn-white-outline {
  position: relative;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-block;
}

.btn-white {
  background: #fff;
  color: var(--purple-deep);
  padding: 0.88rem 2.25rem;
  border: none;
  box-shadow: 0 8px 28px -8px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.28);
  color: var(--purple-deep);
}

.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  padding: 0.75rem 2rem;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero-classic {
    padding-top: 4.5rem;
  }

  .hero-visual-classic {
    min-height: 340px;
  }

  .fcard-tl {
    left: 0;
  }

  .fcard-br {
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-card-main {
    padding: 1.75rem 1.35rem;
  }

  .fcard {
    position: static;
    margin-top: 0.75rem;
  }

  .cta-box-classic {
    padding: 2.5rem 1.5rem;
  }
}

/* ---------- Nuxt kaynaklı anasayfa ---------- */
.nuxt-hero {
  padding: 4.5rem 0 1rem;
}

.nuxt-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.nuxt-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--purple);
}

.nuxt-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 1rem 0 1.2rem;
}

.nuxt-grad-text {
  background: var(--grad-pp);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nuxt-hero-copy p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.97rem;
  max-width: 480px;
}

.nuxt-hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.nuxt-hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.85;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.nuxt-big-v {
  font-size: clamp(7rem, 14vw, 11rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ff4d6d 0%, #7b5cf0 60%, #5b2bd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 24px 30px rgba(91, 43, 217, 0.35));
}

.nuxt-dots {
  position: absolute;
  width: 110px;
  height: 70px;
  background-image: radial-gradient(rgba(123, 92, 240, 0.5) 2px, transparent 2px);
  background-size: 16px 16px;
}

.nuxt-dots-tl {
  top: 26px;
  left: 26px;
}

.nuxt-dots-br {
  right: 26px;
  bottom: 26px;
}

.nuxt-section {
  padding: 2.4rem 0;
}

.nuxt-what {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  padding: 3rem;
  align-items: center;
}

.nuxt-spark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ece5ff, #ffd9f1);
  color: var(--purple);
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.nuxt-what-intro h2 {
  font-size: 1.7rem;
  font-weight: 700;
}

.nuxt-what-intro p {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.nuxt-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.nuxt-svc-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: var(--ink);
}

.nuxt-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -22px rgba(91, 43, 217, 0.32);
  color: var(--ink);
}

.nuxt-svc-icon {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 18px;
  display: grid;
  place-items: center;
}

.nuxt-svc-icon svg {
  width: 26px;
  height: 26px;
}

.nuxt-svc-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.2rem;
}

.nuxt-svc-body strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.nuxt-svc-body small {
  font-size: 0.74rem;
  color: var(--pink);
  font-weight: 500;
}

.nuxt-svc-arrow {
  color: var(--purple);
  font-size: 1.4rem;
  font-weight: 600;
}

.nuxt-steps,
.nuxt-projects {
  padding: 3rem;
}

.nuxt-section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
}

.nuxt-steps-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.nuxt-step {
  text-align: center;
}

.nuxt-step-no {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: 0 14px 26px -10px rgba(91, 43, 217, 0.5);
}

.nuxt-no-1 {
  background: linear-gradient(135deg, #ffb648, #ff8a3d);
}

.nuxt-no-2 {
  background: linear-gradient(135deg, #6ea8ff, #4a78f5);
}

.nuxt-no-3 {
  background: linear-gradient(135deg, #ff7ab8, #f046b2);
}

.nuxt-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.nuxt-step p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.nuxt-projects-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.nuxt-project {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 40px -18px rgba(91, 43, 217, 0.28);
  transition: transform 0.22s ease;
  display: block;
  color: var(--ink);
}

.nuxt-project:hover {
  transform: translateY(-5px);
  color: var(--ink);
}

.nuxt-project-visual {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.nuxt-project footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.2rem;
  font-size: 0.85rem;
}

.nuxt-project .nuxt-arrow {
  color: var(--purple);
  font-size: 1.3rem;
}

.nuxt-cta {
  text-align: center;
  padding: 3.4rem 2rem;
}

.nuxt-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.nuxt-cta p {
  color: var(--ink-soft);
  margin: 0.9rem 0 1.8rem;
}

@media (max-width: 920px) {
  .nuxt-hero-grid,
  .nuxt-what {
    grid-template-columns: 1fr;
  }

  .nuxt-steps-grid,
  .nuxt-projects-grid,
  .nuxt-what-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .nuxt-what,
  .nuxt-steps,
  .nuxt-projects {
    padding: 2rem 1.2rem;
  }
}
