:root {
  --ink: #11151c;
  --ink-2: #202733;
  --surface: #ffffff;
  --soft: #f3f5f8;
  --soft-2: #e8edf2;
  --muted: #5f6b7a;
  --line: #dfe5ec;
  --dark: #0c1016;
  --dark-2: #151b24;
  --accent: #f7b51d;
  --accent-2: #ef7416;
  --green: #1fae5b;
  --blue: #2e6c8e;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 20px 54px rgba(17, 21, 28, 0.16);
  --shadow-strong: 0 28px 70px rgba(4, 8, 14, 0.28);
  --announce-height: 42px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(247, 181, 29, 0.08), transparent 30rem),
    linear-gradient(180deg, #fbfcfd 0%, var(--soft) 38%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

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

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(247, 181, 29, 0.22), transparent 18%, transparent 82%, rgba(239, 116, 22, 0.2)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.11), transparent 26rem),
    #080b10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--announce-height);
  white-space: nowrap;
  box-shadow: inset 0 -1px 0 rgba(247, 181, 29, 0.18);
}

.announcement-bar::before,
.announcement-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 68px;
  pointer-events: none;
}

.announcement-bar::before {
  left: 0;
  background: linear-gradient(90deg, #080b10, transparent);
}

.announcement-bar::after {
  right: 0;
  background: linear-gradient(270deg, #080b10, transparent);
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  height: 100%;
  min-width: max-content;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 820;
  animation: announcement-scroll 52s linear infinite;
  will-change: transform;
}

.announcement-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.announcement-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(247, 181, 29, 0.58);
}

.site-header {
  position: sticky;
  top: var(--announce-height);
  z-index: 70;
  background: rgba(12, 16, 22, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-compact {
  --header-height: 64px;
  background: rgba(9, 12, 17, 0.94);
  border-bottom-color: rgba(247, 181, 29, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: min-height 180ms ease;
}

.site-header.is-compact .nav-wrap {
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 5px solid var(--accent);
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 14%, transparent 15% 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.18), 0 0 22px rgba(247, 181, 29, 0.28);
}

.brand-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text span:first-child {
  font-size: 1.03rem;
}

.brand-text span:last-child {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 750;
  padding: 10px 11px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  transform: translateZ(0);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: -1;
  width: 45%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: left 520ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  left: 120%;
}

.btn-primary {
  color: #17130a;
  background: linear-gradient(135deg, #ffd45a 0%, var(--accent) 45%, #ef8a16 100%);
  box-shadow: 0 14px 30px rgba(247, 181, 29, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(247, 181, 29, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #26c76b, var(--green));
  box-shadow: 0 14px 30px rgba(31, 174, 91, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  box-shadow: 0 18px 38px rgba(31, 174, 91, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  font-weight: 850;
  margin-top: auto;
}

.btn-link:hover {
  color: var(--accent-2);
}

.hero {
  position: relative;
  min-height: min(700px, calc(100vh - 38px));
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(247, 181, 29, 0.18), transparent 23rem),
    linear-gradient(90deg, rgba(7, 10, 14, 0.98) 0%, rgba(8, 12, 18, 0.88) 39%, rgba(8, 12, 18, 0.36) 70%, rgba(8, 12, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 10, 14, 0.82) 0%, rgba(7, 10, 14, 0.03) 52%);
}

.hero-inner {
  min-height: min(700px, calc(100vh - 38px));
  display: grid;
  align-items: center;
  padding: 78px 0 94px;
}

.hero-copy {
  max-width: 690px;
}

.hero-home-inner {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  position: relative;
}

.hero-call-card {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(12, 16, 22, 0.68);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.hero-call-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-call-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.65rem, 2.4vw, 2.05rem);
  line-height: 1;
}

.hero-call-card p {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.hero-call-card .btn {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(247, 181, 29, 0.18);
  border: 1px solid rgba(247, 181, 29, 0.42);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  animation: rise-in 620ms ease both;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(2.25rem, 5.1vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  animation: rise-in 720ms 80ms ease both;
}

.hero p,
.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero p {
  animation: rise-in 720ms 160ms ease both;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions {
  animation: rise-in 720ms 240ms ease both;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  animation: cue-bob 1.8s ease-in-out infinite;
}

.scroll-cue::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

.quick-strip {
  position: relative;
  margin-top: -44px;
  z-index: 4;
}

.home-trust {
  margin-top: 0;
  padding: 0 0 30px;
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-card,
.service-card,
.why-card,
.step-card,
.district-card,
.contact-card,
.notice-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(17, 21, 28, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trust-card:hover,
.service-card:hover,
.why-card:hover,
.step-card:hover,
.district-card:hover,
.contact-card:hover,
.notice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 181, 29, 0.42);
  box-shadow: var(--shadow);
}

.trust-card {
  min-height: 112px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 236, 0.94));
}

.trust-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.trust-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  padding: 84px 0;
}

.action-band {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  padding-top: 0;
}

.action-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(247, 181, 29, 0.32);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(247, 181, 29, 0.22), transparent 16rem),
    linear-gradient(135deg, #111820, #0d1118);
  box-shadow: var(--shadow-strong);
}

.action-panel h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.12;
}

.action-panel p {
  margin-bottom: 8px;
}

.section.compact {
  padding: 58px 0;
}

.section.dark {
  color: #fff;
  background: var(--dark);
}

.section.alt {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-kicker {
  color: var(--accent-2);
  font-weight: 900;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.section-head h2,
.content-block h2,
.split-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.content-block p,
.split-copy p,
.cta-panel p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 720px;
}

.dark .section-head p,
.dark .content-block p {
  color: rgba(255, 255, 255, 0.72);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(223, 229, 236, 0.9);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(247, 181, 29, 0.16), transparent 16rem),
    linear-gradient(135deg, #ffffff, #f7f9fb);
  box-shadow: 0 20px 54px rgba(17, 21, 28, 0.1);
}

.image-frame,
.why-visual-card,
.cta-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0c1016;
}

.image-frame::after,
.why-visual-card::after,
.cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(8, 12, 18, 0.58)),
    radial-gradient(circle at 18% 20%, rgba(247, 181, 29, 0.18), transparent 14rem);
  pointer-events: none;
}

.image-frame img,
.why-visual-card img,
.cta-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.service-feature:hover .image-frame img,
.why-visual-card:hover img,
.visual-cta:hover .cta-image img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.feature-copy {
  align-self: center;
  padding: 16px 10px 16px 0;
}

.feature-copy h3,
.district-map-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.42rem, 2.6vw, 2.05rem);
  line-height: 1.08;
}

.feature-copy p,
.district-map-card p {
  margin: 0;
  color: var(--muted);
}

.feature-copy .btn {
  margin-top: 20px;
}

.eyebrow-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8f430d;
  background: #fff2cf;
  border: 1px solid #f2d485;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow-soft::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(247, 181, 29, 0.58);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(247, 181, 29, 0.16), transparent 12rem);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.service-card .card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon,
.step-number {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #15110a;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(247, 181, 29, 0.26);
  font-weight: 950;
  transition: transform 180ms ease;
}

.service-card:hover .service-icon,
.step-card:hover .step-number {
  transform: rotate(-3deg) scale(1.04);
}

.service-card h3,
.why-card h3,
.step-card h3,
.contact-card h3,
.notice-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.service-card p,
.why-card p,
.step-card p,
.contact-card p,
.notice-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 12px;
}

.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 181, 29, 0.12), transparent 22rem),
    radial-gradient(circle at 86% 88%, rgba(46, 108, 142, 0.1), transparent 24rem);
  pointer-events: none;
}

.why-section .container {
  position: relative;
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.mini-stat-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 21, 28, 0.06);
}

.mini-stat-grid strong {
  display: block;
  color: var(--accent-2);
  font-size: 2rem;
  line-height: 1;
}

.mini-stat-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 780;
}

.why-visual-card {
  min-height: 230px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.why-visual-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.42);
}

.why-card {
  padding: 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, 0.94);
}

.check-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #15110a;
  background: var(--accent);
  font-weight: 950;
}

.service-note {
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #fff8e8;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.service-note strong {
  display: block;
  margin-bottom: 4px;
}

.service-note p {
  margin: 0;
  color: #604914;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.district-preview {
  margin-top: 6px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.center-actions .btn {
  min-width: 280px;
}

.district-card {
  padding: 12px 10px;
  text-align: center;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 800;
  background:
    linear-gradient(180deg, #ffffff, #f9fbfd);
}

.district-card:hover {
  border-color: rgba(239, 116, 22, 0.45);
  color: #8f430d;
}

.content-band {
  background:
    radial-gradient(circle at 92% 0%, rgba(46, 108, 142, 0.08), transparent 24rem),
    #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-block {
  max-width: 930px;
}

.seo-card {
  max-width: 980px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 181, 29, 0.12), transparent 18rem),
    #fff;
  box-shadow: 0 18px 48px rgba(17, 21, 28, 0.08);
}

.content-block p + p {
  margin-top: 16px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.keyword-list span {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 999px;
  color: var(--ink-2);
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 760;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-section {
  background:
    linear-gradient(180deg, #f7f9fb, #fff);
}

.timeline-grid {
  position: relative;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 43px;
  height: 2px;
  background: linear-gradient(90deg, rgba(247, 181, 29, 0), rgba(247, 181, 29, 0.72), rgba(247, 181, 29, 0));
  pointer-events: none;
}

.timeline-grid .step-card {
  position: relative;
  z-index: 1;
}

.step-card {
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfd);
}

.step-symbol {
  position: absolute;
  right: 18px;
  top: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(247, 181, 29, 0.32);
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 181, 29, 0.3) 0 16%, transparent 17% 100%),
    conic-gradient(from 35deg, rgba(247, 181, 29, 0.15), rgba(46, 108, 142, 0.12), rgba(247, 181, 29, 0.15));
}

.step-symbol::before,
.step-symbol::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  border: 2px solid rgba(12, 16, 22, 0.42);
}

.step-symbol::after {
  inset: 22px 9px auto 9px;
  height: 2px;
  border: 0;
  background: rgba(12, 16, 22, 0.42);
}

.step-card h3 {
  margin-top: 18px;
}

.step-card p {
  margin-top: 8px;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 16, 22, 0.92), rgba(10, 13, 18, 0.96)),
    url("/assets/images/mobil-lastik-destek-istanbul.jpg") center / cover no-repeat;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(247, 181, 29, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 84%, rgba(46, 108, 142, 0.2), transparent 26rem);
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
}

.testimonials-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-shell {
  position: relative;
}

.testimonial-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: var(--radius);
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 38%);
  gap: 16px;
  padding: 4px 4px 10px;
}

.testimonial-card {
  scroll-snap-align: start;
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(12, 16, 22, 0.64);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 181, 29, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    rgba(12, 16, 22, 0.72);
}

.testimonial-card p {
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.testimonial-card span {
  color: #fff;
  font-weight: 900;
}

.stars {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 2px;
}

.testimonial-controls {
  position: absolute;
  right: 0;
  top: -72px;
  display: flex;
  gap: 8px;
}

.carousel-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
}

.carousel-btn-next::before {
  transform: rotate(-135deg);
  margin-left: 0;
  margin-right: 4px;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 181, 29, 0.58);
  background: rgba(247, 181, 29, 0.18);
}

.district-map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(247, 181, 29, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.94)),
    radial-gradient(circle at 92% 22%, rgba(46, 108, 142, 0.14), transparent 18rem);
  box-shadow: 0 18px 48px rgba(17, 21, 28, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-shell {
  max-width: 980px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 21, 28, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
  color: var(--ink);
  list-style: none;
  transition: background 180ms ease, color 180ms ease;
}

.faq-list summary:hover {
  background: #fff8e8;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent-2);
  font-weight: 950;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(247, 181, 29, 0.22), transparent 18rem),
    linear-gradient(135deg, #0a0d12, #151b24 58%, #1a160c);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-strong);
}

.final-cta {
  min-height: 250px;
}

.visual-cta {
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 30%);
  padding-right: 22px;
}

.cta-image {
  height: 205px;
  min-width: 220px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.cta-image img {
  min-height: 205px;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.phone-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 950;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(247, 181, 29, 0.22), transparent 22rem),
    linear-gradient(90deg, rgba(8, 12, 18, 0.98), rgba(12, 16, 22, 0.78) 52%, rgba(12, 16, 22, 0.38)),
    url("/assets/images/mobil-lastik-destek-istanbul.jpg") center / cover no-repeat;
  padding: 96px 0 88px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(0deg, rgba(243, 245, 248, 1), transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
}

.breadcrumb a {
  color: #fff;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 26px;
  align-items: start;
}

.main-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 48px rgba(17, 21, 28, 0.08);
  position: relative;
  overflow: hidden;
}

.main-copy::before {
  content: "";
  display: block;
  height: 4px;
  margin: -30px -30px 26px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), rgba(46, 108, 142, 0.72));
}

.main-copy h2,
.main-copy h3 {
  line-height: 1.12;
  margin: 28px 0 10px;
  letter-spacing: 0;
}

.main-copy h2:first-child,
.main-copy h3:first-child {
  margin-top: 0;
}

.main-copy p {
  color: var(--muted);
  margin: 0 0 16px;
}

.main-copy ul {
  padding-left: 20px;
  margin: 12px 0 20px;
  color: var(--muted);
}

.main-copy li {
  margin: 7px 0;
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.contact-card,
.notice-card {
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 181, 29, 0.12), transparent 12rem),
    linear-gradient(180deg, #ffffff, #fbfcfd);
}

.contact-card .btn {
  width: 100%;
  margin-top: 12px;
}

.contact-card h3::before,
.notice-card h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(247, 181, 29, 0.48);
}

.notice-card {
  background: #fffaf0;
  border-color: #f3dca6;
}

.notice-card p {
  color: #664d12;
}

.district-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(247, 181, 29, 0.1), transparent 20rem),
    #0c1016;
  color: #fff;
  padding: 44px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  line-height: 1.1;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-credit a {
  color: var(--accent);
  font-weight: 850;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-cta .btn {
  min-height: 42px;
  padding: 10px 14px;
}

.floating-contact {
  position: fixed;
  right: 16px;
  top: 46%;
  z-index: 80;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  animation: float-call 4.8s ease-in-out infinite;
}

.floating-contact .btn {
  min-width: 142px;
  box-shadow: var(--shadow);
}

.mobile-action-bar {
  display: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-actions .btn-primary,
.cta-panel .btn-primary,
.floating-contact .btn-primary,
.mobile-action-bar .btn-primary {
  animation: soft-pulse 2.8s ease-in-out infinite;
}

@supports (animation-timeline: view()) {
  .section,
  .quick-strip {
    animation: reveal-up both;
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}

@keyframes announcement-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0.25;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(247, 181, 29, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }
  50% {
    box-shadow: 0 18px 44px rgba(247, 181, 29, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }
}

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

@keyframes cue-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--announce-height) + var(--header-height));
    display: none;
    padding: 16px 20px 24px;
    background:
      radial-gradient(circle at 92% 0%, rgba(247, 181, 29, 0.14), transparent 16rem),
      rgba(16, 20, 26, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .main-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .quick-strip-grid,
  .hero-home-inner,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-feature,
  .visual-cta {
    grid-template-columns: 1fr;
  }

  .cta-image {
    min-width: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .district-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  :root {
    --announce-height: 36px;
    --header-height: 66px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: sticky;
  }

  .site-header.is-compact {
    --header-height: 62px;
  }

  .announcement-track {
    gap: 22px;
    font-size: 0.8rem;
    animation-duration: 58s;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-width: 4px;
  }

  .brand-text span:first-child {
    font-size: 0.94rem;
  }

  .brand-text span:last-child {
    font-size: 0.71rem;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
  }

  .hero-call-card {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hero-bg {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 13, 18, 0.96) 0%, rgba(10, 13, 18, 0.88) 56%, rgba(10, 13, 18, 0.5) 100%),
      linear-gradient(0deg, rgba(10, 13, 18, 0.78) 0%, rgba(10, 13, 18, 0.05) 62%);
  }

  .hero-inner {
    padding: 50px 0 92px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .quick-strip {
    margin-top: -34px;
  }

  .home-trust {
    margin-top: 0;
    padding-bottom: 18px;
  }

  .quick-strip-grid,
  .services-grid,
  .split,
  .steps-grid,
  .action-panel,
  .service-feature,
  .district-map-card,
  .footer-grid,
  .sidebar,
  .district-feature {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 2px;
  }

  .image-frame img,
  .why-visual-card img,
  .cta-image img {
    min-height: 220px;
  }

  .action-band {
    margin-top: 0;
    padding: 20px 0 0;
  }

  .action-panel {
    padding: 20px;
  }

  .timeline-grid::before {
    display: none;
  }

  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section.compact {
    padding: 44px 0;
  }

  .section-head {
    display: block;
  }

  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .center-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .visual-cta {
    padding-right: 24px;
  }

  .cta-image {
    height: 180px;
  }

  .page-hero {
    padding: 62px 0 60px;
  }

  .main-copy {
    padding: 22px;
  }

  .main-copy::before {
    margin: -22px -22px 22px;
  }

  .testimonial-controls {
    position: static;
    justify-content: flex-end;
    margin: -12px 0 14px;
  }

  .testimonial-track {
    grid-auto-columns: minmax(82%, 1fr);
    gap: 12px;
  }

  .testimonial-card {
    min-height: 230px;
    padding: 20px;
  }

  .floating-contact {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(16, 20, 26, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    animation: mobile-bar-in 420ms ease both;
  }

  .mobile-action-bar .btn {
    min-height: 48px;
    padding: 12px 10px;
    font-size: 0.92rem;
  }

  .footer-cta {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes mobile-bar-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .district-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .district-card {
    font-size: 0.88rem;
    padding: 11px 8px;
  }

  .service-card,
  .trust-card,
  .why-card,
  .step-card,
  .contact-card,
  .notice-card {
    padding: 18px;
  }
}
