/* ============================================================
   Resul Korkmaz — Premium Personal Brand Site (Light Theme)
   ============================================================ */

:root {
  --bg: #f8f9fd;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f3f5fb;
  --border: rgba(13, 20, 36, 0.08);
  --border-strong: rgba(13, 20, 36, 0.13);
  --text: #0c1222;
  --muted: #5a6478;
  --accent-1: #1e3a8a;   /* lacivert — ana marka rengi */
  --accent-2: #1d4ed8;   /* kraliyet mavisi — vurgu */
  --accent-3: #2563eb;
  --grad: #1d4ed8;
  --grad-btn: #1e3a8a;
  --shadow-sm: 0 1px 2px rgba(13, 20, 36, 0.05), 0 4px 14px rgba(13, 20, 36, 0.05);
  --shadow-md: 0 6px 24px rgba(13, 20, 36, 0.08), 0 2px 6px rgba(13, 20, 36, 0.05);
  --shadow-lg: 0 24px 64px rgba(13, 20, 36, 0.12), 0 6px 18px rgba(13, 20, 36, 0.06);
  --radius: 20px;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(37, 99, 235, 0.18); color: var(--text); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

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

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.preloader-bar {
  width: 220px; height: 2px; border-radius: 2px;
  background: rgba(13, 20, 36, 0.1);
  overflow: hidden;
}
.preloader-bar span {
  display: block; width: 0%; height: 100%;
  background: var(--grad);
  transition: width 0.2s ease;
}
.preloader-count { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 100%; height: 2.5px;
  background: var(--grad);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ---------- Background FX ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
}
.orb-1 {
  width: 560px; height: 560px; top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 65%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.orb-2 {
  width: 480px; height: 480px; top: 18%; right: -160px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.12), transparent 65%);
  animation: drift2 26s ease-in-out infinite alternate;
}
.orb-3 {
  width: 620px; height: 620px; bottom: -260px; left: 30%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 65%);
  animation: drift3 30s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(90px, 70px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-70px, 110px) scale(0.92); } }
@keyframes drift3 { to { transform: translate(-110px, -70px) scale(1.08); } }

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13, 20, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 20, 36, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 35%, transparent 100%);
}
.bg-noise { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 14px 36px rgba(29, 78, 216, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-ghost {
  background: #fff;
  border-color: var(--border-strong);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(13, 20, 36, 0.05);
}
.nav-inner { display: flex; align-items: center; gap: 32px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 800; letter-spacing: -0.02em;
  margin-right: auto;
  display: inline-flex; align-items: center; gap: 11px;
}
.logo-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.28);
  transition: transform 0.35s var(--ease-out);
}
.nav-logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }
.nav-logo .logo-text span { color: var(--muted); font-weight: 500; }
.nav-logo .logo-text i {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  position: relative;
  transition: color 0.25s;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta-mobile { display: none; }
.nav-burger {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  padding: 120px 0 70px;
}
.hero-inner { text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  padding: 9px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7.2vw, 84px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-sub {
  max-width: 600px; margin: 0 auto 34px;
  font-size: clamp(16px, 2vw, 18.5px);
  color: var(--muted);
  text-wrap: balance;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 880px; margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-stat {
  background: rgba(255, 255, 255, 0.88);
  padding: 26px 16px;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.3s;
}
.hero-stat:hover { background: #eff6ff; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 13px; color: var(--muted); }
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
}
.hero-scroll-hint span {
  position: absolute; top: 7px; left: 50%;
  width: 3px; height: 7px; border-radius: 3px;
  background: var(--accent-1);
  transform: translateX(-50%);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 13px); }
}

/* ---------- Hero 3D layout ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
}
.hero-copy { text-align: left; }
.hero-copy .hero-title {
  font-size: clamp(38px, 4.9vw, 68px);
  text-wrap: initial;
}
.hero-copy .hero-sub { margin-left: 0; max-width: 520px; }
.hero-copy .hero-cta { justify-content: flex-start; margin-bottom: 0; }
.hero-3d { position: relative; height: clamp(340px, 40vw, 540px); }
.hero-3d canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-3d-chip {
  position: absolute;
  display: flex; flex-direction: column;
  padding: 13px 19px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.hero-3d-chip strong {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--accent-2);
}
.hero-3d-chip small { font-size: 12px; color: var(--muted); }
.chip-a { top: 12%; right: 4%; animation: floatA 5.5s ease-in-out infinite; }
.chip-b { bottom: 12%; left: 2%; animation: floatA 6.5s ease-in-out 1.2s infinite; }
.hero .hero-stats { margin-top: 58px; }

/* kinetik kelime */
.word-rotate {
  display: inline-block;
  perspective: 700px;
  vertical-align: bottom;
}
.word-rotate > span {
  display: inline-block;
  transform-origin: 50% 60%;
  will-change: transform, opacity;
}

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body, a, button, summary, .btn { cursor: none; }
  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 7px; height: 7px;
    background: var(--accent-2);
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(29, 78, 216, 0.55);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }
  .cursor-ring.is-hover {
    width: 56px; height: 56px;
    background: rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.85);
  }
}

/* 3D tilt kartlar */
.tilt-card { will-change: transform; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 36px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: rgba(12, 18, 34, 0.45);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--text); }
.marquee-track i { font-style: normal; font-size: 12px; color: var(--accent-1); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section-tag {
  display: inline-block;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-1);
  padding: 7px 16px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.06);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-sub { color: var(--muted); font-size: 17px; max-width: 560px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-head .section-sub { margin-inline: auto; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(37, 99, 235, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(30, 58, 138, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--accent-1);
  margin-bottom: 24px;
  transition: transform 0.45s var(--ease-out), color 0.3s;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); color: var(--accent-2); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.service-link {
  font-size: 14px; font-weight: 600;
  color: var(--accent-1);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link i { font-style: normal; transition: transform 0.3s var(--ease-out); }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ---------- About ---------- */
.about { background: transparent; }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-glow {
  position: absolute; inset: 8%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}
.about-card-main {
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-avatar {
  width: 110px; height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.about-card-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.about-card-role { color: var(--muted); font-size: 15px; margin-top: 4px; margin-bottom: 22px; }
.about-card-badges { display: flex; flex-direction: column; gap: 10px; }
.about-card-badges span {
  font-size: 13.5px; font-weight: 500;
  color: #047857;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 9px;
}
.float-chip {
  position: absolute; z-index: 2;
  display: flex; flex-direction: column;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.float-chip strong {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.float-chip small { font-size: 12px; color: var(--muted); }
.chip-1 { top: -22px; right: -10px; animation: floatA 5.5s ease-in-out infinite; }
.chip-2 { bottom: -20px; left: -14px; animation: floatA 6.5s ease-in-out 1s infinite; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.about-content p { color: var(--muted); margin-bottom: 18px; }
.about-list { list-style: none; margin: 28px 0 30px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 13px; align-items: baseline; font-size: 15.5px; }
.about-list span {
  flex-shrink: 0;
  color: #059669; font-weight: 700; font-size: 14px;
}
.about-tools { display: flex; flex-wrap: wrap; gap: 10px; }
.about-tools span {
  font-size: 13px; font-weight: 500; color: var(--muted);
  border: 1px solid var(--border-strong);
  background: #fff;
  padding: 7px 16px; border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: color 0.25s, border-color 0.25s;
}
.about-tools span:hover { color: var(--text); border-color: rgba(37, 99, 235, 0.45); }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: var(--shadow-lg);
}
.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px; font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
  background: rgba(13, 20, 36, 0.14);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s;
}
.process-step:hover .process-num {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  margin-bottom: 10px;
}
.process-step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Sectors ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.sector-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-lg);
}
.sector-emoji { font-size: 34px; display: block; margin-bottom: 16px; line-height: 1.2; }
.sector-emoji svg { margin-inline: auto; height: 41px; }
.sector-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.sector-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-lg);
}
.stars { color: #f59e0b; letter-spacing: 3px; font-size: 15px; margin-bottom: 18px; }
.testimonial-card blockquote {
  font-size: 15.5px; line-height: 1.75;
  color: #2a3349;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--border); padding-top: 18px; }
.testimonial-card figcaption strong { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.testimonial-card figcaption span { font-size: 13px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.faq-head { position: sticky; top: 120px; }
.faq-head a { color: var(--accent-1); font-weight: 500; }
.faq-head a:hover { text-decoration: underline; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: rgba(37, 99, 235, 0.35); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  transition: transform 0.4s var(--ease-out), background 0.3s, border-color 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: rgba(37, 99, 235, 0.1); border-color: rgba(37, 99, 235, 0.4); }
.faq-body { padding: 0 26px 24px; }
.faq-body p { color: var(--muted); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 60px 0 120px; }
.cta-band-inner {
  position: relative;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) clamp(28px, 6vw, 80px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #16285c;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(30, 58, 138, 0.35);
}
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-band-inner .grad {
  background: #7eb1ff;
  -webkit-background-clip: text; background-clip: text;
}
.cta-band-inner p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 36px; font-size: 17px; }
.cta-band-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(8px);
}
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.4); }
.cta-band .btn-primary {
  background: #fff;
  color: #0b1e45;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

/* ---------- Contact ---------- */
.contact { padding-top: 40px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.contact-info > p { color: var(--muted); margin-bottom: 36px; max-width: 440px; }
.contact-items { display: grid; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--ease-out);
}
a.contact-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.contact-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(30, 58, 138, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--accent-1);
}
.contact-icon svg { width: 21px; height: 21px; }
.contact-item strong { display: block; font-family: var(--font-display); font-size: 14.5px; font-weight: 600; }
.contact-item div span { font-size: 14px; color: var(--muted); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(90, 100, 120, 0.5); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  padding-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-col a, .footer-addr { font-size: 14.5px; color: var(--muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--accent-1); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-block: 26px;
  font-size: 13.5px; color: var(--muted);
}
.back-to-top { transition: color 0.25s; }
.back-to-top:hover { color: var(--accent-1); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

/* ---------- Reveal (JS-driven) ---------- */
.reveal, .reveal-hero { opacity: 0; }
.no-js .reveal, .no-js .reveal-hero { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-sub { margin-inline: auto; }
  .hero-copy .hero-cta { justify-content: center; }
  .hero-3d { height: 320px; max-width: 480px; margin-inline: auto; width: 100%; }
  .hero .hero-stats { margin-top: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { max-width: 440px; margin-inline: auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 84px 0; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(330px, 84vw);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(13, 20, 36, 0.12);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 19px; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 10px; }
  .nav-burger { display: flex; position: relative; z-index: 100; }
  .hero { padding-top: 120px; }
  .hero-cta .btn { width: 100%; max-width: 360px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .testimonials-grid, .process-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .chip-1 { right: 0; }
  .chip-2 { left: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .wa-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 12px; padding: 8px 14px; }
}

/* ---------- Service illustrations ---------- */
.service-illo {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease-out);
}
.service-card:hover .service-illo { transform: scale(1.025); }
.service-card .service-icon { display: none; }

/* ---------- Service sub-pages ---------- */
.page-hero {
  padding: 168px 0 76px;
  position: relative;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.page-hero-illo img {
  width: 100%; height: auto; display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .page-hero-illo { max-width: 520px; }
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb i { font-style: normal; color: rgba(13, 20, 36, 0.3); }
.breadcrumb strong { color: var(--text); font-weight: 600; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 760px;
}
.page-lead {
  font-size: clamp(16px, 2vw, 18.5px);
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 34px;
  text-wrap: balance;
}
.page-hero .hero-cta { justify-content: flex-start; margin-bottom: 0; }
.page-hero-meta {
  display: flex; gap: 26px; flex-wrap: wrap;
  margin-top: 40px;
  font-size: 14px; color: var(--muted);
}
.page-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero-meta b { color: var(--accent-2); font-weight: 700; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 58, 138, 0.3);
  box-shadow: var(--shadow-lg);
}
.feature-num {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(30, 58, 138, 0.07);
  border: 1px solid rgba(30, 58, 138, 0.18);
  color: var(--accent-1);
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17.5px; font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p { color: var(--muted); font-size: 14.5px; }

.benefits-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow-md);
}
.benefits-box .about-list { margin: 0; }
.benefits-aside {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.benefits-aside .hero-stat-num { font-size: 40px; }
.benefits-aside p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.benefits-aside .btn { margin-top: 22px; }

.related-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.related-chips a {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 12px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.related-chips a:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.45);
  color: var(--accent-2);
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .benefits-box { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 130px 0 56px; }
  .page-hero .hero-cta .btn { width: auto; }
}

/* ---------- Legal / prose pages ---------- */
.prose-wrap { max-width: 780px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  margin: 38px 0 14px;
}
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 22px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent-2); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose-update {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 13.5px; color: var(--muted);
  margin-top: 36px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; }
}
