/* ==============================================
   KorTaksi — Main Stylesheet
   kortaksi.com
   ============================================== */

/* ---- Reset & Custom Properties ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080C14;
  --bg2:      #0D1320;
  --bg3:      #121a2a;
  --card:     #101726;
  --card2:    #18212f;
  --border:   rgba(255,255,255,0.07);
  --gold:     #F5B927;
  --gold-d:   #c99214;
  --gold-glow:rgba(245,185,39,0.14);
  --green:    #10B981;
  --red:      #ef4444;
  --orange:   #f97316;
  --text:     #f0f4fa;
  --txt-muted:#8898aa;
  --muted:    #8898aa;
  --dim:      #445060;
  --r:        14px;
  --r-lg:     22px;
  --shadow:   0 4px 28px rgba(0,0,0,.45);
  --shadow-lg:0 8px 48px rgba(0,0,0,.55);
  --ease:     0.24s cubic-bezier(0.4,0,0.2,1);
  --font:     'Inter', system-ui, -apple-system, sans-serif;
  --max:      1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); color: inherit; }

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

.grad {
  background: linear-gradient(130deg, #F5B927 10%, #FF7A00 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.93rem;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), opacity var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:active { transform: scale(0.97) !important; }

.btn-gold {
  background: linear-gradient(135deg, #F5B927 0%, #FF7A00 100%);
  color: #0d0d0d;
  box-shadow: 0 4px 22px rgba(245,185,39,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,185,39,.48);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 22px rgba(37,211,102,.28);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.28);
}
.btn-outline:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}

.btn-xl { padding: 15px 36px; font-size: 1.05rem; }

/* ==============================================
   SHARED SECTION STYLES
   ============================================== */
.section { padding: 100px 0; }
.section--dark { background: var(--bg2); }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.tag {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid rgba(245,185,39,.22);
  padding: 5px 15px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==============================================
   FLOATING BUTTONS
   ============================================== */
.float-btn {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: var(--shadow);
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn:hover { transform: scale(1.12); }

.float-wa {
  bottom: 82px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
}
.float-phone {
  bottom: 20px;
  background: linear-gradient(135deg, #F5B927, #FF7A00);
  color: #0d0d0d;
  animation: ring-pulse 2.2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,185,39,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(245,185,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,185,39,0); }
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  background: rgba(8,12,20,.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-svg { width: 44px; height: 26px; }
.logo-text {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--text);
}
.logo-text em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta { padding: 9px 20px; font-size: 0.86rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 902;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.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;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 72% 12%, rgba(245,185,39,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 18% 8%,  rgba(59,130,246,.13) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 50% 40%, rgba(245,185,39,.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 10% 90%, rgba(59,130,246,.05) 0%, transparent 50%),
    radial-gradient(ellipse 35% 30% at 85% 75%, rgba(168,85,247,.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

/* Animated floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb--1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -60px;
  background: radial-gradient(circle, rgba(245,185,39,.22) 0%, transparent 70%);
  animation: orb-drift-1 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 420px;
  height: 420px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(59,130,246,.16) 0%, transparent 70%);
  animation: orb-drift-2 15s ease-in-out infinite;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  top: 60px;
  left: 38%;
  background: radial-gradient(circle, rgba(245,185,39,.11) 0%, transparent 70%);
  animation: orb-drift-3 9s ease-in-out infinite;
}

.hero-orb--4 {
  width: 260px;
  height: 260px;
  bottom: 80px;
  right: 25%;
  background: radial-gradient(circle, rgba(168,85,247,.1) 0%, transparent 70%);
  animation: orb-drift-1 11s ease-in-out infinite reverse;
  filter: blur(60px);
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, 40px) scale(1.08); }
  66%       { transform: translate(-20px, 20px) scale(.95); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, -30px) scale(1.1); }
  70%       { transform: translate(-10px, 40px) scale(.92); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-25px, 30px); }
}

/* Tiny floating particles (JS-rendered) */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.h-particle {
  position: absolute;
  border-radius: 50%;
  animation: particle-float linear infinite;
  opacity: 0;
}
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-120px) translateX(var(--dx)); opacity: 0; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3) 100%);
}

.hero-buildings {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
}
.hero-buildings svg { width: 100%; height: 100%; }

.hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content { max-width: 580px; flex-shrink: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(16,185,129,.09);
  border: 1px solid rgba(16,185,129,.25);
  color: #10B981;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-trust span svg { color: var(--gold); flex-shrink: 0; }

.hero-chat-wrap {
  flex-shrink: 0;
  width: 44%;
  max-width: 420px;
  animation: float 4.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-chat {
  background: linear-gradient(145deg, #131e30, #0d1522);
  border: 1px solid rgba(245,185,39,.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,.55), 0 0 48px rgba(245,185,39,.06);
}

.hc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(245,185,39,.06);
  border-bottom: 1px solid rgba(245,185,39,.12);
}

.hc-avatar {
  width: 40px;
  height: 40px;
  background: rgba(245,185,39,.12);
  border: 1.5px solid rgba(245,185,39,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.hc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .2px;
}

.hc-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 500;
}

.hc-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.6s ease-in-out infinite;
}

.hc-body {
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.83rem;
  line-height: 1.55;
  position: relative;
}

.hc-msg--right {
  align-self: flex-end;
  background: rgba(245,185,39,.13);
  border: 1px solid rgba(245,185,39,.22);
  border-bottom-right-radius: 4px;
  color: var(--text);
}

.hc-msg--left {
  align-self: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom-left-radius: 4px;
  color: var(--text);
}

.hc-time {
  display: block;
  font-size: 0.67rem;
  color: var(--muted);
  margin-top: 4px;
  text-align: right;
  opacity: .7;
}

.hc-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
}

.hc-typing span {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing-bounce 1.4s ease-in-out infinite;
}
.hc-typing span:nth-child(2) { animation-delay: .2s; }
.hc-typing span:nth-child(3) { animation-delay: .4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

.hc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.2);
}

.hc-footer input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 0.83rem;
  color: var(--text);
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.hc-footer input:focus     { border-color: rgba(245,185,39,.45); }
.hc-footer input::placeholder { color: var(--muted); }

.hc-footer button {
  width: 38px;
  height: 38px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.hc-footer button:hover {
  background: #1ebe5d;
  transform: scale(1.08);
}

/* Inner page hero (non-home) */
.hero--inner {
  min-height: auto;
  padding: 140px 0 70px;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}
.hero--inner .hero-bg { display: none; }
.inner-hero-text { max-width: 680px; }
.inner-hero-text .tag { margin-bottom: 14px; }
.inner-hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.inner-hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ==============================================
   BREADCRUMB
   ============================================== */
.breadcrumb-nav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  margin-top: 80px; /* navbar height */
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}
.breadcrumb-item { display: flex; align-items: center; }
.breadcrumb-item a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color var(--ease);
}
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.current span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}
.breadcrumb-sep {
  font-size: 0.75rem;
  color: var(--dim);
  margin: 0 7px;
  user-select: none;
}

/* ==============================================
   STATS BAR
   ============================================== */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--ease);
}
.stat:hover { background: rgba(245,185,39,.03); }
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.0;
  margin-bottom: 8px;
  letter-spacing: -1px;
  text-shadow: 0 0 50px rgba(245,185,39,.35);
}
.stat span {
  font-weight: 500;
  letter-spacing: .2px;
}

/* ==============================================
   SERVICES
   ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(245,185,39,.22); box-shadow: 0 12px 44px rgba(0,0,0,.3); }
.service-card:hover::before { opacity: 1; }

.service-card--hot {
  background: linear-gradient(145deg, rgba(245,185,39,.07) 0%, rgba(255,122,0,.03) 100%);
  border-color: rgba(245,185,39,.2);
}
.service-card--hot::before { opacity: 1; }

.hot-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, #F5B927, #FF7A00);
  color: #0d0d0d;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .3px;
}

.s-icon {
  width: 50px; height: 50px;
  background: var(--gold-glow);
  border: 1px solid rgba(245,185,39,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.s-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.s-price {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow);
  border-radius: 999px;
  padding: 4px 12px;
}

/* Advantage grid (services page) */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.adv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--ease), border-color var(--ease);
}
.adv-card:hover { transform: translateY(-4px); border-color: rgba(245,185,39,.2); }
.adv-icon {
  width: 40px; height: 40px;
  background: rgba(16,185,129,.12);
  color: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.adv-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.adv-card p  { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }
.srv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--ease), border-color var(--ease);
}
.srv-card:hover { transform: translateY(-4px); border-color: rgba(245,185,39,.2); }
.srv-icon { font-size: 1.6rem; margin-bottom: 12px; }

/* ==============================================
   HOW IT WORKS
   ============================================== */
.steps-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 26px;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(245,185,39,.25); }
.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p   { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.step-arrow {
  font-size: 2.4rem;
  color: var(--gold);
  opacity: .4;
  flex-shrink: 0;
  font-weight: 300;
}

/* ==============================================
   WHY US
   ============================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content .tag { margin-bottom: 12px; }
.why-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
}
.why-content > p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 30px;
}

.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-check {
  width: 24px; height: 24px;
  background: rgba(16,185,129,.12);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list li strong { display: block; font-size: 0.93rem; font-weight: 600; margin-bottom: 2px; }
.why-list li span   { font-size: 0.83rem; color: var(--muted); }

/* Price Compare */
.price-compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.pc-title    { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.pc-subtitle { font-size: 0.78rem; color: var(--muted); margin-bottom: 22px; }

.pc-bar-wrap { margin-bottom: 14px; }
.pc-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 5px; }
.pc-track { background: var(--bg); border-radius: 8px; overflow: hidden; height: 32px; }
.pc-bar {
  height: 100%;
  width: var(--w);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: width 1s ease;
}
.pc-bar--red    { background: linear-gradient(90deg, #dc2626, #ef4444); color: #fff; }
.pc-bar--orange { background: linear-gradient(90deg, #d97706, #f59e0b); color: #0d0d0d; }
.pc-bar--green  { background: linear-gradient(90deg, #059669, #10b981); color: #fff; }

.pc-note { font-size: 0.73rem; color: var(--dim); margin-top: 14px; line-height: 1.5; }

/* ==============================================
   PRICING
   ============================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.pricing-grid--full { grid-template-columns: repeat(2, 1fr); gap: 18px; }

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: transform var(--ease), border-color var(--ease);
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(245,185,39,.2); }
.price-card--featured {
  background: linear-gradient(145deg, rgba(245,185,39,.06), rgba(255,122,0,.025));
  border-color: rgba(245,185,39,.2);
}
.price-card--lg { padding: 28px; }
.pr-route  { font-size: 0.84rem; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.pr-amount { font-size: 1.45rem; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.pr-km     { font-size: 0.76rem; color: var(--dim); }

.pricing-foot {
  text-align: center;
  font-size: 0.83rem;
  color: var(--dim);
}
.pricing-foot a { color: var(--gold); font-weight: 600; }
.pricing-foot a:hover { text-decoration: underline; }

/* Comparison table (pricing page) */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0 auto;
  max-width: 820px;
}
.ct-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 1.2fr;
  gap: 0;
}
.ct-row > div {
  padding: 16px 20px;
  font-size: 0.87rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.ct-row > div:last-child { border-right: none; }
.ct-head { background: var(--card2); font-weight: 700; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.ct-bad  { background: rgba(239,68,68,.04); border-top: 1px solid var(--border); }
.ct-mid  { background: rgba(245,158,11,.04); border-top: 1px solid var(--border); }
.ct-good { background: rgba(16,185,129,.05); border-top: 1px solid var(--border); }
.ct-good div { color: var(--green); }

/* Info blocks (pricing page) */
.info-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.info-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.info-block p  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.info-block--highlight { background: linear-gradient(145deg, rgba(245,185,39,.06), transparent); border-color: rgba(245,185,39,.18); }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==============================================
   DISTRICTS
   ============================================== */
.district-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.dtab {
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.dtab:hover { color: var(--text); background: rgba(255,255,255,.04); }
.dtab.active {
  background: linear-gradient(135deg, #F5B927, #FF7A00);
  color: #0d0d0d;
  border-color: transparent;
}

/* Home page JS-driven grid */
.district-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  min-height: 160px;
}

/* Full PHP-driven grid */
.district-panel { display: none; }
.district-panel.active { display: block; }
.district-grid-full {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.d-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.d-item svg { flex-shrink: 0; color: var(--gold); }
.d-item:hover { color: var(--gold); border-color: rgba(245,185,39,.2); background: var(--card2); }

/* District detail page */
.ilce-info-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.ilce-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 14px;
  color: var(--text);
}
.ilce-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.ilce-cta-card {
  background: var(--card);
  border: 1px solid rgba(245,185,39,.2);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cta-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.ilce-cta-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.cta-card-note { font-size: 0.75rem; color: var(--dim); text-align: center; margin-top: 10px; }

/* ==============================================
   REVIEWS — SLIDER
   ============================================== */
.reviews-slider { position: relative; }
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slider-track .review-card {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 0;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--ease), border-color var(--ease);
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(245,185,39,.15); }
.rv-stars  { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #F5B927, #FF7A00);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0d0d0d;
  flex-shrink: 0;
}
.rv-author strong { display: block; font-size: 0.88rem; font-weight: 600; }
.rv-author span   { font-size: 0.78rem; color: var(--dim); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.sl-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  flex-shrink: 0;
  cursor: pointer;
}
.sl-btn:hover { background: var(--gold); color: #0d0d0d; border-color: var(--gold); box-shadow: 0 4px 20px rgba(245,185,39,.35); }
.sl-dots { display: flex; gap: 8px; align-items: center; }
.sl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dim);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  padding: 0;
}
.sl-dot.active { width: 26px; border-radius: 4px; background: var(--gold); }

/* ==============================================
   SEO CONTENT
   ============================================== */
.seo-content {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.seo-article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  transition: border-color var(--ease);
}
.seo-article:hover { border-color: rgba(245,185,39,.15); }
.seo-article h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; color: var(--text); line-height: 1.4; }
.seo-article p  { font-size: 0.87rem; color: var(--muted); line-height: 1.82; margin-bottom: 12px; }
.seo-article p:last-child { margin-bottom: 0; }
.seo-article a  { color: var(--gold); }

/* ==============================================
   KEYWORD TAGS
   ============================================== */
.kw-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.kw-heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: 14px;
}
.kw-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kw-cloud a {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  transition: all var(--ease);
}
.kw-cloud a:hover { color: var(--gold); border-color: rgba(245,185,39,.3); background: var(--card2); }

/* ==============================================
   FAQ
   ============================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: rgba(245,185,39,.22); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: background var(--ease);
}
.faq-q:hover { background: rgba(255,255,255,.025); }

.faq-icon { flex-shrink: 0; color: var(--gold); transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 22px 20px; font-size: 0.88rem; color: var(--muted); line-height: 1.72; }
.faq-item.open .faq-a { max-height: 300px; }

/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 52px;
  align-items: start;
}

.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }

.c-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  margin-bottom: 12px;
  transition: border-color var(--ease);
}
.c-card:hover { border-color: rgba(245,185,39,.2); }
.c-icon {
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border: 1px solid rgba(245,185,39,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.c-icon--wa { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.2); color: #25D366; }
.c-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.c-val   { display: block; font-weight: 700; font-size: 0.97rem; color: var(--text); margin-bottom: 2px; }
.c-val:hover { color: var(--gold); }
.c-note  { font-size: 0.75rem; color: var(--dim); }

/* Contact Form */
.contact-form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.form-group .req { color: var(--gold); }
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(245,185,39,.45);
  box-shadow: 0 0 0 3px rgba(245,185,39,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-note { font-size: 0.77rem; color: var(--dim); text-align: center; margin-top: 8px; }

.form-success {
  background: rgba(16,185,129,.09);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 18px;
  color: #10B981;
}
.form-success h3 { font-size: 1rem; margin-bottom: 6px; }
.form-success p  { font-size: 0.87rem; }
.form-error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.22);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 18px;
  color: #f87171;
  font-size: 0.88rem;
}

/* ==============================================
   BLOG LISTING
   ============================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(245,185,39,.2); box-shadow: 0 12px 40px rgba(0,0,0,.28); }

.blog-card-link { display: block; }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--card2), var(--bg2));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.blog-thumb-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,185,39,.08), transparent),
    linear-gradient(145deg, var(--bg3), var(--card));
}
.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--dim);
  margin-bottom: 12px;
}
.blog-meta .blog-category {
  background: var(--gold-glow);
  color: var(--gold);
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.blog-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-title a { color: var(--text); transition: color var(--ease); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.blog-read-more {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gold);
  transition: opacity var(--ease);
  margin-top: auto;
}
.blog-read-more:hover { opacity: .75; }

/* Blog listing breadcrumb category tag */
.blog-thumb .blog-category {
  position: relative;
  z-index: 1;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid rgba(245,185,39,.22);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ==============================================
   BLOG DETAIL
   ============================================== */
.blog-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* Article */
.blog-article { min-width: 0; }
.article-header { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.article-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.article-excerpt { font-size: 1rem; color: var(--muted); line-height: 1.75; }

.article-body { font-size: 0.95rem; line-height: 1.82; color: var(--muted); }
.article-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 36px 0 14px; line-height: 1.3; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; line-height: 1.4; }
.article-body p  { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; list-style: disc; }
.article-body ul li, .article-body ol li { margin-bottom: 7px; }
.article-body a  { color: var(--gold); text-decoration: underline; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 24px 0;
  padding: 12px 20px;
  background: var(--card);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--muted);
}

.article-footer { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; font-size: 0.8rem; color: var(--muted); }
.atag { background: var(--card2); border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; font-size: 0.75rem; color: var(--muted); }
.article-share { display: flex; gap: 10px; align-items: center; font-size: 0.8rem; color: var(--muted); }
.article-share a { color: var(--muted); transition: color var(--ease); }
.article-share a:hover { color: var(--gold); }

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.sidebar-widget h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-widget > p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }

.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.ri-cat   { font-size: 0.68rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .4px; }
.ri-title { font-size: 0.84rem; font-weight: 600; color: var(--text); line-height: 1.35; transition: color var(--ease); }
.related-item:hover .ri-title { color: var(--gold); }
.ri-date  { font-size: 0.73rem; color: var(--dim); }

.sidebar-districts { display: flex; flex-direction: column; gap: 8px; }
.sidebar-districts a { font-size: 0.83rem; color: var(--muted); transition: color var(--ease); }
.sidebar-districts a:hover { color: var(--gold); }

/* ==============================================
   LEGAL PAGES
   ============================================== */
.legal-header { margin-bottom: 40px; }
.legal-header h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 8px; }
.legal-date { font-size: 0.82rem; color: var(--dim); }

.legal-content h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 22px 0 10px; color: var(--text); }
.legal-content p  { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content ul li { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-content a   { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }

.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-table th, .legal-table td { border: 1px solid var(--border); padding: 10px 14px; font-size: 0.85rem; text-align: left; }
.legal-table th { background: var(--card2); font-weight: 600; color: var(--text); }
.legal-table td { color: var(--muted); }

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
  padding: 100px 0;
  background:
    linear-gradient(135deg,
      rgba(245,185,39,.08) 0%,
      rgba(255,122,0,.04) 50%,
      var(--bg2) 100%);
  border-top: 1px solid rgba(245,185,39,.1);
}
.cta-inner { text-align: center; max-width: 640px; }
.cta-inner h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.cta-inner p  { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 38px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: 18px;
}
.footer-tel {
  display: inline-flex;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--gold);
  transition: opacity var(--ease);
}
.footer-tel:hover { opacity: .75; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fc h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .55px;
  color: var(--text);
  margin-bottom: 16px;
}
.fc ul { display: flex; flex-direction: column; gap: 9px; }
.fc a  { font-size: 0.84rem; color: var(--muted); transition: color var(--ease); }
.fc a:hover { color: var(--gold); }

.footer-bottom { padding: 18px 0; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
}
.footer-bottom-inner p { font-size: 0.78rem; color: var(--dim); }

/* ==============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================== */
@media (max-width: 1024px) {
  .hero-chat-wrap { width: 42%; max-width: 380px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: repeat(2, 1fr); }
  .district-grid,
  .district-grid-full{ grid-template-columns: repeat(4, 1fr); }
  .why-grid          { gap: 40px; }
  .footer-top        { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p    { max-width: 100%; }
  .blog-grid         { grid-template-columns: repeat(2, 1fr); }
  .blog-detail-wrap  { grid-template-columns: 1fr; }
  .blog-sidebar      { position: static; }
  .contact-grid      { grid-template-columns: 1fr; }
  .ilce-info-grid    { grid-template-columns: 1fr; }
  .ilce-cta-card     { position: static; }
  .comparison-table .ct-row { grid-template-columns: 1fr 1fr; }
  .ct-head           { display: none; }
  .ct-row > div::before { font-size: 0.7rem; color: var(--dim); display: block; margin-bottom: 2px; font-weight: 600; text-transform: uppercase; }
}

/* ==============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,12,20,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 901;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; font-weight: 600; color: var(--text); padding: 14px 32px; }
  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  .hero { padding: 100px 0 280px; align-items: flex-start; }
  .hero-wrap    { flex-direction: column; }
  .hero-content { max-width: 100%; }
  .hero-chat-wrap {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: min(90%, 340px);
    animation: none;
  }
  .hero-chat { border-radius: 16px; }
  .hc-body { padding: 14px 14px 10px; }
  .hc-msg  { font-size: 0.78rem; padding: 8px 11px; }
  .hc-footer input { font-size: 0.78rem; padding: 8px 12px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-xl { justify-content: center; }
  .hero-trust { gap: 10px; }
  .hero--inner { padding: 120px 0 50px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }

  .section      { padding: 70px 0; }
  .cta-section  { padding: 70px 0; }
  .section-head { margin-bottom: 44px; }

  .services-grid  { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .steps-row      { flex-direction: column; }
  .step-arrow     { transform: rotate(90deg); }
  .why-grid       { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .pricing-grid--full { grid-template-columns: 1fr; }
  .district-grid,
  .district-grid-full { grid-template-columns: repeat(3, 1fr); }
  .slider-track .review-card { flex: 0 0 100%; }
  .seo-grid   { grid-template-columns: 1fr; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .cta-btns .btn-xl { width: 100%; max-width: 340px; }

  .footer       { padding: 50px 0 0; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }

  .blog-grid    { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .comparison-table .ct-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title   { letter-spacing: -.8px; }
  .district-grid,
  .district-grid-full { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .hero-trust   { flex-direction: column; gap: 8px; }
  .float-btn    { width: 46px; height: 46px; right: 14px; }
  .float-wa     { bottom: 74px; }
  .float-phone  { bottom: 14px; }
  .district-tabs { flex-direction: column; align-items: stretch; }
  .dtab         { text-align: center; }
}
