/* ==========================================================================
   Honda Özel Servis – Ulu Otomotiv
   Ana stil dosyası | style.css
   Saf CSS3 — build gerektirmez
   ========================================================================== */

:root {
  --primary: #c8102e;
  --primary-dark: #8f0b20;
  --primary-light: #e5374f;
  --secondary: #20242a;
  --secondary-light: #2c313a;
  --background: #f5f6f8;
  --surface: #ffffff;
  --text: #17191d;
  --muted: #69707a;
  --border: #dde1e6;
  --success: #158f55;
  --success-dark: #0f6b40;

  --shadow-sm: 0 1px 2px rgba(23, 25, 29, .06), 0 1px 3px rgba(23, 25, 29, .08);
  --shadow-md: 0 4px 10px rgba(23, 25, 29, .07), 0 2px 4px rgba(23, 25, 29, .06);
  --shadow-lg: 0 12px 28px rgba(23, 25, 29, .10), 0 4px 10px rgba(23, 25, 29, .06);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --container: 1200px;
  --header-h: 68px;
  --topbar-h: 40px;

  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 10px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { line-height: 1.25; color: var(--secondary); font-weight: 800; margin: 0 0 .5em; }
h1 { font-size: clamp(1.75rem, 4vw, 2.65rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -.3px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .35rem; }

:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  z-index: 2000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--tight { padding: clamp(36px, 5vw, 60px) 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--secondary); color: #e9ebef; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c3c8d0; }

.section-head { max-width: 760px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section-head.left { text-align: left; margin-inline: 0; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

.lead { font-size: 1.12rem; color: #33383f; }
.text-muted { color: var(--muted); }
.mono-list { list-style: none; padding: 0; }
.mono-list li { position: relative; padding-left: 28px; margin-bottom: .6rem; }
.mono-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.85);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: .96rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s;
  line-height: 1.1;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--wa { background: var(--success); color: #fff; }
.btn--wa:hover { background: var(--success-dark); color: #fff; }
.btn--dark { background: var(--secondary); color: #fff; }
.btn--dark:hover { background: #12151a; color: #fff; }
.btn--ghost { background: transparent; color: var(--secondary); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: #fff; color: var(--secondary); }
.btn--light:hover { background: #f0f1f4; color: var(--secondary); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--secondary);
  color: #cfd4db;
  font-size: .82rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: #cfd4db; }
.topbar a:hover { color: #fff; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__item svg { width: 14px; height: 14px; opacity: .8; }
.topbar__right .topbar__item strong { color: #fff; font-weight: 600; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-md); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 14px;
}
/* phone CTA is icon-only on desktop (number is shown in the top bar) */
.header__call .label { display: none; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark {
  width: 42px; height: 42px;
  border-radius: 9px;
  background: var(--primary);
  display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.logo__mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 55%);
}
.logo picture { display: block; flex-shrink: 0; line-height: 0; }
.logo__badge { width: 46px; height: 46px; display: block; object-fit: contain; border-radius: 50%; }
.logo__badge--footer { width: 48px; height: 48px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__title { font-size: 1.02rem; font-weight: 900; color: var(--secondary); letter-spacing: .3px; }
.logo__title span { color: var(--primary); }
.logo__sub { font-size: .64rem; font-weight: 700; letter-spacing: 2.5px; color: var(--muted); text-transform: uppercase; }

/* Nav */
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 3px;
  padding: 9px 10px;
  font-size: .88rem; font-weight: 600;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav__link:hover { color: var(--primary); background: rgba(200,16,46,.06); }
.nav__link.is-active { color: var(--primary); }
.nav__item:not(.has-sub) .nav__link.is-active::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.nav__chev { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.nav__sub-toggle { display: none; }

/* Dropdown (desktop) */
.nav__sub {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: none; z-index: 60;
}
@keyframes navSubIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.nav__sub li { margin: 0; }
.nav__sub a {
  display: block; padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: .89rem; font-weight: 600; color: var(--secondary); white-space: nowrap;
}
.nav__sub a:hover { background: rgba(200,16,46,.07); color: var(--primary); }
.nav__sub-all {
  margin-top: 4px; border-top: 1px solid var(--border);
  color: var(--primary) !important; display: flex !important; align-items: center; gap: 6px;
}
.nav__sub-all svg { width: 15px; height: 15px; }
/* hover bridge so the gap doesn't close the menu */
.nav__item.has-sub::after { content: ""; position: absolute; left: 0; right: -10px; top: 100%; height: 10px; }
.nav__item.has-sub:hover .nav__sub,
.nav__item.has-sub:focus-within .nav__sub { display: block; animation: navSubIn .18s var(--ease); }
.nav__item.has-sub:hover .nav__chev,
.nav__item.has-sub:focus-within .nav__chev { transform: rotate(180deg); }

.header__cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--secondary);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s;
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--secondary) 0%, #171b21 55%, #14171c 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 82% 18%, rgba(200,16,46,.35), transparent 70%),
    radial-gradient(closest-side at 12% 90%, rgba(200,16,46,.16), transparent 70%);
  pointer-events: none;
}
.hero__stripe {
  position: absolute; top: 0; right: 0; bottom: 0; width: 46%;
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 22px);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  padding: clamp(40px, 6vw, 76px) 0;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 6px 14px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; color: #fff;
  margin-bottom: 20px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(21,143,85,.28); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--primary-light); }
.hero__desc { font-size: 1.12rem; color: #c8cdd5; max-width: 560px; margin-bottom: 26px; }
.hero .btn-row { margin-bottom: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__trust span {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 13px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 600; color: #e7eaef;
}
.hero__trust svg { width: 15px; height: 15px; color: var(--primary-light); }

/* Hero card */
.hero__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-lg);
}
.hero__card h2 { color: #fff; font-size: 1.25rem; margin-bottom: 6px; }
.hero__card > p { color: #b9bec7; font-size: .92rem; margin-bottom: 18px; }
.hero__card .quick-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.hero__card .quick-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #e7eaef; }
.hero__card .quick-list svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }
.hero__card-photo { margin: 18px 0 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.hero__card-photo img { display: block; width: 100%; height: auto; aspect-ratio: 600 / 460; object-fit: cover; object-position: center 38%; }
.hero__card-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 7px;
  padding: 20px 14px 10px; font-size: .82rem; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(15,17,20,.85), transparent);
}
.hero__card-photo figcaption svg { width: 15px; height: 15px; flex-shrink: 0; color: #fff; }
/* keep inline hours-icons small inside cards (avoid oversized SVG) */
.aside-card > p svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 3px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cfd4db; }

.service-card { display: flex; flex-direction: column; }
.service-card .icon-box {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(200,16,46,.08);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.service-card .icon-box svg { width: 26px; height: 26px; }

/* Image cards */
.card.has-image { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card.has-image .card-content { padding: 22px 24px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.card-image-box {
  width: 100%; aspect-ratio: 16 / 10;
  overflow: hidden; background: #eef0f3;
  border-bottom: 1px solid var(--border);
}
.card-image-box img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.card.has-image:hover .card-image-box img { transform: scale(1.05); }

.service-card h3 { margin-bottom: 8px; font-size: 1.12rem; }
.service-card p { color: var(--muted); font-size: .93rem; margin-bottom: 16px; flex-grow: 1; }
.service-card .card-link {
  font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px;
}
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* link chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 9px 15px; border-radius: 100px;
  font-size: .9rem; font-weight: 600; color: var(--secondary);
  transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--primary); color: var(--primary); background: rgba(200,16,46,.04); transform: translateY(-2px); }
.chip svg { width: 15px; height: 15px; color: var(--primary); }

/* ---------- Problem list ---------- */
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.problem-card h3 { font-size: 1.02rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.problem-card h3 svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.problem-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

/* ---------- Process ---------- */
.process-grid { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(5, 1fr); }
.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  box-shadow: var(--shadow-sm);
}
.process-step .num {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--secondary); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 14px;
}
.process-step:nth-child(3) .num { background: var(--primary); }
.process-step h3 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: .88rem; color: var(--muted); margin-bottom: 0; }

/* ---------- Why us / feature list ---------- */
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .fi-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px;
  background: rgba(200,16,46,.08); color: var(--primary);
  display: grid; place-items: center;
}
.feature-item .fi-icon svg { width: 24px; height: 24px; }
.feature-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { color: var(--muted); font-size: .92rem; margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(115deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 24px);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 24px; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- Ulu Otomotiv block ---------- */
.uluoto-block {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.uluoto-block .badge-corp {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.uluoto-visual {
  background: var(--secondary); color: #fff; border-radius: var(--radius);
  padding: 30px; text-align: center;
}
.uluoto-visual .uv-logo { font-size: 1.6rem; font-weight: 900; letter-spacing: 1px; }
.uluoto-visual .uv-logo span { color: var(--primary-light); }
.uluoto-visual p { color: #b9bec7; font-size: .9rem; margin: 8px 0 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 52px 18px 20px; font-size: 1rem; font-weight: 700; color: var(--secondary);
  font-family: inherit; position: relative; line-height: 1.4;
}
.faq-q::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--ease);
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a__inner { padding: 0 20px 18px; color: var(--muted); }
.faq-a__inner p:last-child { margin-bottom: 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 12px 0;
  font-size: .84rem; color: var(--muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; margin: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--border); margin-left: 6px; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li[aria-current] { color: var(--secondary); font-weight: 600; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--secondary), #171b21);
  color: #fff; padding: clamp(36px, 5vw, 58px) 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(closest-side at 88% 20%, rgba(200,16,46,.3), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 900px; }
.page-hero p { color: #c8cdd5; max-width: 720px; font-size: 1.08rem; margin-bottom: 0; }
.page-hero .btn-row { margin-top: 24px; }

/* ---------- Article / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.5em; }
.prose ul li::marker { color: var(--primary); }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose blockquote {
  border-left: 4px solid var(--primary); background: var(--background);
  margin: 1.5em 0; padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #33383f; font-style: italic;
}
.prose .note {
  background: #fff7ed; border: 1px solid #fcd9a8; border-radius: var(--radius-sm);
  padding: 16px 18px; margin: 1.5em 0; font-size: .95rem;
}
.prose .note strong { color: var(--primary-dark); }

.layout-with-aside { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.aside-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 16px);
}
.aside-card h3 { font-size: 1.05rem; }
.aside-card + .aside-card { margin-top: 20px; }
.aside-list { list-style: none; padding: 0; margin: 0; }
.aside-list li { border-bottom: 1px solid var(--border); }
.aside-list li:last-child { border-bottom: 0; }
.aside-list a { display: block; padding: 9px 0; font-size: .9rem; font-weight: 600; color: var(--secondary); }
.aside-list a:hover { color: var(--primary); padding-left: 4px; }

/* ---------- Info / contact rows ---------- */
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; }
.info-row .ir-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  background: rgba(200,16,46,.08); color: var(--primary); display: grid; place-items: center;
}
.info-row .ir-icon svg { width: 20px; height: 20px; }
.info-row .ir-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 700; }
.info-row .ir-value { font-weight: 600; color: var(--secondary); }
.info-row .ir-value a { font-weight: 600; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 34px); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 700; color: var(--secondary); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .18s var(--ease), box-shadow .18s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.field .error-msg { font-size: .8rem; color: var(--primary); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--primary); }
.field.has-error .error-msg { display: block; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; grid-column: 1 / -1; }
.checkbox-field input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--primary); }
.checkbox-field label { font-size: .86rem; font-weight: 500; color: var(--muted); line-height: 1.5; }
.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 14px;
  background: rgba(21,143,85,.1); border: 1px solid rgba(21,143,85,.3);
  color: var(--success-dark); padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: .92rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,17,20,.6);
  display: none; align-items: flex-start; justify-content: center;
  padding: 24px; z-index: 1200; overflow-y: auto;
  backdrop-filter: blur(2px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface); border-radius: var(--radius-lg);
  max-width: 640px; width: 100%; margin: auto; box-shadow: var(--shadow-lg);
  animation: modalIn .28s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.modal__head h2 { margin: 0; font-size: 1.2rem; }
.modal__close {
  width: 40px; height: 40px; border: 1px solid var(--border); background: #fff;
  border-radius: var(--radius-sm); cursor: pointer; font-size: 1.3rem; color: var(--secondary);
  display: grid; place-items: center; line-height: 1;
}
.modal__close:hover { background: var(--background); color: var(--primary); }
.modal__body { padding: 24px; }

/* ---------- Floating actions ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--success); color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(21,143,85,.45);
  animation: waPulse 2.6s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { color: #fff; transform: scale(1.06); }
@keyframes waPulse {
  0% { box-shadow: 0 6px 20px rgba(21,143,85,.45), 0 0 0 0 rgba(21,143,85,.4); }
  70% { box-shadow: 0 6px 20px rgba(21,143,85,.45), 0 0 0 16px rgba(21,143,85,0); }
  100% { box-shadow: 0 6px 20px rgba(21,143,85,.45), 0 0 0 0 rgba(21,143,85,0); }
}

.to-top {
  position: fixed; right: 22px; bottom: 90px; z-index: 799;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--secondary); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, visibility .25s, transform .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }
.to-top:hover { color: var(--primary); border-color: var(--primary); }

/* Mobile bottom bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
  display: none; grid-template-columns: repeat(4, 1fr);
  background: var(--surface); border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px 9px; font-size: .68rem; font-weight: 700; color: var(--secondary);
}
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar a.wa { color: var(--success); }
.mobile-bar a.call { color: var(--primary); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1100;
  max-width: 560px; margin-inline: auto;
  background: var(--secondary); color: #e9ebef;
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-lg);
  display: none; gap: 14px; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie p { margin: 0; font-size: .86rem; flex: 1 1 260px; color: #c3c8d0; }
.cookie a { color: #fff; text-decoration: underline; }
.cookie .cookie-actions { display: flex; gap: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--secondary); color: #b9bec7; padding-top: 56px; }
.footer a { color: #b9bec7; }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .5px; margin-bottom: 16px; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer__brand .logo__title { color: #fff; }
.footer__brand p { font-size: .88rem; color: #a2a8b2; margin: 14px 0; max-width: 320px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; }
.footer__contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--primary-light); }
.footer__disclaimer {
  font-size: .8rem; color: #8b929c; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.09);
  line-height: 1.6;
}
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding: 20px 0 26px; font-size: .84rem;
}
.footer__bottom .footer-copyright { margin: 0; }
.footer__bottom a { text-decoration: underline; color: #fff; font-weight: 600; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer__legal a { text-decoration: none; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack-lg > * + * { margin-top: 20px; }
.pill-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--primary); background: rgba(200,16,46,.08);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.divider { height: 1px; background: var(--border); border: 0; margin: 40px 0; }
.svg-placeholder {
  width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius);
  background:
    linear-gradient(135deg, #eef0f3, #e2e5ea);
  display: grid; place-items: center; color: var(--muted); border: 1px solid var(--border);
  overflow: hidden;
}
.svg-placeholder svg { width: 84px; height: 84px; opacity: .45; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Layout Fixes */
.checkbox-field { flex-wrap: wrap; }
.checkbox-field .error-msg { flex-basis: 100%; margin-top: -4px; margin-left: 30px; }
.footer__brand a svg, .footer-brand a svg { width: 1.25em; height: 1.25em; vertical-align: -0.25em; margin-left: 0.25em; }
