:root {
  --navy: #061525;
  --navy-2: #0b2545;
  --brand-navy: #0b2545;
  --brand-teal: #12b5a9;
  --teal: #12b5a9;
  --teal-2: #5ff6ea;
  --ink: #eef6f8;
  --muted: #9bb3c4;
  --line: rgba(18, 181, 169, .28);
  --card: rgba(11, 37, 69, .78);
  --font-d: "Syne", "Fraunces", Georgia, serif;
  --font-b: "Manrope", "Outfit", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font-b);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.6;
}
a { color: var(--teal-2); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #000; padding: 8px; z-index: 9; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.atmosphere { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .22; animation: drift 18s ease-in-out infinite; }
.orb-a { width: 420px; height: 420px; background: var(--brand-teal); top: -80px; right: -60px; }
.orb-b { width: 320px; height: 320px; background: #124a7a; bottom: 8%; left: -80px; animation-delay: -7s; }
.grid-bg {
  position: absolute; inset: 0; opacity: .06;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
@keyframes drift { 50% { transform: translate3d(-30px, 20px, 0) scale(1.08); } }

.site-header, main, .site-footer { position: relative; z-index: 1; }
.site-header { position: sticky; top: 0; backdrop-filter: blur(16px); background: rgba(11, 37, 69, .88); border-bottom: 1px solid var(--line); z-index: 40; }
.site-header.is-scrolled { background: rgba(6, 21, 37, .96); }
.site-header.is-menu-open { background: rgba(6, 21, 37, .98); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  position: relative;
}
.header-drawer {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
}
.header-drawer__backdrop { display: none; }
.header-drawer__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
  width: 100%;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit; flex-shrink: 0;
  padding: 2px 6px 2px 2px; margin: -2px 0 -2px -2px;
  border-radius: 14px; transition: background .25s ease;
}
.brand:hover { background: rgba(0,201,190,.06); }
.logo-plate {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
}
.logo-plate--header {
  padding: 6px 12px;
  background: linear-gradient(145deg, rgba(224, 247, 244, .96) 0%, rgba(255, 255, 255, .9) 100%);
  border: 1px solid rgba(18, 181, 169, .5);
  box-shadow: 0 2px 14px rgba(18, 181, 169, .22), inset 0 1px 0 rgba(255, 255, 255, .65);
}
.logo-plate--footer {
  padding: 8px 16px;
  background: linear-gradient(145deg, rgba(224, 247, 244, .94), rgba(255, 255, 255, .88));
  border: 1px solid rgba(18, 181, 169, .4);
  box-shadow: 0 4px 16px rgba(18, 181, 169, .15);
}
.logo-plate--card {
  padding: 12px 18px;
  background: linear-gradient(145deg, rgba(224, 247, 244, .95), rgba(255, 255, 255, .9));
  border: 1px solid rgba(18, 181, 169, .35);
}
.brand__logo { height: 34px; width: auto; display: block; object-fit: contain; }
.brand__tag {
  font-size: .62rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
  max-width: 120px; overflow: hidden; text-overflow: ellipsis;
}
.nav {
  display: flex;
  gap: clamp(10px, 1.2vw, 18px);
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: clamp(.82rem, .9vw, .92rem);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav a.is-active { color: var(--teal-2); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}
.link-phone {
  color: var(--teal-2);
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .01em;
  line-height: 1.2;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgba(18, 181, 169, .1);
  border: 1px solid rgba(18, 181, 169, .28);
  flex-shrink: 0;
}
.header-cta .btn {
  padding: .55rem .85rem;
  font-size: .8rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta .btn-wa.btn-sm { padding: .5rem .72rem; }
@media (min-width: 1281px) and (max-width: 1440px) {
  .brand__tag { display: none; }
  .header-cta .btn-wa,
  .header-cta .btn-ghost { display: none; }
}
@media (min-width: 1441px) and (max-width: 1580px) {
  .brand__tag { max-width: 100px; }
  .header-cta .btn-wa { display: none; }
}
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; margin-left: auto;
  background: rgba(18, 181, 169, .12); border: 1px solid rgba(18, 181, 169, .35);
  border-radius: 12px; cursor: pointer; flex-shrink: 0;
}
.nav-toggle__bar {
  display: block; width: 20px; height: 2px; margin: 0 auto;
  background: var(--teal-2); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, width .25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: .72rem 1.1rem; border-radius: 999px; border: 1px solid transparent; font: inherit; cursor: pointer; }
.btn-copper, .btn-teal { background: linear-gradient(135deg, #14c9bc, #0a8f86); color: #031018; font-weight: 700; box-shadow: 0 8px 28px rgba(18,181,169,.32); }
.btn-copper:hover, .btn-teal:hover { color: #031018; filter: brightness(1.08); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.04); }
.kicker { letter-spacing: .18em; text-transform: uppercase; color: var(--teal); font-size: .78rem; margin: 0 0 .4rem; }
h1, h2, h3 { font-family: var(--font-d); line-height: 1.15; margin: 0 0 .6rem; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); background: linear-gradient(180deg, #fff 20%, var(--teal-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }

.hero { position: relative; overflow: hidden; }
.hero--banner {
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(18, 181, 169, .12), transparent 62%),
    var(--navy);
  padding: 0;
}
.hero-shell {
  width: 100%;
  max-width: none;
}
.hero-stage {
  position: relative;
  width: 100%;
}
.hero-media {
  position: relative;
  width: 100%;
  height: clamp(520px, min(68vw, 88vh), 920px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(18, 181, 169, .08), transparent 58%),
    linear-gradient(180deg, #07182c 0%, #061524 100%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility 0s linear .45s;
}
.hero-slide.is-on {
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease;
}
.hero-slide__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.hero-slide.is-on .hero-slide__img {
  animation: heroImgIn .45s ease both;
}
@keyframes heroImgIn {
  from { opacity: .92; }
  to { opacity: 1; }
}
.hero-dock {
  position: relative;
  min-height: 3.25rem;
  padding: 1rem 0 1.15rem;
}
.hero-dock__panel {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-dock__panel.is-on { display: flex; }
.hero-dock__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}
.hero-copy { position: relative; z-index: 2; padding: 16vh 0 12vh; max-width: 640px; }

.sister-network {
  border-radius: 16px;
  border: 1px solid rgba(18, 181, 169, .32);
  background: linear-gradient(135deg, rgba(6, 21, 37, .92) 0%, rgba(12, 36, 68, .88) 100%);
  padding: 1rem 1.15rem;
}
.sister-network__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.sister-network__badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin-bottom: .35rem;
}
.sister-network__copy p,
.sister-network__desc {
  margin: .25rem 0 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.sister-network__link a {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}
.sister-network__link a:hover { color: var(--teal-2); }
.sister-network__label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(95, 246, 234, .75);
  margin-bottom: .2rem;
}
.sister-network__arrow {
  float: left;
  font-size: 1.4rem;
  color: var(--teal-2);
  margin-right: .65rem;
  line-height: 1;
}
.footer-pill--external {
  border-style: dashed;
}
.footer-sister-band {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.25rem 0 0;
  margin-top: .5rem;
}
@media (max-width: 720px) {
  .sister-network__inner { grid-template-columns: 1fr; }
}
.home-scene {
  padding: 3rem 0 2.5rem;
}
.home-scene__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.home-scene__head h2 { margin-bottom: .65rem; }
.home-scene__head .text-teal { color: var(--teal-2); }
.home-scene__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(72vw, 520px);
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(18, 181, 169, .28);
  background: linear-gradient(145deg, #0c2444 0%, #061524 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.home-scene__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.home-scene__video.is-playing {
  opacity: 1;
  z-index: 3;
}
.home-scene__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2;
}
.home-scene__canvas.is-active {
  display: block;
}
.home-scene__video.is-playing ~ .home-scene__canvas.is-active {
  display: none;
}
.home-scene__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.home-scene__bubble {
  position: absolute;
  max-width: min(320px, 44vw);
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(18, 181, 169, .4);
  background: rgba(255, 255, 255, .97);
  color: #061525;
  font-size: .8rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  transition: opacity .85s ease, transform .85s ease;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .32);
}
.home-scene__bubble p { margin: .45rem 0 0; }
.home-scene__step {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.home-scene__avatar {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .22rem .55rem;
  border-radius: 999px;
}
.home-scene__avatar--driver { background: rgba(255, 120, 90, .18); color: #8a2818; }
.home-scene__avatar--think { background: rgba(18, 181, 169, .16); color: #0a6b64; }
.home-scene__avatar--corp { background: rgba(6, 21, 37, .12); color: #0a4a46; border: 1px solid rgba(18, 181, 169, .35); }
.home-scene__avatar--tow { background: rgba(240, 160, 32, .22); color: #7a4800; }
.home-scene__bubble--a { left: 7%; top: 8%; }
.home-scene__bubble--b { left: 5%; top: 36%; }
.home-scene__bubble--c {
  right: 5%; top: 10%;
  max-width: min(340px, 46vw);
  background: rgba(6, 21, 37, .95);
  color: #b8f5f0;
  border-color: rgba(18, 181, 169, .55);
}
.home-scene__bubble--c .home-scene__step { color: rgba(95, 246, 234, .65); }
.home-scene__bubble--d {
  right: 6%; bottom: 22%;
  background: rgba(255, 252, 245, .98);
  border-color: rgba(240, 160, 32, .45);
}
.home-scene__bubble--e {
  left: 50%; bottom: 8%;
  transform: translate(-50%, 12px) scale(.97);
  max-width: min(380px, 88vw);
  text-align: center;
  background: rgba(6, 21, 37, .92);
  color: #e8f4f3;
  border-color: rgba(18, 181, 169, .5);
}
.home-scene__bubble--e .home-scene__step { color: rgba(95, 246, 234, .6); }
.home-scene[data-phase="2"] .home-scene__bubble--a,
.home-scene[data-phase="3"] .home-scene__bubble--b,
.home-scene[data-phase="4"] .home-scene__bubble--c,
.home-scene[data-phase="5"] .home-scene__bubble--d,
.home-scene[data-phase="6"] .home-scene__bubble--e {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.home-scene[data-phase="6"] .home-scene__bubble--e {
  transform: translate(-50%, 0) scale(1);
}
.home-scene[data-phase="3"] .home-scene__bubble--a { opacity: .4; transform: translateY(-4px) scale(.96); }
.home-scene[data-phase="4"] .home-scene__bubble--a,
.home-scene[data-phase="4"] .home-scene__bubble--b { opacity: .28; }
.home-scene[data-phase="5"] .home-scene__bubble--a,
.home-scene[data-phase="5"] .home-scene__bubble--b,
.home-scene[data-phase="5"] .home-scene__bubble--c { opacity: .22; }
.home-scene[data-phase="6"] .home-scene__bubble--a,
.home-scene[data-phase="6"] .home-scene__bubble--b,
.home-scene[data-phase="6"] .home-scene__bubble--c,
.home-scene[data-phase="6"] .home-scene__bubble--d { opacity: .15; }
.home-scene__badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 5;
  padding: .45rem .75rem;
  border-radius: 10px;
  background: rgba(6, 21, 37, .82);
  border: 1px solid rgba(18, 181, 169, .35);
  font-size: .72rem;
  color: var(--muted);
  backdrop-filter: blur(8px);
}
.home-scene__badge strong { display: block; color: var(--teal-2); font-size: .78rem; margin-top: .15rem; }
.home-scene__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.home-scene.is-static .home-scene__canvas { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.is-on .hero-slide__img { animation: none; }
  .home-scene__bubble { opacity: 1; transform: none; position: relative; max-width: none; margin-bottom: .5rem; }
  .home-scene__overlay { position: relative; display: grid; gap: .5rem; padding: 1rem; }
  .home-scene__stage { aspect-ratio: auto; min-height: 0; }
}
@media (max-width: 640px) {
  .home-scene__bubble { font-size: .72rem; max-width: 48vw; padding: .65rem .8rem; }
  .home-scene__bubble--b { top: 30%; }
  .home-scene__bubble--c { top: 8%; max-width: 50vw; }
  .home-scene__bubble--d { bottom: 18%; }
  .home-scene__bubble--e { bottom: 6%; font-size: .7rem; }
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 4;
  padding-bottom: .35rem;
}
.hero-dots--banner button {
  width: 36px; height: 4px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.22); cursor: pointer;
  transition: transform .25s, background .25s, width .25s;
}
.hero-dots--banner button.is-on {
  background: linear-gradient(90deg, var(--brand-teal), var(--teal-2));
  width: 52px; transform: none;
  box-shadow: 0 0 18px rgba(18,181,169,.45);
}
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #3a5568; cursor: pointer; transition: transform .2s, background .2s; }
.hero-dots button.is-on { background: var(--teal); transform: scale(1.15); }
.hero-progress {
  position: relative;
  height: 3px;
  z-index: 4;
  background: rgba(255,255,255,.06);
}
.hero-progress--banner { background: rgba(11,37,69,.85); }
.hero-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand-teal), var(--teal-2)); }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(18,181,169,.4);
  background: rgba(11,37,69,.82); color: #fff; font-size: 1.6rem; line-height: 1;
  cursor: pointer; backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s, transform .2s;
  display: grid; place-items: center; padding: 0 0 2px;
}
.hero-nav:hover { background: rgba(18,181,169,.25); border-color: var(--brand-teal); color: #fff; }
.hero-nav--prev { left: clamp(8px, 2vw, 24px); }
.hero-nav--next { right: clamp(8px, 2vw, 24px); }
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 1280px) {
  .hero-media {
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: min(94vw, 560px);
    max-height: none;
  }
  .hero-dock { padding: .75rem 0 .85rem; }
  .hero-dock__actions { justify-content: stretch; }
  .hero-dock__actions .btn { flex: 1 1 calc(50% - 5px); min-width: 0; justify-content: center; }
  .hero-nav { width: 38px; height: 38px; font-size: 1.35rem; }
  .hero-nav--prev { left: 6px; }
  .hero-nav--next { right: 6px; }
}

.section { padding: 5.5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(0,201,190,.06), transparent); }
.section-head { margin-bottom: 2rem; }
.pkg-grid, .post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.pkg-card, .post-card, .form-card, .contact-card, .pkg-side {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: 1.4rem; backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease;
}
.pkg-card:hover, .post-card:hover { transform: translateY(-4px); border-color: rgba(0,201,190,.45); }
.pkg-card ul, .pkg-side ul { padding-left: 1.1rem; color: var(--muted); }
.sticker {
  position: absolute; top: -12px; right: 16px;
  background: var(--sticker, var(--teal));
  color: #031018; font-weight: 800; padding: .35rem .7rem;
  border-radius: 999px; transform: rotate(-8deg);
  animation: sticker 2.8s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,201,190,.35);
}
.sticker-inline { position: static; display: inline-block; margin-top: 1rem; }
@keyframes sticker { 50% { transform: rotate(6deg) scale(1.06); } }

.post-cover { display: block; aspect-ratio: 16/10; overflow: hidden; border-radius: 14px; background: linear-gradient(145deg, var(--navy-2), #041018); border: 1px solid var(--line); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-cover--brand { display: grid; place-items: center; padding: 1rem; }
.post-cover-brand { text-align: center; width: 100%; }
.post-cover-brand img { height: 56px; width: auto; object-fit: contain; opacity: .95; filter: drop-shadow(0 6px 20px rgba(0,201,190,.35)); margin-bottom: .6rem; }
.post-cover-brand span { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-2); line-height: 1.4; padding: 0 .5rem; }

.post-card time, .muted { color: var(--muted); font-size: .9rem; }
.center { text-align: center; margin-top: 2rem; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq-list summary { cursor: pointer; font-weight: 600; }
.page-hero { padding: 7rem 0 2rem; background: radial-gradient(800px 280px at 20% 0%, rgba(0,201,190,.18), transparent); }
.prose { max-width: 70ch; }
.prose-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; align-items: start; }
.article-cover { margin: 0 0 1.6rem; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.article-cover img { display: block; width: 100%; max-height: 360px; object-fit: cover; }
.article-cover--brand { padding: 2rem; background: linear-gradient(145deg, var(--navy-2), #041018); text-align: center; }
.article-cover--brand img { height: 72px; margin: 0 auto; object-fit: contain; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; }

/* —— Contact v2 —— */
.contact-hero {
  padding: 6.5rem 0 3rem;
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(0,201,190,.2), transparent 60%),
    radial-gradient(600px 240px at 85% 20%, rgba(37,211,102,.12), transparent 55%);
}
.contact-hero__inner { display: grid; grid-template-columns: 1.35fr .65fr; gap: 2rem; align-items: stretch; }
.contact-hero__copy h1 { max-width: 18ch; margin-bottom: 1rem; }
.contact-hero__copy .lead { max-width: 52ch; color: var(--muted); }
.contact-hero__copy .lead strong { color: var(--teal-2); }
.contact-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.contact-hero__panel {
  display: grid; gap: .85rem; align-content: center;
  padding: 1.25rem; border-radius: 20px;
  border: 1px solid rgba(0,201,190,.28);
  background: linear-gradient(165deg, rgba(11,37,69,.75), rgba(4,16,28,.9));
}
.contact-stat {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .85rem 1rem; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
}
.contact-stat__val { font-family: var(--font-d); font-size: 1.35rem; font-weight: 800; color: #fff; }
.contact-stat__lbl { font-size: .78rem; color: var(--muted); }

.contact-chips {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.contact-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 1rem 1.1rem; border-radius: 16px;
  border: 1px solid var(--line); background: var(--card);
  text-decoration: none; color: inherit; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.contact-chip:hover { border-color: rgba(0,201,190,.45); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.22); color: inherit; }
.contact-chip strong { display: block; font-size: .95rem; color: #fff; line-height: 1.25; }
.contact-chip small { display: block; color: var(--muted); font-size: .78rem; margin-top: .15rem; }
.contact-chip--wa { border-color: rgba(37,211,102,.35); background: linear-gradient(145deg, rgba(37,211,102,.12), rgba(11,37,69,.6)); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.contact-side { display: flex; flex-direction: column; gap: 18px; }
.contact-card-v2 {
  padding: 1.35rem; border-radius: 22px;
  border: 1px solid var(--line); background: var(--card);
}
.contact-card-v2 h2 { margin: 0 0 1rem; font-size: 1.2rem; }
.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-info-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-info-list strong { display: block; color: #fff; font-size: .88rem; margin-bottom: .2rem; }
.contact-info-list p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.contact-info-list a { color: var(--teal-2); }
.contact-side__cta { margin-top: 1.15rem; }

.contact-map-mini {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  background: #041018;
}
.contact-map-mini iframe { display: block; width: 100%; height: 200px; border: 0; }
.contact-map-link {
  display: block; padding: .65rem 1rem; font-size: .85rem; text-align: center;
  color: var(--teal-2); border-top: 1px solid var(--line);
}

.contact-form-v2__head h2 { margin: 0 0 .35rem; }
.contact-form-v2__head p { margin: 0 0 1.25rem; color: var(--muted); font-size: .92rem; }
.contact-form-v2__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px;
}
.contact-form-v2 .field { display: block; margin-bottom: .15rem; }
.contact-form-v2 .field span { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; color: #d4e4ec; }
.contact-form-v2 .field span em { color: var(--teal-2); font-style: normal; }
.contact-form-v2 .field--full { grid-column: 1 / -1; }
.contact-form-v2 input,
.contact-form-v2 textarea,
.contact-form-v2 select {
  width: 100%; padding: .78rem .95rem; border-radius: 12px;
  border: 1px solid var(--line); background: #041018; color: var(--ink);
  font: inherit; transition: border-color .2s, box-shadow .2s;
}
.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus,
.contact-form-v2 select:focus {
  outline: none; border-color: rgba(0,201,190,.55);
  box-shadow: 0 0 0 3px rgba(0,201,190,.12);
}
.contact-form-v2 select { cursor: pointer; }
.field-hint { display: block; margin-top: .35rem; font-size: .75rem; color: var(--muted); text-align: right; }

.contact-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 1rem 0; font-size: .82rem; color: var(--muted); line-height: 1.45;
}
.contact-consent input { margin-top: .2rem; flex-shrink: 0; accent-color: var(--teal); }
.contact-consent a { color: var(--teal-2); }

.contact-form-v2__preview {
  margin: 1rem 0; padding: 1rem; border-radius: 14px;
  border: 1px dashed rgba(37,211,102,.35);
  background: rgba(37,211,102,.06);
}
.contact-form-v2__preview pre {
  margin: .5rem 0 0; white-space: pre-wrap; word-break: break-word;
  font-family: ui-monospace, monospace; font-size: .78rem; line-height: 1.45;
  color: #c8e6e2; max-height: 180px; overflow: auto;
}
.contact-form-v2__actions { margin-top: 1.25rem; }
.contact-form-v2__note { margin: .75rem 0 0; font-size: .8rem; color: var(--muted); }

.is-hidden { display: none !important; }

/* —— Mahrumiyet hesaplayıcı —— */
.calc-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.calc-hero__inner { max-width: 820px; }
.calc-hero__copy h1 { margin: .35rem 0 .75rem; font-size: clamp(1.65rem, 3.2vw, 2.35rem); }
.calc-hero__copy .lead { color: var(--muted); max-width: 62ch; }
.calc-hero__stats {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem;
}
.calc-widget {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.calc-widget--compact .calc-info { display: none; }
.calc-widget__intro h2 { margin: .25rem 0 .5rem; font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
.calc-widget__intro--compact h2 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
.calc-widget__lead { color: var(--muted); margin: 0 0 1.25rem; font-size: .92rem; max-width: 65ch; }
.calc-widget__body {
  display: grid; gap: 1.25rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: start;
}
.calc-widget__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px;
}
.calc-widget__form .field { display: block; margin-bottom: .85rem; }
.calc-widget__form .field span {
  display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; color: #d4e4ec;
}
.calc-widget__form .field span em { color: var(--teal-2); font-style: normal; }
.calc-widget__form .field--full { grid-column: 1 / -1; }
.calc-widget__form input,
.calc-widget__form select {
  width: 100%; padding: .78rem .95rem; border-radius: 12px;
  border: 1px solid var(--line); background: #041018; color: var(--ink);
  font: inherit; transition: border-color .2s, box-shadow .2s;
}
.calc-widget__form input:focus,
.calc-widget__form select:focus {
  outline: none; border-color: rgba(0,201,190,.55);
  box-shadow: 0 0 0 3px rgba(0,201,190,.12);
}
.calc-widget__form select { cursor: pointer; }
.calc-result {
  padding: 1.25rem; border-radius: 18px;
  border: 1px solid rgba(0,201,190,.28);
  background: linear-gradient(160deg, rgba(0,201,190,.08), rgba(11,37,69,.4));
}
.calc-result__head { margin-bottom: .75rem; }
.calc-result__label {
  display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .35rem;
}
.calc-result__value {
  display: block; font-family: var(--font-display, Syne, sans-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem); color: var(--teal-2); line-height: 1.2;
}
.calc-result__range { display: block; margin-top: .35rem; font-size: .82rem; }
.calc-result__formula { margin: 0 0 1rem; font-size: .84rem; color: var(--muted); }
.calc-result__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-info { font-size: .9rem; }
.calc-info h3 { margin: 0 0 .65rem; font-size: 1rem; }
.calc-info ul { margin: .5rem 0; padding-left: 1.1rem; }
.calc-info li { margin-bottom: .35rem; }
.calc-disclaimer { margin-top: 1rem; color: var(--muted); }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c47);
  color: #fff; font-weight: 800; border: none;
  box-shadow: 0 10px 30px rgba(37,211,102,.28);
}
.btn-wa:hover { color: #fff; filter: brightness(1.06); }
.btn-lg { padding: .95rem 1.35rem; font-size: 1rem; border-radius: 14px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

.contact-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background-color: currentColor; opacity: .95;
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
  mask: var(--contact-icon) center / contain no-repeat;
}
.contact-icon--wa { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12c0 1.89.525 3.66 1.438 5.168L2 22l4.832-1.438A9.955 9.955 0 0012 22c5.523 0 10-4.477 10-10S17.523 2 12 2zm0 18.182a8.18 8.18 0 01-4.126-1.115l-.295-.175-2.867.853.853-2.867-.175-.295A8.18 8.18 0 014.818 12c0-4.515 3.667-8.182 8.182-8.182S21.182 7.485 21.182 12 17.515 20.182 12 20.182z'/%3E%3C/svg%3E"); color: #fff; }
.contact-chip .contact-icon--wa { color: #25d366; }
.contact-icon--tel { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300c9be'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E"); color: var(--teal-2); }
.contact-icon--mail { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300c9be'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E"); color: var(--teal-2); }
.contact-icon--pin { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300c9be'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); color: var(--teal-2); }
.contact-icon--clock { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300c9be'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E"); color: var(--teal-2); }

.contact-map-section { padding-top: 2rem; }
.contact-map-section__head { text-align: center; max-width: 640px; margin-inline: auto; }
.contact-map-full {
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.contact-map-full iframe { display: block; width: 100%; height: 420px; border: 0; }
.contact-map-full__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 1rem 1.25rem; background: rgba(11,37,69,.85); border-top: 1px solid var(--line);
}
.contact-map-full__bar p { margin: 0; color: var(--muted); font-size: .92rem; }
.contact-map-full__btns { display: flex; gap: 8px; flex-wrap: wrap; }

.form-card label, .form-card input, .form-card textarea { display: block; width: 100%; }
.form-card input, .form-card textarea {
  margin: .35rem 0 1rem; padding: .75rem .9rem; border-radius: 12px;
  border: 1px solid var(--line); background: #041018; color: var(--ink);
}
.hp { position: absolute; left: -9999px; }
.alert { padding: .8rem 1rem; border-radius: 12px; margin-bottom: 1rem; }
.alert-ok { background: rgba(0,201,190,.12); }
.alert-err { background: rgba(180,70,60,.18); }
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 2rem; }
.pager a { padding: .4rem .7rem; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); }
.pager a.is-on { background: var(--teal); color: #031018; }
.site-footer {
  margin-top: 4rem;
  background: linear-gradient(180deg, #061524 0%, #040e1a 100%);
  border-top: 1px solid rgba(18, 181, 169, .18);
}
.footer-main { padding: 3rem 0 2.25rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.footer-col--brand { max-width: 22rem; }
.footer-brand { display: inline-block; margin-bottom: .85rem; }
.footer-logo { height: 40px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.footer-brand:hover .logo-plate { box-shadow: 0 6px 22px rgba(0,201,190,.25); }
.footer-tag {
  margin: 0 0 1rem;
  color: var(--teal-2);
  font-size: .92rem;
  line-height: 1.45;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  font-style: normal;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}
.footer-contact a { color: var(--ink); font-weight: 600; }
.footer-contact a:hover { color: var(--teal-2); }
.footer-heading {
  margin: 0 0 .85rem;
  font-family: var(--font-d);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-2);
  font-weight: 700;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s, transform .2s;
}
.footer-links a:hover { color: var(--teal-2); }
.footer-col--cta {
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(18, 181, 169, .28);
  background: rgba(11, 37, 69, .55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}
.footer-hotline {
  margin: 0 0 .85rem;
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.footer-hotline a { color: #fff; }
.footer-hotline a:hover { color: var(--teal-2); }
.footer-cta-stack {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-cta-stack .btn { width: 100%; justify-content: center; }
.footer-seo-band {
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(4, 14, 26, .65);
}
.footer-heading--band { margin-bottom: .95rem; }
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: .42rem .78rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 181, 169, .22);
  background: rgba(11, 37, 69, .45);
  color: var(--muted);
  font-size: .82rem;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-pill:hover {
  color: var(--teal-2);
  border-color: rgba(18, 181, 169, .45);
  background: rgba(18, 181, 169, .1);
}
.footer-pill--more {
  color: var(--teal-2);
  border-style: dashed;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1rem 0 2rem;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.1rem;
}
.footer-legal-links a {
  color: var(--muted);
  font-size: .84rem;
}
.footer-legal-links a:hover { color: var(--teal-2); }
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .25rem;
  color: var(--muted);
  font-size: .84rem;
  text-align: right;
}
.footer-meta__note { opacity: .75; font-size: .78rem; }
.seo-topic-links { margin-top: 2.5rem; padding: 1.25rem; border-radius: 18px; border: 1px solid var(--line); background: rgba(11,37,69,.45); }
.seo-topic-links h2 { font-size: 1.1rem; margin: 0 0 .75rem; }
.seo-topic-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.seo-topic-links a { color: var(--teal-2); font-size: .92rem; }
.faq-list--seo details { background: rgba(11,37,69,.35); border-radius: 14px; padding: .25rem .85rem; margin-bottom: .5rem; border: 1px solid var(--line); }
.html-sitemap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.html-sitemap__block {
  padding: 1.25rem; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(11,37,69,.45);
}
.html-sitemap__block--wide { grid-column: 1 / -1; }
.html-sitemap h2 { font-size: 1.1rem; margin-bottom: .75rem; color: var(--teal-2); }
.html-sitemap ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.html-sitemap a { color: var(--ink); font-size: .92rem; }
.html-sitemap a:hover { color: var(--teal-2); }

/* 360 Asistan */
.as360 { position: fixed; right: 16px; bottom: 16px; z-index: 60; }
.as360-toggle {
  width: 72px; height: 72px; border-radius: 50%; border: 0; cursor: pointer;
  background: radial-gradient(circle at 30% 30%, var(--teal-2), #0b7f78 55%, var(--navy-2));
  color: #fff; font-weight: 800; box-shadow: 0 12px 40px rgba(0,201,190,.45);
  position: relative;
}
.as360.is-open .as360-toggle { animation: talkPulse .55s ease-in-out infinite; }
.as360-live { position: absolute; right: 6px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--teal-2); animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 70% { box-shadow: 0 0 0 12px rgba(95,246,234,0); } 100% { box-shadow: 0 0 0 0 rgba(95,246,234,0); } }
@keyframes talkPulse { 50% { transform: scale(1.06); } }
.as360-panel {
  position: absolute; right: 0; bottom: 86px; width: min(380px, calc(100vw - 24px));
  max-height: min(78vh, 640px); display: flex; flex-direction: column;
  background: rgba(4, 14, 26, .96); border: 1px solid var(--line); border-radius: 22px;
  backdrop-filter: blur(18px); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.as360-panel[hidden] { display: none !important; }
.as360-head { padding: 14px 16px; border-bottom: 1px solid var(--line); }
.as360-head strong { display: block; font-family: var(--font-d); }
.as360-head small { color: var(--muted); font-size: .78rem; }
.as360-chat { flex: 1; overflow: auto; padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; min-height: 140px; }
.as360-msg { padding: 10px 12px; border-radius: 14px; font-size: .92rem; line-height: 1.55; max-width: 92%; }
.as360-msg.bot { background: rgba(0,201,190,.12); border: 1px solid var(--line); align-self: flex-start; }
.as360-msg.user { background: rgba(11,37,69,.9); align-self: flex-end; }
.as360-vehicle { padding: 10px 14px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.as360-vehicle input, .as360-vehicle select {
  padding: .55rem .65rem; border-radius: 10px; border: 1px solid var(--line);
  background: #041018; color: var(--ink); font: inherit; font-size: .85rem;
}
.as360-vehicle label { grid-column: 1 / -1; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin: 0; }
.as360-vehicle .full { grid-column: 1 / -1; }
.as360-reco { padding: 0 14px 8px; display: flex; flex-direction: column; gap: 8px; max-height: 160px; overflow: auto; }
.as360-reco-card { padding: 10px; border-radius: 12px; border: 1px solid var(--line); background: rgba(11,37,69,.6); font-size: .85rem; }
.as360-reco-card a { font-weight: 700; }
.as360-foot { padding: 10px 14px 14px; border-top: 1px solid var(--line); display: flex; gap: 8px; }
.as360-foot input { flex: 1; padding: .65rem .75rem; border-radius: 999px; border: 1px solid var(--line); background: #041018; color: var(--ink); }
.as360-foot button { border: 0; border-radius: 999px; padding: .65rem 1rem; background: linear-gradient(90deg, #00d4c8, #08948c); color: #031018; font-weight: 700; cursor: pointer; }
.as360-tools { display: flex; gap: 6px; padding: 0 14px 10px; flex-wrap: wrap; }
.as360-tools button { border: 1px solid var(--line); background: transparent; color: var(--ink); border-radius: 999px; padding: 5px 10px; font-size: .72rem; cursor: pointer; }
.as360-typing span { display: inline-block; width: 6px; height: 6px; margin: 0 2px; border-radius: 50%; background: var(--teal); animation: as360dot 1s infinite; }
.as360-typing span:nth-child(2) { animation-delay: .15s; }
.as360-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes as360dot { 50% { opacity: .2; transform: translateY(3px); } }
.as360-links { padding: 0 14px 8px; display: flex; flex-direction: column; gap: 6px; }
.as360-links:not([hidden]) { display: flex; }
.as360-link { font-size: .82rem; padding: 8px 10px; border-radius: 10px; border: 1px solid var(--line); background: rgba(0,201,190,.08); color: var(--teal-2); }
.as360-followups { padding: 0 14px 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.as360-followups:not([hidden]) { display: flex; }
.as360-follow { border: 1px solid rgba(0,201,190,.35); background: rgba(0,201,190,.1); color: var(--ink); border-radius: 999px; padding: 5px 10px; font-size: .72rem; cursor: pointer; }
.as360-follow:hover { background: rgba(0,201,190,.22); }
.as360-msg strong { color: #fff; }
.as360-tag { font-style: normal; font-size: .68rem; color: var(--teal-2); margin-right: 4px; }
.as360.is-speaking .as360-toggle { box-shadow: 0 0 0 3px rgba(0,201,190,.45); }

/* —— Paket kartları v2 —— */
.pkg-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pkg-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(11, 37, 69, .88), rgba(4, 16, 28, .92));
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.pkg-card-v2::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pkg-accent, var(--teal)), transparent);
  opacity: .85;
}
.pkg-card-v2__glow {
  position: absolute;
  width: 220px; height: 220px;
  top: -80px; right: -60px;
  background: var(--pkg-accent, var(--teal));
  filter: blur(80px);
  opacity: .12;
  pointer-events: none;
}
.pkg-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 201, 190, .5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 201, 190, .12);
}
.pkg-card-v2.is-featured {
  grid-column: span 1;
  border-color: rgba(0, 201, 190, .45);
  box-shadow: 0 0 0 1px rgba(0, 201, 190, .2), 0 16px 40px rgba(0, 201, 190, .12);
}
.pkg-card-v2.has-discount .pkg-price-main { color: #7ef9f0; }
.pkg-card-v2__head { display: flex; flex-direction: column; gap: .65rem; }
.pkg-card-v2__tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; min-height: 1.6rem; }
.pkg-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--tag-color, var(--teal)) 55%, transparent);
  background: color-mix(in srgb, var(--tag-color, var(--teal)) 18%, transparent);
  color: #e8fffd;
}
.pkg-badge {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 800;
  padding: .3rem .65rem;
  border-radius: 999px;
  color: #031018;
  transform: rotate(-4deg);
  box-shadow: 0 6px 18px rgba(0, 201, 190, .3);
}
.pkg-card-v2__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem .5rem; }
.pkg-price-old {
  font-size: .95rem;
  color: var(--muted);
  text-decoration: line-through;
  opacity: .75;
}
.pkg-price-main {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pkg-price-limit { font-size: 1.5rem; }
.pkg-price-period { font-size: .82rem; color: var(--muted); }
.pkg-price-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(255, 123, 114, .18);
  border: 1px solid rgba(255, 123, 114, .45);
  color: #ffb4ae;
}
.pkg-card-v2__title { margin: 0; font-size: 1.35rem; }
.pkg-card-v2__title a { color: #fff; }
.pkg-card-v2__excerpt { margin: 0; color: var(--muted); font-size: .95rem; }
.pkg-card-v2__vehicles { margin: 0; font-size: .82rem; color: var(--teal-2); opacity: .85; }
.pkg-card-v2__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.pkg-card-v2__features li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--muted);
  padding: .45rem .55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .04);
}
.pkg-card-v2__features strong { display: block; color: var(--ink); font-weight: 600; }
.pkg-card-v2__features em { display: block; font-style: normal; color: var(--teal-2); font-size: .82rem; margin-top: .1rem; }
.pkg-feat-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 201, 190, .14);
  border: 1px solid rgba(0, 201, 190, .25);
  display: grid; place-items: center;
  font-size: .75rem;
  color: var(--teal-2);
}
.pkg-feat-icon::before { content: "✓"; font-weight: 800; }
.pkg-feat-icon[data-icon="alert"]::before { content: "!"; }
.pkg-feat-icon[data-icon="truck"]::before { content: "⛟"; font-size: .65rem; }
.pkg-feat-icon[data-icon="shield"]::before { content: "🛡"; font-size: .7rem; }
.pkg-card-v2__foot { display: flex; gap: 8px; flex-wrap: wrap; margin-top: .35rem; }
.btn-sm { padding: .55rem .85rem; font-size: .88rem; }
.pkg-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: .75rem; }
.pkg-detail-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem; margin-top: 1rem; }
.pkg-side-v2 { border-top: 3px solid var(--pkg-accent, var(--teal)); }
.pkg-side-features { list-style: none; padding: 0; margin: 0 0 1rem; }
.pkg-side-features li {
  display: flex; gap: .65rem; align-items: flex-start;
  padding: .55rem 0; border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.pkg-side-features span { display: block; color: var(--teal-2); font-size: .85rem; }

/* —— Blog v2 —— */
.blog-hero {
  padding: 6.5rem 0 2.5rem;
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(0,201,190,.2), transparent 55%),
    radial-gradient(600px 240px at 85% 20%, rgba(18,74,122,.35), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.blog-hero__inner { display: grid; gap: 1.8rem; }
.blog-hero__stats {
  display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 1.2rem;
  font-size: .92rem; color: var(--muted);
}
.blog-hero__stats strong { color: var(--teal-2); }
.blog-hero__topics {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.blog-hero__topics span {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .75rem; border-radius: 999px;
  border: 1px solid rgba(0,201,190,.28); background: rgba(0,201,190,.08); color: var(--teal-2);
}
.blog-index { padding-top: 2.5rem; }
.blog-news-strip { padding-top: 2rem; padding-bottom: .5rem; }
.blog-news-strip__head { margin-bottom: 1.25rem; }
.blog-news-strip__head h2 { margin: .35rem 0 0; font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.blog-grid-v2--news { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.blog-grid-v2--home { margin-top: .5rem; }

.blog-card-v2 {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(11,37,69,.88), rgba(4,16,28,.94));
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.blog-card-v2::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: .8;
}
.blog-card-v2__glow {
  position: absolute; width: 180px; height: 180px; top: -60px; right: -40px;
  background: var(--teal); filter: blur(70px); opacity: .1; pointer-events: none;
}
.blog-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(0,201,190,.45);
  box-shadow: 0 20px 48px rgba(0,0,0,.32);
}
.blog-card-v2__cover {
  display: block; position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(145deg, var(--navy-2), #041018);
}
.blog-card-v2__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card-v2:hover .blog-card-v2__cover img { transform: scale(1.04); }
.blog-card-v2__cover--brand { display: grid; place-items: center; padding: 1.5rem; }
.blog-card-v2__brand { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.blog-card-v2__brand-logo img { height: 36px; width: auto; object-fit: contain; display: block; }
.blog-card-v2__brand > span:last-child {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-2);
}
.blog-card-v2__topic {
  position: absolute; left: 14px; top: 14px; z-index: 1;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .32rem .6rem; border-radius: 999px;
  background: rgba(6,21,37,.82); border: 1px solid rgba(0,201,190,.35); color: var(--teal-2);
  backdrop-filter: blur(8px);
}
.blog-card-v2__body { display: flex; flex-direction: column; gap: .65rem; padding: 1.25rem 1.35rem 1.35rem; flex: 1; }
.blog-card-v2__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; font-size: .82rem; color: var(--muted); }
.blog-card-v2__dot { opacity: .5; }
.blog-card-v2__title { margin: 0; font-size: 1.2rem; line-height: 1.3; }
.blog-card-v2__title a { color: #fff; }
.blog-card-v2__title a:hover { color: var(--teal-2); }
.blog-card-v2__excerpt { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; flex: 1; }
.blog-card-v2__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: .65rem 1rem;
  margin-top: .35rem; padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8rem; color: var(--muted);
}
.blog-card-v2__stat {
  padding: .22rem .55rem; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
}
.blog-card-v2__more { margin-left: auto; font-weight: 700; color: var(--teal-2); font-size: .88rem; }
.blog-card-v2__more span { transition: transform .2s; display: inline-block; }
.blog-card-v2:hover .blog-card-v2__more span { transform: translateX(4px); }

.blog-card-v2--featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 2rem;
  border-color: rgba(0,201,190,.38);
  box-shadow: 0 0 0 1px rgba(0,201,190,.12), 0 20px 50px rgba(0,201,190,.1);
}
.blog-card-v2--featured .blog-card-v2__cover { aspect-ratio: auto; min-height: 280px; }
.blog-card-v2--featured .blog-card-v2__body { padding: 2rem 2rem 2rem 1.5rem; justify-content: center; }
.blog-card-v2--featured .blog-card-v2__title { font-size: clamp(1.5rem, 3vw, 2rem); }
.blog-card-v2--featured .blog-card-v2__excerpt { font-size: 1rem; max-width: 42ch; }

.blog-pager {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 3rem;
}
.blog-pager__nums { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.blog-pager__nums a, .blog-pager__prev, .blog-pager__next {
  padding: .5rem .85rem; border-radius: 10px; border: 1px solid var(--line);
  color: var(--ink); font-size: .9rem;
}
.blog-pager__nums a.is-on { background: var(--teal); color: #031018; font-weight: 700; border-color: transparent; }
.blog-pager__prev, .blog-pager__next { font-weight: 600; color: var(--teal-2); }
.blog-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.blog-cta-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2rem; border-radius: 24px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(11,37,69,.75), rgba(4,16,28,.9));
}
.blog-cta-band__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Blog detay */
.blog-article__hero { position: relative; padding-top: 5rem; }
.blog-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem;
}
.blog-breadcrumb a { color: var(--teal-2); }
.blog-article__head { max-width: 720px; position: relative; z-index: 2; padding-bottom: 2rem; }
.blog-article__topic {
  display: inline-block; margin-bottom: .75rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid rgba(0,201,190,.4); background: rgba(0,201,190,.1); color: var(--teal-2);
}
.blog-article__head h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  background: linear-gradient(180deg, #fff 10%, var(--teal-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.blog-article__lead { font-size: 1.12rem; color: var(--muted); max-width: 58ch; margin: 0 0 1rem; }
.blog-article__meta { display: flex; flex-wrap: wrap; gap: .4rem .65rem; font-size: .88rem; color: var(--muted); }
.blog-article__cover {
  position: relative; margin: 0; max-height: 420px; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.blog-article__cover img { width: 100%; height: 420px; object-fit: cover; display: block; }
.blog-article__cover--brand {
  display: grid; place-items: center; padding: 3rem;
  background: linear-gradient(145deg, var(--navy-2), #041018);
}
.blog-article__brand-plate {
  display: flex; flex-direction: column; align-items: center; gap: .85rem;
  padding: 2.5rem 1rem;
}
.blog-article__brand-plate .logo-plate--card img { height: 44px; width: auto; object-fit: contain; display: block; }
.blog-article__brand-plate > span:last-child {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-2);
}
.blog-article__cover-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,21,37,.55) 0%, transparent 35%, rgba(6,21,37,.85) 100%);
}
.blog-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2.5rem;
  padding: 3rem 0 4rem; align-items: start;
}
.blog-prose {
  font-size: 1.05rem; line-height: 1.75; color: #d4e4ec;
}
.blog-prose h2, .blog-prose h3 {
  font-family: var(--font-d); color: #fff; margin: 2rem 0 .85rem;
  scroll-margin-top: 100px;
}
.blog-prose h2 { font-size: 1.65rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.blog-prose h3 { font-size: 1.25rem; color: var(--teal-2); }
.blog-prose p { margin: 0 0 1.15rem; }
.blog-prose ul, .blog-prose ol { margin: 0 0 1.25rem; padding-left: 1.4rem; color: var(--muted); }
.blog-prose li { margin-bottom: .45rem; }
.blog-prose li::marker { color: var(--teal); }
.blog-prose a { color: var(--teal-2); text-decoration: underline; text-underline-offset: 3px; }
.blog-prose blockquote {
  margin: 1.5rem 0; padding: 1rem 1.25rem; border-left: 3px solid var(--teal);
  background: rgba(0,201,190,.08); border-radius: 0 14px 14px 0; color: var(--ink);
}
.blog-prose strong { color: #fff; }
.blog-prose img { max-width: 100%; border-radius: 14px; border: 1px solid var(--line); margin: 1rem 0; }

.blog-article__share {
  display: flex; flex-wrap: wrap; align-items: center; gap: .65rem;
  margin: 2.5rem 0 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.blog-article__share > span { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-right: .35rem; }
.blog-share-btn {
  border: 1px solid var(--line); background: rgba(255,255,255,.04);
  color: var(--ink); border-radius: 999px; padding: .45rem .85rem;
  font: inherit; font-size: .82rem; cursor: pointer; text-decoration: none;
}
.blog-share-btn:hover { border-color: rgba(0,201,190,.45); color: var(--teal-2); }

.blog-author-box {
  display: flex; gap: 1rem; padding: 1.25rem 1.35rem;
  border-radius: 18px; border: 1px solid var(--line);
  background: rgba(11,37,69,.5);
}
.blog-author-box__avatar {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px;
  display: grid; place-items: center; font-weight: 800; color: #031018;
  background: linear-gradient(135deg, var(--teal-2), #08948c);
}
.blog-author-box strong { display: block; color: #fff; margin-bottom: .25rem; }
.blog-author-box p { margin: 0; font-size: .9rem; color: var(--muted); }

.blog-aside { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 100px; }
.blog-aside__card {
  padding: 1.25rem; border-radius: 20px; border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(11,37,69,.85), rgba(4,16,28,.92));
}
.blog-aside__card h2 { font-size: 1.15rem; margin: 0 0 .65rem; }
.blog-aside__card .btn { margin-top: .75rem; margin-right: .5rem; }
.blog-aside__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.blog-aside__list a { display: block; padding: .75rem; border-radius: 12px; border: 1px solid transparent; transition: border-color .2s, background .2s; }
.blog-aside__list a:hover { border-color: var(--line); background: rgba(0,201,190,.06); }
.blog-aside__topic { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .2rem; }
.blog-aside__list strong { display: block; color: #fff; font-size: .92rem; line-height: 1.35; margin-bottom: .25rem; }
.blog-aside__list small { color: var(--muted); font-size: .78rem; }

@media (max-width: 1280px) {
  .wrap { width: min(1120px, calc(100% - 24px)); }
  .header-inner { min-height: 68px; gap: 12px; }
  .brand { flex: 1 1 auto; min-width: 0; max-width: calc(100% - 56px); }
  .brand__tag { display: none; }
  .brand__logo { height: 30px; }
  .logo-plate--header { padding: 5px 10px; border-radius: 9px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-drawer {
    flex: 0 0 auto;
    width: auto;
  }
  .header-drawer {
    position: fixed; inset: 0; z-index: 60; display: block;
    visibility: hidden; pointer-events: none;
  }
  .header-drawer.is-open { visibility: visible; pointer-events: auto; }
  .header-drawer__backdrop {
    display: block; position: absolute; inset: 0;
    background: rgba(6, 21, 37, .78);
    backdrop-filter: blur(8px);
    opacity: 0; transition: opacity .3s ease;
  }
  .header-drawer.is-open .header-drawer__backdrop { opacity: 1; }
  .header-drawer__panel {
    position: absolute; top: 72px; left: 12px; right: 12px;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100dvh - 84px); overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    background: linear-gradient(165deg, rgba(11, 37, 69, .98), rgba(4, 16, 28, .98));
    border: 1px solid rgba(18, 181, 169, .38);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
    transform: translateY(-16px) scale(.97);
    opacity: 0;
    transition: transform .32s ease, opacity .32s ease;
  }
  .header-drawer.is-open .header-drawer__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .nav { flex: none; flex-direction: column; gap: 4px; width: 100%; }
  .nav a {
    display: block; padding: 14px 16px; border-radius: 14px;
    font-size: 1.02rem; font-weight: 600; color: var(--ink);
    border: 1px solid transparent;
  }
  .nav a.is-active {
    color: #fff; background: rgba(18, 181, 169, .16);
    border-color: rgba(18, 181, 169, .35);
  }
  .nav a:active { background: rgba(18, 181, 169, .22); }
  .header-cta {
    flex-direction: column; align-items: stretch; gap: 10px;
    width: 100%; margin-top: 10px; padding-top: 12px;
    border-top: 1px solid rgba(18, 181, 169, .22);
  }
  .header-cta .link-phone {
    text-align: center; font-size: 1rem; color: var(--teal-2);
    padding: 8px; border-radius: 12px;
    background: rgba(18, 181, 169, .08);
  }
  .header-cta .btn { width: 100%; justify-content: center; min-height: 46px; }
  .hero-dock__actions .btn { flex: 1 1 100%; padding: .62rem .75rem; font-size: .82rem; }
  .hero-nav { display: none; }
  .contact-chips { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-chip { padding: .85rem; }
  .contact-chip strong { font-size: .85rem; }
  .pkg-grid-v2, .blog-grid-v2--home { grid-template-columns: 1fr; }
  .prose-layout, .contact-grid, .contact-layout, .contact-hero__inner, .footer-grid, .blog-layout { grid-template-columns: 1fr; }
  .footer-col--cta { order: -1; }
  .footer-meta { align-items: flex-start; text-align: left; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
  .contact-form-v2__grid { grid-template-columns: 1fr; }
  .calc-widget__body { grid-template-columns: 1fr; }
  .calc-widget__form { grid-template-columns: 1fr; }
  .calc-result__actions { flex-direction: column; }
  .calc-result__actions .btn { width: 100%; justify-content: center; }
  .contact-hero__actions { flex-direction: column; }
  .contact-hero__actions .btn { width: 100%; justify-content: center; }
  .contact-map-full iframe { height: 260px; }
  .blog-aside { position: static; }
  .blog-card-v2--featured { grid-template-columns: 1fr; }
  .blog-card-v2--featured .blog-card-v2__cover { min-height: 200px; }
  .blog-article__cover img { height: 220px; }
  .footer-pills { gap: .4rem; }
  .footer-pill { font-size: .78rem; padding: .38rem .65rem; }
  .as360-panel { width: calc(100vw - 16px); right: -2px; }
  body.is-nav-open { overflow: hidden; touch-action: none; }
}
@media (max-width: 420px) {
  .contact-chips { grid-template-columns: 1fr; }
  .hero-slide__actions .btn { flex: 1 1 100%; }
}
