/**
 * Öktenler Platform Vinç — Ortak bileşenler
 */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  line-height: 1.2;
  text-align: center;
}

.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.2rem; height: 1.2rem; flex-shrink: 0; }

.btn--accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--primary-dark);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-hover);
  color: #fff;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

.btn--full { width: 100%; }
.btn--lg { min-height: 3.25rem; padding: 0.875rem 1.5rem; font-size: var(--fs-md); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Cards */
.card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover { box-shadow: var(--shadow); }

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-alt);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.card__body h3 { margin: 0; font-size: var(--fs-lg); }
.card__body p { color: var(--muted); flex: 1; margin: 0; }

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

/* Vehicle cards */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.vehicle-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.vehicle-card__media {
  aspect-ratio: 4 / 3;
  background: var(--surface-alt);
  position: relative;
}

.vehicle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 600;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), transparent 55%),
    var(--surface-alt);
}

.vehicle-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.vehicle-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}

.vehicle-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.vehicle-card__body h3 {
  margin: 0;
  font-size: var(--fs-lg);
}

.vehicle-specs {
  display: grid;
  gap: var(--space-2);
  font-size: var(--fs-sm);
}

.vehicle-specs dt {
  color: var(--muted);
  font-weight: 500;
}

.vehicle-specs dd {
  margin: 0 0 var(--space-2);
  color: var(--text);
  font-weight: 600;
}

.vehicle-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.vehicle-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}

.header-top {
  display: none;
  background: #111;
  color: rgba(255,255,255,0.88);
  font-size: var(--fs-sm);
  padding-block: 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.header-top__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.header-top a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.header-top a:hover { color: var(--brand); }

.header-top__social {
  display: flex;
  gap: var(--space-2);
}

.header-top__social a {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
}

.header-top__social svg { width: 0.95rem; height: 0.95rem; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-main);
  background: var(--brand-dark);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--brand);
  flex-shrink: 0;
}

.logo:hover { color: var(--brand); text-decoration: none; }

.logo__mark {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: clamp(2.35rem, 4.8vw, 3.15rem);
  height: clamp(2.35rem, 4.8vw, 3.15rem);
  background: transparent;
  overflow: visible;
}

.logo__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 0;
}

/* Kare yok — sadece dişli üzerinde dairesel hafif parıltı */
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.12) 44%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 220, 180, 0.22) 56%,
    transparent 72%
  );
  background-size: 220% 100%;
  animation: logoGlass 3.2s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 1;
  -webkit-mask-image: radial-gradient(circle, #000 62%, transparent 68%);
  mask-image: radial-gradient(circle, #000 62%, transparent 68%);
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
  line-height: 1;
  min-width: 0;
}

.logo__name {
  position: relative;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(
    105deg,
    #ff6b22 0%,
    #ff6b22 38%,
    #ffe0c4 50%,
    #ff6b22 62%,
    #ff6b22 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: logoGlass 3.2s ease-in-out infinite;
}

.logo__sub {
  display: none; /* eski tire satırı artık kullanılmıyor */
}

.logo__dashes {
  display: none !important;
}

.logo__tag {
  font-size: clamp(0.64rem, 1.35vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
  background: linear-gradient(
    105deg,
    #ffffff 0%,
    #ffffff 40%,
    rgba(255, 255, 255, 0.45) 50%,
    #ffffff 60%,
    #ffffff 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: logoGlass 3.2s ease-in-out infinite;
  animation-delay: 0.45s;
}

@keyframes logoGlass {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .logo__name,
  .logo__tag,
  .logo__mark::after {
    animation: none;
  }
  .logo__name {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--brand);
  }
  .logo__tag {
    background: none;
    -webkit-text-fill-color: unset;
    color: #fff;
  }
  .logo__mark::after { display: none; }
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  color: #fff;
  background: transparent;
}

.nav-toggle svg { width: 1.4rem; height: 1.4rem; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle:not([aria-expanded="true"]) .icon-close { display: none; }

.site-nav {
  position: fixed;
  inset: var(--header-main) 0 auto 0;
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-4);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  max-height: calc(100vh - var(--header-main));
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-nav a {
  display: block;
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 107, 34, 0.22);
  color: #fff;
}

.header-cta { display: none; }

body.nav-open { overflow: hidden; }

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding-block: var(--space-8) var(--space-5);
  margin-bottom: var(--mobile-bar);
}

.site-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

.footer-col h2,
.footer-col h3 {
  color: #fff;
  font-size: var(--fs-md);
  margin-bottom: var(--space-4);
}

.footer-col p,
.footer-col li { font-size: var(--fs-sm); }

.footer-col ul { display: grid; gap: var(--space-2); }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: var(--space-3);
  text-decoration: none;
  color: var(--brand);
}

.footer-brand:hover {
  color: var(--brand);
  text-decoration: none;
}

.footer-brand .logo__mark {
  width: 2.55rem;
  height: 2.55rem;
}

.footer-brand .logo__img,
.footer-brand__logo {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand .logo__name {
  font-size: 1.35rem;
}

.footer-brand .logo__tag {
  color: transparent;
}

.footer-bottom {
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--fs-sm);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
}

.social-links svg { width: 1.2rem; height: 1.2rem; }

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-bar);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: var(--mobile-bar);
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mobile-bar a:last-child { border-right: none; }
.mobile-bar a:hover { background: var(--primary); color: var(--accent); }
.mobile-bar svg { width: 1.2rem; height: 1.2rem; }
.mobile-bar .is-wa { background: var(--whatsapp); }
.mobile-bar .is-wa:hover { background: var(--whatsapp-hover); color: #fff; }

.float-wa {
  display: none;
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: var(--z-bar);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  place-items: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}

.float-wa:hover { background: var(--whatsapp-hover); color: #fff; }
.float-wa svg { width: 1.75rem; height: 1.75rem; }

/* Breadcrumb */
.breadcrumb {
  padding-block: var(--space-4);
  font-size: var(--fs-sm);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--primary); font-weight: 600; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 55%, var(--secondary));
  color: #fff;
  padding-block: var(--space-7);
}

.page-hero h1 { color: #fff; margin-bottom: var(--space-3); }
.page-hero p {
  color: rgba(255,255,255,0.9);
  max-width: 40rem;
  font-size: var(--fs-md);
  margin-bottom: var(--space-5);
}

/* Forms */
.form { display: grid; gap: var(--space-4); }

.form-row {
  display: grid;
  gap: var(--space-4);
}

.form-group { display: grid; gap: var(--space-2); }
.form-group label { font-weight: 500; font-size: var(--fs-sm); }
.required { color: var(--error); }

.form-control {
  width: 100%;
  min-height: 3rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.35);
  outline: none;
}

.form-control[aria-invalid="true"] { border-color: var(--error); }
textarea.form-control { min-height: 7.5rem; resize: vertical; }

.form-error { color: var(--error); font-size: var(--fs-sm); }
.form-success {
  padding: var(--space-4);
  background: var(--success-bg);
  color: var(--success);
  border-radius: var(--radius);
  border: 1px solid #a6d5bb;
}
.form-alert {
  padding: var(--space-4);
  background: var(--error-bg);
  color: var(--error);
  border-radius: var(--radius);
  border: 1px solid #fecdca;
}

.checkbox-group {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Quick quote bar */
.quick-quote {
  background: var(--accent);
  padding-block: var(--space-5);
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
}

.quick-quote__inner {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.quick-quote__head {
  margin-bottom: var(--space-4);
}

.quick-quote__head h2 {
  margin-bottom: var(--space-2);
  font-size: var(--fs-xl);
}

.quick-quote__head p {
  color: var(--muted);
  margin: 0;
}

.quick-quote .form-row {
  grid-template-columns: 1fr;
}

/* FAQ */
.faq-list { display: grid; gap: var(--space-3); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  color: var(--primary);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(-135deg); }

.faq-item__content {
  padding: 0 var(--space-5) var(--space-4);
  color: var(--muted);
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--text);
  font-weight: 500;
  font-size: var(--fs-sm);
}

.filter-btn:hover { border-color: var(--primary); }
.filter-btn[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.03); }

.gallery-item__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(transparent, rgba(8,17,30,0.88));
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-8);
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(8, 17, 30, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.lightbox.is-open { display: flex; }

.lightbox__dialog {
  position: relative;
  max-width: min(90vw, 56rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(90vh - 5rem);
}

.lightbox__img-wrap img {
  max-height: calc(90vh - 5rem);
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
}

.lightbox__caption {
  color: #fff;
  text-align: center;
  font-size: var(--fs-sm);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox__close { top: -0.5rem; right: -0.5rem; }
.lightbox__prev { left: -0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: -0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close svg,
.lightbox__prev svg,
.lightbox__next svg { width: 1.25rem; height: 1.25rem; }

body.lightbox-open { overflow: hidden; }

/* Contact */
.contact-list { display: grid; gap: var(--space-4); }

.contact-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.contact-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--primary);
}

.contact-item__icon svg { width: 1.2rem; height: 1.2rem; }
.contact-item strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.contact-item a {
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16 / 10;
  min-height: 240px;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  padding: var(--space-5);
  text-align: center;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding-block: var(--space-8);
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: var(--space-3); }
.cta-band p {
  color: rgba(255,255,255,0.9);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.cta-band .btn-group { justify-content: center; }

/* Feature / trust */
.feature-grid { display: grid; gap: var(--space-4); }

.feature-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.feature-item__icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff8e1;
  border-radius: var(--radius);
  color: var(--primary);
}

.feature-item__icon svg { width: 1.4rem; height: 1.4rem; }
.feature-item h3 { margin: 0 0 var(--space-2); font-size: var(--fs-md); }
.feature-item p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

/* Process */
.process-list {
  counter-reset: step;
  display: grid;
  gap: var(--space-4);
}

.process-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.process-item::before {
  content: counter(step);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  border-radius: 50%;
}

.process-item h3 { margin: 0 0 var(--space-2); font-size: var(--fs-md); }
.process-item p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

/* References marquee */
.refs-track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  padding-bottom: var(--space-3);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.ref-card {
  flex: 0 0 auto;
  min-width: 10rem;
  scroll-snap-align: start;
  padding: var(--space-5);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  display: grid;
  gap: var(--space-3);
  align-content: center;
  justify-items: center;
}

.ref-card img {
  margin: 0 auto;
  max-height: 3rem;
  width: auto;
  max-width: 8.5rem;
  object-fit: contain;
}

.ref-card__name {
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 600;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
}

.spec-table th {
  width: 42%;
  color: var(--muted);
  font-weight: 500;
}

.spec-table td { font-weight: 600; color: var(--text); }

.tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--surface);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.checklist { display: grid; gap: var(--space-3); }
.checklist li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.checklist li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--success);
}

.value-card {
  padding: var(--space-5);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}

.value-card h3 { margin-bottom: var(--space-2); font-size: var(--fs-md); }
.value-card p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

.error-page { text-align: center; padding-block: var(--space-10); }
.error-page__code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.quote-card h2 { font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.quote-card > p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--space-4); }

.service-cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.service-cta h2 { color: #fff; font-size: var(--fs-lg); }
.service-cta p { color: rgba(255,255,255,0.85); font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.service-cta .btn { width: 100%; margin-bottom: var(--space-2); }
.service-cta .btn:last-child { margin-bottom: 0; }
