/*
 * Yalova Mobil Servis — dark industrial design system
 */

:root {
  --bg: #0c0d10;
  --bg-2: #111317;
  --bg-3: #15181d;
  --bg-4: #1b1f26;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --red: #e11d2a;
  --red-bright: #ff3b47;
  --red-dark: #b3121d;
  --wa: #25d366;
  --text: #f4f5f7;
  --muted: #9aa0a8;
  --muted-2: #c8ccd2;
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --display: "Oswald", system-ui, sans-serif;
  --body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  color: #fff;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 16px; }

.yms-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--red); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red-bright);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  letter-spacing: 0.3px; line-height: 1; cursor: pointer;
  padding: 15px 24px; border-radius: var(--radius-sm);
  border: 1px solid transparent; transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button .yms-icon { width: 19px; height: 19px; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(225, 29, 42, 0.28); }
.button-primary:hover { background: var(--red-bright); }
.button-secondary { background: transparent; color: var(--text); border-color: var(--line-2); }
.button-secondary:hover { border-color: var(--wa); }
.button-secondary .yms-icon { color: var(--wa); }
.button-outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.button-outline:hover { border-color: #fff; }
.button-light { background: #fff; color: var(--red-dark); }
.button-light:hover { background: #f1f1f1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 13, 16, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.site-header.is-scrolled {
  background: rgba(12, 13, 16, 0.92);
  border-bottom-color: var(--line);
}
.header-main { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.site-brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.site-brand__mark {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  background: var(--red); border-radius: 11px; color: #fff;
}
.site-brand__mark .yms-icon { width: 22px; height: 22px; }
.site-brand__stack { display: flex; flex-direction: column; line-height: 1.05; }
.site-brand__stack strong {
  font-family: var(--display); font-weight: 600; font-size: 18px;
  letter-spacing: 2px; color: #fff;
}
.site-brand__stack small { font-size: 11px; letter-spacing: 3px; color: var(--red-bright); }
.site-brand img { max-height: 46px; width: auto; }

.primary-nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.primary-nav__list a {
  display: block; padding: 9px 14px; font-size: 14px; font-weight: 500;
  color: var(--muted-2); border-radius: 8px; transition: color .15s, background .15s;
}
.primary-nav__list a:hover { color: #fff; background: var(--bg-3); }

.header-call {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: 0.5px;
  color: #fff; padding: 11px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
}
.header-call .yms-icon { width: 19px; height: 19px; color: var(--red-bright); }
.header-call:hover { border-color: var(--red); }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: var(--bg-3);
  border: 1px solid var(--line); border-radius: 10px; color: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle .yms-icon { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline-block; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__accent {
  position: absolute; top: -120px; right: -90px; width: 460px; height: 460px;
  background: var(--red); opacity: 0.12; transform: rotate(28deg); border-radius: 70px;
  pointer-events: none;
}
.hero__ghost {
  position: absolute; right: 3%; top: 38%; font-family: var(--display);
  font-weight: 700; font-size: clamp(8rem, 22vw, 18rem); line-height: 1;
  color: rgba(255, 255, 255, 0.035); letter-spacing: -6px; pointer-events: none; user-select: none;
}
.hero__inner { position: relative; padding: 86px 0 0; }
.hero__title { margin: 22px 0 0; max-width: 760px; }
.hero__title span { color: var(--red-bright); }
.hero__lead { max-width: 520px; color: var(--muted); font-size: 1.12rem; margin: 20px 0 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin: 30px 0 0; padding: 0; list-style: none; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-2); }
.hero__trust .yms-icon { width: 18px; height: 18px; color: var(--red-bright); }

.hero__strip {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border-top: 1px solid var(--line); margin-top: 70px;
}
.hero__strip a {
  display: flex; align-items: center; gap: 12px; padding: 22px 20px; background: var(--bg);
  transition: background .15s;
}
.hero__strip a:hover { background: var(--bg-3); }
.hero__strip .yms-icon { width: 26px; height: 26px; color: var(--red-bright); }
.hero__strip span { font-family: var(--display); font-weight: 500; font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section__head { max-width: 680px; margin-bottom: 44px; }
.section__head .eyebrow { margin-bottom: 16px; }
.section__head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.svc-card {
  position: relative; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px 24px; overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  background: var(--bg-4); border: 1px solid var(--line); border-radius: 13px;
  color: var(--red-bright); margin-bottom: 18px; transition: background .18s, color .18s;
}
.svc-card__icon .yms-icon { width: 28px; height: 28px; }
.svc-card:hover .svc-card__icon { background: var(--red); color: #fff; border-color: var(--red); }
.svc-card h3 { margin: 0 0 10px; }
.svc-card h3 a { color: #fff; }
.svc-card p { color: var(--muted); font-size: 0.98rem; margin: 0 0 18px; }
.svc-card__link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px;
  color: var(--red-bright);
}
.svc-card__link .yms-icon { width: 17px; height: 17px; transition: transform .15s; }
.svc-card:hover .svc-card__link .yms-icon { transform: translateX(4px); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  position: relative; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px 28px; overflow: hidden;
}
.step__num {
  position: absolute; right: 14px; top: 2px; font-family: var(--display); font-weight: 700;
  font-size: 6.4rem; line-height: 1; color: rgba(255, 255, 255, 0.05);
}
.step__badge {
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  background: var(--red); border-radius: 12px; color: #fff; margin-bottom: 18px;
}
.step__badge .yms-icon { width: 24px; height: 24px; }
.step h3 { margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ---------- Why / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split p { color: var(--muted); font-size: 1.08rem; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li {
  display: flex; align-items: center; gap: 13px; padding: 15px 18px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 500;
}
.check-list .yms-icon { width: 20px; height: 20px; color: var(--red-bright); }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat { padding: 30px 24px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font-family: var(--display); font-weight: 700; font-size: 2.6rem; color: var(--red-bright); line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 0.92rem; }

/* ---------- Conversion band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--red); }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.06) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.cta-band__inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 54px 0; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band__phone { font-family: var(--display); font-weight: 700; font-size: 2.2rem; color: #fff; letter-spacing: 1px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer; font-family: var(--display); font-weight: 500;
  font-size: 1.12rem; text-transform: uppercase; letter-spacing: 0.4px; list-style: none; color: #fff;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--display); font-size: 1.7rem; font-weight: 400;
  color: var(--red-bright); transition: transform .2s; line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { border-bottom: 1px solid var(--line); }
.faq__item p { color: var(--muted); margin: 0; padding: 16px 22px 20px; }

/* ---------- Regions ---------- */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.region-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .18s, border-color .18s;
}
.region-card:hover { transform: translateY(-4px); border-color: var(--red); }
.region-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 8px; font-size: 1.2rem; }
.region-card h3 a { color: #fff; }
.region-card h3 .yms-icon { width: 20px; height: 20px; color: var(--red-bright); }
.region-card p { color: var(--muted); font-size: 0.94rem; margin: 0 0 14px; }
.region-card__link { font-weight: 600; font-size: 13px; color: var(--red-bright); }

.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-grid a {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 500; transition: border-color .15s, color .15s;
}
.chip-grid a:hover { border-color: var(--red); color: #fff; }

/* ---------- Contact ---------- */
.contact-box {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 40px;
}
.contact-box p { color: var(--muted); margin: 0 0 12px; }
.contact-box__phone { font-family: var(--display); font-weight: 700; font-size: 2rem; color: #fff; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: #08090b; border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-title { display: block; font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.site-footer p { color: var(--muted); font-size: 0.95rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand .site-brand__mark { width: 38px; height: 38px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer ul a, .site-footer ul li { color: var(--muted); font-size: 0.95rem; transition: color .15s; }
.site-footer ul a:hover { color: var(--red-bright); }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: #fff; margin-top: 6px; }
.footer-phone .yms-icon { color: var(--red-bright); width: 20px; height: 20px; }
.footer-actions { display: grid; gap: 12px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 54px; padding: 22px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.88rem;
}

/* ---------- Mobile sticky CTA + WhatsApp float ---------- */
.mobile-cta { display: none; }
.wa-float {
  position: fixed; right: 18px; bottom: 22px; z-index: 60;
  display: inline-grid; place-items: center; width: 56px; height: 56px;
  background: var(--wa); border-radius: 50%; color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.wa-float .yms-icon { width: 30px; height: 30px; }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); padding: 64px 0 56px; }
.page-hero__accent { position: absolute; top: -100px; right: -80px; width: 360px; height: 360px; background: var(--red); opacity: 0.1; transform: rotate(28deg); border-radius: 60px; }
.page-hero h1 { position: relative; margin: 16px 0 0; }
.breadcrumbs { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--red-bright); }
.breadcrumbs span[aria-hidden] { color: var(--line-2); }

/* ---------- Inner hero (single service/region) ---------- */
.inner-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); padding: 64px 0; }
.inner-hero__accent { position: absolute; top: -120px; right: -90px; width: 420px; height: 420px; background: var(--red); opacity: 0.1; transform: rotate(28deg); border-radius: 70px; }
.inner-hero__grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.inner-hero__copy h1 { margin: 16px 0 14px; }
.inner-hero__copy p { color: var(--muted); font-size: 1.08rem; margin: 0 0 24px; max-width: 540px; }
.inner-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.inner-hero__panel { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.inner-hero__panel span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.inner-hero__panel strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: #fff; margin: 8px 0 12px; }
.inner-hero__panel small { color: var(--muted); font-size: 0.92rem; }

.detail-strip { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.detail-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.detail-strip__grid > div { padding: 26px 24px; border-left: 1px solid var(--line); display: flex; align-items: baseline; gap: 12px; }
.detail-strip__grid > div:first-child { border-left: 0; }
.detail-strip strong { font-family: var(--display); font-weight: 700; font-size: 1.6rem; color: var(--red-bright); }
.detail-strip span { color: var(--muted); font-size: 0.92rem; }

/* ---------- Detail layout ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.detail-sidebar { position: sticky; top: 92px; display: grid; gap: 16px; }
.detail-cta-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: grid; gap: 12px; }
.detail-cta-card h2 { font-size: 1.4rem; margin: 0; }
.detail-cta-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.detail-cta-card strong { font-family: var(--display); font-weight: 700; font-size: 1.6rem; color: #fff; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid article { position: relative; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; overflow: hidden; }
.process-grid article > span { position: absolute; right: 14px; top: 2px; font-family: var(--display); font-weight: 700; font-size: 5rem; color: rgba(255,255,255,0.05); }
.process-grid h3 { margin: 0 0 8px; }
.process-grid p { color: var(--muted); margin: 0; font-size: 0.96rem; }

.mini-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.mini-service-grid article { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.mini-service-grid .yms-icon { width: 30px; height: 30px; color: var(--red-bright); margin-bottom: 14px; }
.mini-service-grid h3 { margin: 0 0 8px; font-size: 1.15rem; }
.mini-service-grid p { color: var(--muted); margin: 0; font-size: 0.94rem; }

.service-list-rich { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.service-list-rich li { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 0.95rem; }
.service-list-rich li::before { content: ""; width: 7px; height: 7px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ---------- Prose / entry content ---------- */
.entry-content { color: var(--muted-2); font-size: 1.02rem; }
.entry-content h2 { margin: 36px 0 16px; }
.entry-content h3 { margin: 28px 0 12px; color: #fff; }
.entry-content p { color: var(--muted-2); }
.entry-content a { color: var(--red-bright); }
.entry-content ul { padding: 0; margin: 0 0 20px; list-style: none; display: grid; gap: 10px; }
.entry-content ul li { position: relative; padding-left: 26px; color: var(--muted-2); }
.entry-content ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.content-narrow { max-width: 760px; }
.page-content { max-width: 860px; }

/* ---------- Demo rich pages ---------- */
.demo-rich-page > section { margin-bottom: 28px; }
.demo-intro-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: center; }
.demo-intro-grid h2 { margin-top: 0; }
.demo-stat-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.demo-stat-card strong { display: block; font-family: var(--display); font-weight: 700; font-size: 3rem; color: var(--red-bright); line-height: 1; }
.demo-stat-card span { color: var(--muted); font-size: 0.92rem; }
.demo-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.demo-card-grid article { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.demo-card-grid article h3 { margin: 0 0 10px; font-size: 1.15rem; }
.demo-card-grid article p { color: var(--muted); font-size: 0.95rem; margin: 0 0 12px; }
.demo-card-grid article a { color: var(--red-bright); font-weight: 600; font-size: 14px; }
.demo-cta-band { background: var(--red); border-radius: var(--radius); padding: 36px 34px; }
.demo-cta-band h2 { color: #fff; margin: 0 0 8px; }
.demo-cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.demo-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.demo-contact-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.demo-contact-card.primary { border-color: var(--red); }
.demo-contact-card h2 { font-size: 1.3rem; margin: 0 0 10px; }
.demo-contact-card strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.demo-contact-card p { color: var(--muted); font-size: 0.93rem; }
.demo-info-list { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.demo-info-list h2 { margin-top: 0; }
.demo-faq-list { display: grid; gap: 12px; }
.demo-faq-list details { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; }
.demo-faq-list summary { cursor: pointer; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.4px; color: #fff; }
.demo-faq-list p { color: var(--muted); margin: 12px 0 0; }
.demo-region-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.demo-region-cloud a { display: inline-flex; padding: 10px 16px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 500; }
.demo-region-cloud a:hover { border-color: var(--red); }

/* ---------- Pagination / misc ---------- */
.pagination-wrap { margin-top: 36px; }
.pagination .page-numbers { display: inline-flex; padding: 8px 14px; margin: 0 4px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; font-weight: 500; }
.pagination .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; }
.entry-summary { padding: 22px 0; border-bottom: 1px solid var(--line); }
.entry-summary h2 a:hover { color: var(--red-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split, .inner-hero__grid, .demo-intro-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .steps, .process-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw); z-index: 70;
    background: var(--bg-2); border-left: 1px solid var(--line); padding: 80px 24px 24px;
    transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav__list { flex-direction: column; gap: 4px; }
  .primary-nav__list a { padding: 14px 16px; font-size: 16px; }
  .nav-toggle { display: inline-flex; order: 3; }
  .header-call span.full { display: none; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .hero__ghost { display: none; }
}

@media (max-width: 560px) {
  .header-call { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__strip { grid-template-columns: 1fr; }
  .contact-box { padding: 30px 24px; }
  body { padding-bottom: 66px; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--line); border-top: 1px solid var(--line);
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 15px 8px; background: var(--bg-2); font-size: 13px; font-weight: 600;
  }
  .mobile-cta a .yms-icon { width: 17px; height: 17px; }
  .mobile-cta a:first-child { background: var(--red); color: #fff; }
  .mobile-cta a:nth-child(2) .yms-icon { color: var(--wa); }
  .wa-float { bottom: 78px; }
}
