/* ============================================================
   CXPERIUM — Yeni Tasarım
   Twilio × Gupshup esintili, teknolojik ve modern
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --ink: #0b1220;
  --ink-2: #3c4657;
  --muted: #64748b;
  --line: #e6eaf1;

  --green: #25d366;
  --green-dark: #128c5e;
  --teal: #22d3ee;
  --violet: #7c5cff;
  --pink: #f472b6;
  --amber: #fbbf24;

  --grad-brand: linear-gradient(115deg, #25d366, #22d3ee 55%, #7c5cff);
  --dark: #0b1220;
  --dark-2: #101a30;

  --font-head: "Inter Tight", -apple-system, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, .06), 0 4px 12px rgba(11, 18, 32, .05);
  --shadow-lg: 0 12px 40px rgba(11, 18, 32, .14);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.in { opacity: 1; transform: none; }
.d-1 { transition-delay: .12s; }
.d-2 { transition-delay: .24s; }
.d-3 { transition-delay: .36s; }
.d-4 { transition-delay: .48s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; font-family: var(--font-body);
  padding: 11px 20px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }
.btn-primary {
  background: linear-gradient(115deg, #f0323f, #b136d8 55%, #3b6cf6);
  background-size: 160% 100%;
  background-position: 90% 0;
  color: #fff;
  box-shadow: 0 8px 24px rgba(177, 54, 216, .35);
}
.btn-primary:hover { background-position: 100% 0; box-shadow: 0 12px 32px rgba(59, 108, 246, .45); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: rgba(255, 255, 255, .7); }
.btn-ghost:hover { border-color: #c6cede; background: #fff; }
.btn-wa { background: rgba(37, 211, 102, .12); color: #0f7a43; border-color: rgba(37, 211, 102, .35); }
.btn-wa:hover { background: rgba(37, 211, 102, .2); }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 8px 30px rgba(0, 0, 0, .25); }
.btn-outline { color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

.text-link { font-weight: 600; color: var(--violet); font-size: 15px; }
.text-link:hover { text-decoration: underline; }

/* ---------- Announcement ---------- */
.announce { background: var(--dark); color: #cbd5e1; font-size: 13.5px; position: relative; z-index: 60; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 24px; }
.announce-badge {
  background: var(--grad-brand); color: #06121f; font-weight: 700; font-size: 11px;
  padding: 2px 9px; border-radius: 99px; letter-spacing: .04em; text-transform: uppercase;
}
.announce a { color: #5eead4; font-weight: 600; }
.announce a:hover { color: #99f6e4; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
/* Blur, pseudo-elemente uygulanır: .nav üzerinde backdrop-filter olsaydı,
   içindeki position:fixed mobil panel viewport yerine .nav'a sabitlenirdi */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11, 18, 32, .06); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 44px; width: auto; display: block; }
@media (max-width: 640px) { .brand-logo { height: 38px; } }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 21px;
  letter-spacing: .015em; color: #3a4150;
}
.brand-name.light { color: #fff; }
.brand-cx {
  background: linear-gradient(115deg, #f0323f 0%, #b136d8 55%, #3b6cf6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  padding: 8px 14px; border-radius: 10px; background: none; border: none;
  font-family: var(--font-body); cursor: pointer; transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--bg-soft); color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* Dropdown / mega menu */
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: -12px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 18px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.mega { display: flex; gap: 28px; width: 640px; }
.mega-col { flex: 1.6; display: flex; flex-direction: column; gap: 2px; }
.mega-col:last-child { flex: 1; border-left: 1px solid var(--line); padding-left: 24px; }
.mega-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.mega-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 10px; border-radius: 12px; transition: background .15s;
}
.mega-link:hover { background: var(--bg-soft); }
.mega-link strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.mega-link small { display: block; font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.mega-link.sm { font-size: 14px; font-weight: 500; color: var(--ink-2); padding: 7px 10px; }
.mega-link.sm:hover { color: var(--ink); }
.mega-ico {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; color: #fff;
}
.mega-ico svg { width: 18px; height: 18px; }

/* Icon gradients */
.grad-a { background: linear-gradient(135deg, #25d366, #0ea5e9); }
.grad-b { background: linear-gradient(135deg, #7c5cff, #22d3ee); }
.grad-c { background: linear-gradient(135deg, #f472b6, #7c5cff); }
.grad-d { background: linear-gradient(135deg, #fbbf24, #f472b6); }
.grad-e { background: linear-gradient(135deg, #22d3ee, #16a34a); }
.grad-f { background: linear-gradient(135deg, #60a5fa, #7c5cff); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb-1 { width: 520px; height: 520px; background: #1c8a4d; top: -180px; left: -140px; animation: drift 14s ease-in-out infinite alternate; }
.orb-2 { width: 460px; height: 460px; background: #4c3bb4; bottom: -200px; right: -80px; animation: drift 18s ease-in-out infinite alternate-reverse; }
.orb-3 { width: 300px; height: 300px; background: #0e7490; top: 30%; left: 46%; opacity: .35; animation: drift 16s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(60px, -40px) scale(1.12); } }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center; padding-top: 84px; padding-bottom: 110px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: #cbd5e1;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .18);
  padding: 8px 16px; border-radius: 99px; margin-bottom: 26px;
}
.hero-chip strong { color: #fff; font-weight: 700; }
.meta-badge-img {
  display: block; width: 158px; height: auto; margin-bottom: 28px;
  border-radius: 12px; box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}
.meta-inf { flex: none; width: 28px; height: 19px; }
.t-badge .meta-inf { width: 25px; height: 17px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.hero h1 { font-size: clamp(40px, 5.4vw, 64px); font-weight: 700; }
.accent-dot { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 22px; font-size: 18px; color: #b6c2d4; max-width: 520px; }
.hero-sub strong { color: #e2e8f0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero .btn-wa { background: rgba(37, 211, 102, .14); color: #6ee7a0; border-color: rgba(37, 211, 102, .4); }
.hero .btn-wa:hover { background: rgba(37, 211, 102, .22); }

.hero-stats { display: flex; align-items: center; gap: 26px; margin-top: 48px; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; }
.hstat-num { font-family: var(--font-head); font-size: 30px; font-weight: 700; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hstat-label { font-size: 13px; color: #8b99ad; margin-top: 2px; }
.hstat-div { width: 1px; height: 40px; background: rgba(255, 255, 255, .12); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 322px; border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #2a3550, #131c31);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55), inset 0 1px 1px rgba(255, 255, 255, .15);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #131c31; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  border-radius: 34px; overflow: hidden; background: #0d1421;
  display: flex; flex-direction: column; height: 588px;
}
.chat-header {
  display: flex; align-items: center; gap: 11px;
  padding: 34px 16px 13px; background: #16202f; border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.chat-avatar { width: 38px; height: 38px; }
.chat-avatar svg { width: 100%; height: 100%; }
.chat-name { font-size: 14.5px; font-weight: 600; color: #f1f5f9; line-height: 1.25; }
.chat-status { font-size: 12px; color: #7dd3a7; display: flex; align-items: center; gap: 5px; }
.online-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.chat-verified { width: 20px; height: 20px; margin-left: auto; }

.chat-body {
  flex: 1; padding: 16px 13px; display: flex; flex-direction: column; gap: 9px;
  background:
    radial-gradient(circle at 20% 15%, rgba(37, 211, 102, .05), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(124, 92, 255, .07), transparent 45%),
    #0d1421;
  overflow: hidden;
}
.chat-day {
  align-self: center; font-size: 10.5px; color: #64748b;
  background: rgba(255, 255, 255, .06); padding: 3px 11px; border-radius: 99px; margin-bottom: 4px;
}
.msg {
  max-width: 86%; font-size: 12.8px; line-height: 1.45; padding: 9px 12px;
  border-radius: 14px; color: #e2e8f0;
  opacity: 0; transform: translateY(12px) scale(.96);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2, .8, .3, 1.15);
}
.msg.show { opacity: 1; transform: none; }
.msg-in { align-self: flex-start; background: #1d2a3d; border-bottom-left-radius: 4px; }
.msg-out { align-self: flex-end; background: #0f6a44; border-bottom-right-radius: 4px; }
.msg strong { color: #fff; }
.msg-card {
  display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08); border-radius: 10px; padding: 8px 10px; margin-bottom: 7px;
}
.msg-card-img { font-size: 22px; width: 38px; height: 38px; display: grid; place-items: center; background: rgba(37, 211, 102, .15); border-radius: 8px; }
.msg-card strong { display: block; font-size: 12.5px; }
.msg-card small { color: #8b99ad; font-size: 11px; }
.msg-typing { display: inline-flex; gap: 4px; align-self: flex-start; background: #1d2a3d; padding: 12px 14px; border-radius: 14px; border-bottom-left-radius: 4px; }
.msg-typing span { width: 6px; height: 6px; border-radius: 50%; background: #64748b; animation: blink 1.2s infinite; }
.msg-typing span:nth-child(2) { animation-delay: .2s; }
.msg-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
.msg-typing.done { display: none; }

.chat-input {
  display: flex; align-items: center; gap: 10px;
  margin: 10px 13px 16px; padding: 9px 8px 9px 16px;
  background: #16202f; border-radius: 99px; font-size: 12.5px; color: #64748b;
}
.chat-send { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--green-dark); display: grid; place-items: center; }

/* Floating cards */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, .97); border-radius: 15px; padding: 11px 15px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .35); color: var(--ink);
  animation: float 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 13.5px; line-height: 1.3; }
.float-card small { color: var(--muted); font-size: 11.5px; }
.fc-ico { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.fc-ico svg { width: 17px; height: 17px; }
.fc-1 { top: 8%; left: -6%; animation-delay: .8s; }
.fc-2 { bottom: 20%; right: -8%; animation-delay: 1.6s; }
.fc-3 { bottom: -3%; left: 2%; animation-delay: 2.4s; }

/* ---------- Logos ---------- */
.logos { padding: 46px 0 40px; border-bottom: 1px solid var(--line); }
.logos-title { text-align: center; font-size: 13.5px; color: var(--muted); margin-bottom: 26px; letter-spacing: .02em; }
.logos-track { display: flex; justify-content: center; align-items: center; gap: 54px; flex-wrap: wrap; }
.logo-item {
  font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: .06em;
  color: #9aa7ba; transition: color .2s, transform .2s; cursor: default;
}
.logo-item:hover { color: var(--ink); transform: translateY(-2px); }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--violet); background: rgba(124, 92, 255, .08);
  border: 1px solid rgba(124, 92, 255, .2); padding: 5px 14px; border-radius: 99px; margin-bottom: 18px;
}
.eyebrow.light { color: #5eead4; background: rgba(94, 234, 212, .08); border-color: rgba(94, 234, 212, .25); }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--muted); }
.grad-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #d5dce8; }
.bento-card h3 { font-size: 20px; font-weight: 700; margin: 18px 0 9px; }
.bento-card p { font-size: 14.5px; color: var(--muted); }
.b-lg { grid-row: span 2; display: flex; flex-direction: column; }
.b-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff; }
.b-ico svg { width: 22px; height: 22px; }

.b-visual { margin-top: auto; padding-top: 26px; }
.mini-campaign { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.mc-row { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.mc-chip { font-size: 11.5px; font-weight: 600; color: var(--muted); background: #fff; border: 1px solid var(--line); padding: 4px 11px; border-radius: 99px; }
.mc-chip.on { color: #fff; background: var(--ink); border-color: var(--ink); }
.mc-bar { position: relative; height: 30px; margin-top: 8px; background: #e9edf4; border-radius: 8px; overflow: hidden; }
.mc-bar i {
  position: absolute; inset: 0; width: var(--w);
  background: linear-gradient(90deg, #25d366, #0ea5e9); border-radius: 8px;
  transform-origin: left; animation: grow 1.2s cubic-bezier(.2, .7, .3, 1) both;
}
@keyframes grow { from { transform: scaleX(0); } }
.mc-bar span { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 11.5px; font-weight: 600; color: #0b1220; z-index: 1; }

/* Code card */
.b-code { grid-column: span 2; background: var(--dark); border-color: #1d2a44; color: #fff; }
.b-code:hover { border-color: #31415f; }
.b-code h3 { color: #fff; }
.b-code p { color: #93a2b8; }
.code-head { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.code-dot { width: 11px; height: 11px; border-radius: 50%; }
.code-dot.r { background: #f87171; } .code-dot.y { background: #fbbf24; } .code-dot.g { background: #34d399; }
.code-file { margin-left: 8px; font-family: var(--font-mono); font-size: 12px; color: #64748b; }
.code-body {
  background: #060b16; border: 1px solid #1b2740; border-radius: 12px;
  padding: 18px; overflow-x: auto; font-family: var(--font-mono);
  font-size: 12.8px; line-height: 1.7; color: #c9d4e5;
}
.c-cmd { color: #5eead4; } .c-str { color: #86efac; } .c-com { color: #4d5d77; }
.b-code .text-link { color: #5eead4; display: inline-block; margin-top: 12px; }

/* ---------- Dark section / steps ---------- */
.section-dark { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.dark-glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 460px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 92, 255, .22), transparent 65%);
  pointer-events: none;
}
.on-dark { color: #fff; }
.on-dark-sub { color: #93a2b8 !important; }
.steps { display: flex; align-items: stretch; gap: 20px; position: relative; }
.step {
  flex: 1; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius); padding: 32px; transition: background .25s, border-color .25s, transform .25s;
}
.step:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .2); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px; letter-spacing: .06em;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: #93a2b8; }
.step-arrow { align-self: center; color: #3a4a68; font-size: 22px; flex: none; }

/* ---------- Sectors ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s; position: relative;
}
.sector-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s;
}
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sector-card:hover::after { opacity: 1; }
.s-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.s-ico svg { width: 22px; height: 22px; }
.sector-card h3 { font-size: 19px; margin-bottom: 8px; }
.sector-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.s-link { font-size: 14px; font-weight: 600; color: var(--violet); transition: gap .2s; }

/* ---------- Testimonial ---------- */
.section-tint { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-mark { width: 44px; height: 44px; color: #cdd6e4; margin: 0 auto 22px; }
.quote-wrap blockquote { font-family: var(--font-head); font-size: clamp(21px, 2.6vw, 28px); font-weight: 500; line-height: 1.4; letter-spacing: -0.01em; }
.quote-wrap blockquote strong { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote-who { margin-top: 18px; font-size: 14px; color: var(--muted); }
.trust-badges { display: flex; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.t-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
  color: var(--ink-2); background: #fff; border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 99px;
}
.t-badge svg { width: 16px; height: 16px; color: var(--green-dark); }

/* ---------- CTA ---------- */
.cta { padding: 100px 0; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  background: var(--dark); border-radius: 28px; padding: 80px 40px;
  color: #fff;
}
.cta-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 211, 102, .25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(124, 92, 255, .3), transparent 45%),
    radial-gradient(circle at 60% 10%, rgba(34, 211, 238, .15), transparent 40%);
  pointer-events: none;
}
.cta-card h2 { position: relative; font-size: clamp(30px, 4vw, 46px); }
.cta-card > p { position: relative; margin-top: 16px; font-size: 17px; color: #b6c2d4; }
.cta-actions { position: relative; display: flex; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.cta-note { position: relative; margin-top: 24px; font-size: 13.5px; color: #7e8ca1; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #93a2b8; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-brand p { font-size: 14px; max-width: 240px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  color: #b6c2d4; transition: background .2s, color .2s, transform .2s;
}
.socials a:hover { background: rgba(255, 255, 255, .12); color: #fff; transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }
.footer-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #e2e8f0; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-addr { font-size: 13px; line-height: 1.6; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px; color: #64748b;
}
.footer-bottom a { color: #93a2b8; font-weight: 600; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Referans marquee ---------- */
.ref-marquee {
  position: relative; overflow: hidden; direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 6px 0;
}
.ref-marquee + .ref-marquee { margin-top: 14px; }
.ref-track {
  display: flex; align-items: center; gap: 14px; width: max-content;
  animation: marq 55s linear infinite;
}
.ref-track.rev { animation-direction: reverse; }
.ref-marquee:hover .ref-track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.ref-chip {
  flex: none; display: inline-flex; align-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  letter-spacing: .03em; color: #5b6675; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 20px; transition: color .2s, border-color .2s, transform .2s;
}
.ref-chip:hover { color: var(--ink); border-color: #c6cede; transform: translateY(-2px); }

/* ---------- Dil seçici ---------- */
.lang-item .nav-link { font-weight: 600; }
.lang-item .nav-link svg.globe { width: 16px; height: 16px; }
.drop-lang { min-width: 170px; display: flex; flex-direction: column; gap: 2px; padding: 10px; left: auto; right: -8px; }
.drop-lang a {
  display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500;
  color: var(--ink-2); padding: 9px 12px; border-radius: 10px; transition: background .15s, color .15s;
}
.drop-lang a:hover { background: var(--bg-soft); color: var(--ink); }
.drop-lang a.active { color: var(--violet); font-weight: 600; background: rgba(124, 92, 255, .07); }
.drop-lang .lang-code {
  font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .05em;
  width: 28px; height: 22px; display: grid; place-items: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 6px;
}

/* ---------- Mobil menü overlay ---------- */
/* Görünmez overlay: sayfayı karartmaz, yalnızca dışarı tıklayınca menüyü kapatır.
   z-index nav'dan (50) DÜŞÜK olmalı — yoksa nav'ın stacking context'i yüzünden
   paneli de örtüp içindeki tüm dokunuşları yutar */
.nav-overlay {
  position: fixed; inset: 0; z-index: 40; background: transparent;
  visibility: hidden;
}
.nav-overlay.show { visibility: visible; }

/* ---------- Alt sayfa: hero ---------- */
.page-hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.page-hero-inner { position: relative; padding: 72px 24px 84px; max-width: var(--container); margin: 0 auto; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #7e8ca1; margin-bottom: 26px; flex-wrap: wrap; }
.crumbs a { color: #a5b2c5; transition: color .15s; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .5; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 700; max-width: 720px; }
.page-hero .hero-sub { font-size: 17.5px; }
.page-hero .hero-actions { margin-top: 30px; }
.page-hero .hero-stats { margin-top: 40px; }

/* ---------- Alt sayfa: split bölümler ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split + .split { margin-top: 96px; }
.split.flip .split-visual { order: -1; }
.split h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; margin-bottom: 16px; }
.split > div > p { font-size: 16px; color: var(--muted); margin-bottom: 22px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.checks li { position: relative; padding-left: 34px; font-size: 15px; color: var(--ink-2); }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 7px; font-size: 12px; font-weight: 700;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #25d366, #0ea5e9);
}
.checks li strong { color: var(--ink); }

/* Split görsel: sohbet örneği kartı */
.snippet {
  background: var(--dark); border-radius: 22px; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.snippet::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 10%, rgba(124, 92, 255, .22), transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(37, 211, 102, .16), transparent 50%);
}
.snippet .msg { opacity: 1; transform: none; position: relative; font-size: 13.5px; max-width: 92%; }
.snippet-label {
  position: relative; align-self: center; font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: #7e8ca1; background: rgba(255, 255, 255, .07);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 8px;
}
.snippet .stat-chip {
  position: relative; align-self: flex-start; margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .95); color: var(--ink); border-radius: 12px;
  padding: 9px 14px; font-size: 12.5px; font-weight: 600;
}
.snippet .stat-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 24px; margin-bottom: 6px; }
.form-card > p { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px;
  background: var(--bg-soft); outline: none; transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--violet); background: #fff; box-shadow: 0 0 0 3px rgba(124, 92, 255, .12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.form-status { margin-top: 16px; padding: 12px 16px; border-radius: 11px; font-size: 14px; font-weight: 600; }
.form-status.ok { background: rgba(37, 211, 102, .1); border: 1px solid rgba(37, 211, 102, .35); color: #0f7a43; }
.form-status.err { background: rgba(240, 50, 63, .08); border: 1px solid rgba(240, 50, 63, .3); color: #b3222c; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.info-stack { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  transition: transform .2s, box-shadow .2s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card .b-ico { width: 42px; height: 42px; flex: none; }
.info-card strong { display: block; font-size: 15px; margin-bottom: 3px; }
.info-card p, .info-card a.val { font-size: 14px; color: var(--muted); }
.info-card a.val:hover { color: var(--violet); }

/* ---------- Dokümantasyon ---------- */
.docs-layout { display: grid; grid-template-columns: 230px 1fr; gap: 56px; align-items: start; }
.docs-nav {
  position: sticky; top: 96px;
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid var(--line);
}
.docs-nav a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 16px; margin-left: -1px; border-left: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.docs-nav a:hover { color: var(--ink); }
.docs-nav a.on { color: var(--violet); border-left-color: var(--violet); font-weight: 600; }
.docs-nav a.docs-back {
  font-weight: 700; color: var(--violet); font-size: 13px;
  padding-bottom: 13px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.docs-nav a.docs-back:hover { color: var(--ink); }
.doc-section { scroll-margin-top: 100px; }
.doc-section + .doc-section { margin-top: 72px; }
.doc-section > h2 { font-size: 27px; font-weight: 700; margin-bottom: 10px; }
.doc-section > .doc-lead { font-size: 15.5px; color: var(--muted); margin-bottom: 26px; max-width: 640px; }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.doc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #d5dce8; }
.doc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 9px; }
.doc-card p { font-size: 13.5px; color: var(--muted); }
.doc-card .count {
  margin-left: auto; flex: none; font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--violet); background: rgba(124, 92, 255, .08); border: 1px solid rgba(124, 92, 255, .2);
  padding: 2px 9px; border-radius: 99px; white-space: nowrap;
}
.doc-steps { list-style: none; counter-reset: dstep; display: flex; flex-direction: column; gap: 14px; }
.doc-steps li {
  counter-increment: dstep; position: relative; padding: 18px 20px 18px 64px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px;
}
.doc-steps li::before {
  content: counter(dstep, decimal-leading-zero); position: absolute; left: 20px; top: 20px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.doc-steps strong { display: block; font-size: 15px; margin-bottom: 3px; }
.doc-steps p { font-size: 13.5px; color: var(--muted); }
.doc-code { background: var(--dark); border: 1px solid #1d2a44; border-radius: 16px; padding: 22px; }
.doc-code + .doc-code { margin-top: 16px; }
.doc-code .code-body { margin-top: 0; }
.doc-code .code-head { margin-bottom: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0 20px; transition: border-color .2s;
}
.faq details + details { margin-top: 10px; }
.faq details[open] { border-color: #c9b8ff; }
.faq summary {
  cursor: pointer; list-style: none; font-size: 15px; font-weight: 600;
  padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-head); font-size: 20px; color: var(--violet); flex: none; }
.faq details[open] summary::after { content: "−"; }
.faq details > p { font-size: 14px; color: var(--muted); padding-bottom: 18px; }
[dir="rtl"] .docs-nav { border-left: none; border-right: 1px solid var(--line); }
[dir="rtl"] .docs-nav a { margin-left: 0; margin-right: -1px; border-left: none; border-right: 2px solid transparent; padding: 8px 16px; }
[dir="rtl"] .docs-nav a.on { border-right-color: var(--violet); }
[dir="rtl"] .doc-steps li { padding: 18px 64px 18px 20px; }
[dir="rtl"] .doc-steps li::before { left: auto; right: 20px; }
[dir="rtl"] .doc-card .count { margin-left: 0; margin-right: auto; }
@media (max-width: 900px) {
  .docs-layout { grid-template-columns: 1fr; gap: 28px; }
  .docs-nav { position: static; flex-direction: row; flex-wrap: wrap; border-left: none; gap: 6px; }
  .docs-nav a { border: 1px solid var(--line); border-radius: 99px; padding: 7px 14px; margin: 0; font-size: 13px; }
  .docs-nav a.on { border-color: var(--violet); }
  .docs-nav a.docs-back { color: #fff; background: var(--violet); border: 1px solid var(--violet); border-radius: 99px; padding: 7px 14px; margin: 0; }
  .docs-nav a.docs-back:hover { color: #fff; opacity: .88; }
  [dir="rtl"] .docs-nav { border-right: none; }
  [dir="rtl"] .docs-nav a { border: 1px solid var(--line); margin: 0; }
  [dir="rtl"] .docs-nav a.on { border-color: var(--violet); }
  .doc-grid { grid-template-columns: 1fr; }
}

/* ---------- Changelog ---------- */
.cl-wrap { max-width: 760px; margin: 0 auto; }
.cl-year {
  font-size: 26px; font-weight: 700; margin: 56px 0 26px;
  display: flex; align-items: center; gap: 14px;
}
.cl-year:first-child { margin-top: 0; }
.cl-year::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, #b136d8, var(--line) 120px);
}
.cl-item { position: relative; padding-bottom: 34px; }
.cl-item:last-child { padding-bottom: 8px; }
.cl-item::before {
  content: ""; position: absolute; left: -30px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, #f0323f, #b136d8 60%, #3b6cf6);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--line);
}
.cl-date {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  color: var(--muted); letter-spacing: .03em; display: block; margin-bottom: 8px;
}
.cl-item ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cl-item li { font-size: 15px; color: var(--ink-2); display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.cl-tag {
  flex: none; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 2px 9px; border-radius: 99px; position: relative; top: -1px;
}
.tag-new { color: #0f7a43; background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .3); }
.tag-fix { color: #b3222c; background: rgba(240, 50, 63, .08); border: 1px solid rgba(240, 50, 63, .25); }
.tag-imp { color: #4c3bb4; background: rgba(124, 92, 255, .1); border: 1px solid rgba(124, 92, 255, .28); }
[dir="rtl"] .timeline { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .timeline::before { left: auto; right: 5px; }
[dir="rtl"] .cl-item::before { left: auto; right: -30px; }

/* ============================================================
   RTL (Arapça)
   ============================================================ */
[dir="rtl"] { --font-head: "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, system-ui, sans-serif; }
[dir="rtl"] body, [dir="rtl"] .btn { font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { letter-spacing: 0; }
[dir="rtl"] .dropdown { left: auto; right: -12px; }
[dir="rtl"] .drop-lang { right: auto; left: -8px; }
[dir="rtl"] .mega-col:last-child { border-left: none; padding-left: 0; border-right: 1px solid var(--line); padding-right: 24px; }
[dir="rtl"] .checks li { padding-left: 0; padding-right: 34px; }
[dir="rtl"] .checks li::before { left: auto; right: 0; }
[dir="rtl"] .code-body, [dir="rtl"] .code-head { direction: ltr; text-align: left; }
[dir="rtl"] .mc-bar span { left: auto; right: 12px; }
[dir="rtl"] .mc-bar i { transform-origin: right; }
[dir="rtl"] .chat-verified { margin-left: 0; margin-right: auto; }
[dir="rtl"] .chat-send { margin-left: 0; margin-right: auto; }
[dir="rtl"] .nav-cta { margin-left: 0; margin-right: auto; }
[dir="rtl"] .hamburger { margin-left: 0; margin-right: auto; }
[dir="rtl"] .msg-in { border-bottom-left-radius: 14px; border-bottom-right-radius: 4px; }
[dir="rtl"] .msg-out { border-bottom-right-radius: 14px; border-bottom-left-radius: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .b-code { grid-column: span 2; }
  .fc-1 { left: 0; }
  .fc-2 { right: 0; }

  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
    flex-direction: column; align-items: flex-start; gap: 8px;
    width: min(320px, 85vw); padding: 90px 28px 28px;
    background: #fff; box-shadow: -24px 0 70px rgba(11, 18, 32, .28);
    transform: translateX(105%); transition: transform .3s cubic-bezier(.2, .7, .3, 1);
    overflow-y: auto;
  }
  .nav-links.open { transform: none; }
  .nav-link { width: 100%; justify-content: space-between; font-size: 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 10px; display: none; }
  .nav-item { width: 100%; }
  .nav-item.expanded .dropdown { display: block; }
  .mega { flex-direction: column; width: 100%; gap: 10px; }
  .mega-col:last-child { border-left: none; padding-left: 0; }
  .nav-cta { display: none; }
  .hamburger { display: block; position: relative; z-index: 80; }
  [dir="rtl"] .nav-links { right: auto; left: 0; transform: translateX(-105%); box-shadow: 20px 0 60px rgba(0, 0, 0, .18); }
  [dir="rtl"] .nav-links.open { transform: none; }
  [dir="rtl"] .mega-col:last-child { border-right: none; padding-right: 0; }
  .drop-lang { min-width: 0; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 80px; gap: 70px; }
  .hero-sub { max-width: none; }
  .hero-visual { margin-top: 10px; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.flip .split-visual { order: 0; }
  .split + .split { margin-top: 70px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .bento { grid-template-columns: 1fr; }
  .b-code { grid-column: span 1; }
  .sector-grid { grid-template-columns: 1fr; }
  .hstat-div { display: none; }
  .hero-stats { gap: 20px; }
  .phone { width: 290px; }
  .float-card { padding: 9px 12px; }
  .float-card strong { font-size: 12px; }
  .float-card small { font-size: 10.5px; }
  .fc-1 { top: 4%; left: -2%; }
  .fc-2 { bottom: 16%; right: -2%; }
  .fc-3 { bottom: -4%; left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-card { padding: 60px 22px; }
  .announce p { font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .page-hero-inner { padding: 52px 24px 64px; }
}
