:root {
  --red: #e31c23;
  --red-dark: #c01018;
  --red-soft: #fff1f1;
  --ink: #111111;
  --text: #3d3d3d;
  --muted: #6a6a6a;
  --line: #ebebeb;
  --bg: #f5f5f5;
  --white: #ffffff;
  --dark: #161616;
  --dark-2: #1e1e1e;
  --green: #25d366;
  --green-dark: #1ebe57;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  --container: 1180px;
  --header: 92px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 8px);
}

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

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

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
}

.skip:focus {
  left: 8px;
}

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

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2,
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
}

.accent {
  color: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--red-soft);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--red);
}

.btn-wa {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-wa:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Header — görsellerin üzerinde, çok şeffaf cam; kaydırınca beyaz */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header);
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.header.is-solid,
body.nav-open .header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

body.nav-open .header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: none;
  flex-shrink: 0;
  transition: color 0.2s;
}

.logo-mark svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}

.logo-text span {
  margin-top: 3px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s;
}

.header.is-solid .logo-mark,
body.nav-open .header .logo-mark {
  color: var(--red);
}

.footer .logo-mark {
  color: #fff;
}

.header.is-solid .logo-text strong,
body.nav-open .header .logo-text strong {
  color: var(--ink);
}

.header.is-solid .logo-text span,
body.nav-open .header .logo-text span {
  color: var(--muted, #5b6472);
}

.footer .logo-text strong,
.footer .logo-text span {
  color: #fff;
}

.nav-sheet-head,
.nav-sheet-foot,
.nav-overlay {
  display: none;
}

.nav-sheet-links {
  display: contents;
}

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

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header.is-solid .nav a,
body.nav-open .header .nav a {
  color: var(--ink);
  text-shadow: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}

.header-phone small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  transition: color 0.2s;
}

.header-phone a {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.header.is-solid .header-phone small,
body.nav-open .header .header-phone small {
  color: var(--muted);
}

.header.is-solid .header-phone a,
body.nav-open .header .header-phone a {
  color: var(--ink);
}

.btn-call {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-call:hover {
  background: var(--red-soft);
}

.header.is-solid .btn-call,
body.nav-open .header .btn-call {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: none;
}

.header.is-solid .btn-call:hover,
body.nav-open .header .btn-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.2s;
}

.header.is-solid .menu-btn span,
body.nav-open .header .menu-btn span {
  background: var(--ink);
}

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

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

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

/* Hero gallery — tam ekran 4 sütun */
.hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100svh;
  min-height: 780px;
  background: #0b0b0b;
  gap: 3px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  display: block;
  min-height: 0;
  height: 100%;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}

.hero-card:hover img {
  transform: scale(1.08);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 12%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.82) 100%);
  transition: background 0.3s;
}

.hero-card:hover::after {
  background: linear-gradient(180deg, rgba(227, 28, 35, 0.18) 8%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 36px 28px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.hero-cap > div span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb4b6;
  margin-bottom: 8px;
}

.hero-cap h2 {
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 800;
}

.hero-cap p {
  font-size: 14px;
  opacity: 0.88;
  margin-top: 6px;
}

.hero-more {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.hero-card:hover .hero-more {
  background: var(--red);
  border-color: var(--red);
  transform: translateX(4px);
}

/* Action bar */
.action-bar {
  background: var(--red);
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 28px rgba(227, 28, 35, 0.28);
  overflow-x: clip;
}

.action-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 16px;
}

.action-bar h2 {
  color: #fff;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  font-weight: 800;
}

.action-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.action-phone {
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.action-phone svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.intro-copy h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.intro-copy > p {
  color: var(--muted);
  max-width: 62ch;
}

.intro-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.intro-item svg {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin-bottom: 12px;
}

.intro-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.intro-item p {
  font-size: 14px;
  color: var(--muted);
}

.region-box {
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 26px 24px;
  background: #fff;
}

.region-box h3 {
  color: var(--red);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.region-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.region-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.region-box li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-box li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Features */
.features {
  background: var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
  max-width: 860px;
  margin: 0 auto;
}

.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 8px 0;
}

.feature-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  color: var(--red);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.feature-ico svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
}

.feature-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Saha fotoğraf galerisi */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.photo-card {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
  aspect-ratio: 4 / 3;
  width: 100%;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.06);
}

.photo-zoom {
  position: absolute;
  inset: auto 14px 14px auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  opacity: 0.92;
  transform: none;
  transition: 0.2s;
}

.photo-zoom svg {
  width: 18px;
  height: 18px;
}

.photo-card:hover .photo-zoom,
.photo-card:focus-visible .photo-zoom {
  opacity: 1;
  background: #fff;
}

@media (max-width: 700px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* Split CTA */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.split-img {
  min-height: 360px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.split-copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.split-copy p {
  max-width: 42ch;
  opacity: 0.92;
  margin-bottom: 28px;
}

/* Alternating services */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.alt-row:last-child {
  margin-bottom: 0;
}

.alt-row.reverse {
  direction: rtl;
}

.alt-row.reverse > * {
  direction: ltr;
}

.alt-media {
  overflow: hidden;
  border-radius: 18px;
  min-height: 340px;
}

.alt-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.alt-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: var(--red);
  margin-bottom: 14px;
}

.alt-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.alt-copy ul {
  margin: 16px 0 24px;
}

.alt-copy li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.alt-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

/* Trust */
.trust {
  background: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.quote-card {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  margin: 0;
}

.quote-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.15), rgba(17, 17, 17, 0.82));
}

.quote-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.quote-body blockquote {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.quote-body cite {
  font-style: normal;
  opacity: 0.85;
  font-size: 14px;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.trust-item svg {
  width: 36px;
  height: 36px;
  color: var(--red);
}

.trust-item h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 14px;
  color: var(--muted);
}

/* FAQ + contact */
.faq-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 28px;
  align-items: start;
}

.container.terms-layout {
  width: min(100% - 32px, 1380px);
}

.terms-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 14px;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header) + 20px);
}

.terms-nav h3 {
  margin: 0 12px 12px;
  font-size: 16px;
}

.terms-nav ul {
  display: grid;
  gap: 4px;
}

.terms-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.terms-nav a:hover {
  background: var(--bg);
  color: var(--red);
}

.terms-nav a.is-active {
  background: var(--red-soft);
  color: var(--red);
}

.terms-article h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 36px);
}

.terms-article .card {
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.terms-body {
  white-space: pre-wrap;
  color: #1a2637;
  line-height: 1.75;
}

.terms-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.accordion button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 36px 18px 0;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.accordion button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--red);
  font-size: 22px;
  font-weight: 500;
}

.accordion button[aria-expanded="true"]::after {
  content: "–";
}

.accordion .panel {
  display: none;
  padding: 0 8px 16px 0;
  color: var(--muted);
  font-size: 15px;
}

.accordion .panel.open {
  display: block;
}

.contact-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  color: #fff;
}

.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(227, 28, 35, 0.18), rgba(17, 17, 17, 0.82));
}

.contact-body {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.contact-body h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-body p {
  opacity: 0.9;
  margin-bottom: 18px;
}

.contact-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 700;
}

/* Quote bar */
.quote-bar {
  background: var(--red);
  color: #fff;
}

.quote-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 16px;
}

.quote-bar h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}

.quote-bar p {
  opacity: 0.9;
  margin-top: 6px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* Brands */
.brands {
  background: var(--bg);
}

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

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 148px;
  padding: 22px 18px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.08);
}

.brand-card img {
  width: auto;
  max-width: 78%;
  height: 52px;
  object-fit: contain;
}

.brand-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.seo-links {
  background: var(--red);
  padding: 28px 0;
}

.seo-links .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 12px;
  border-radius: 999px;
}

.seo-links a:hover {
  background: #fff;
  color: var(--red);
}

.footer {
  background: var(--dark);
  color: #cfcfcf;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
}

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

.footer li {
  margin: 8px 0;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a:hover {
  background: var(--red);
  border-color: var(--red);
}

.copy {
  border-top: 1px solid #2c2c2c;
  padding: 16px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-credit {
  color: #7d7d7d;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-credit em {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}

.footer-credit:hover em {
  color: #fff;
}

/* Float call */
.float-call {
  position: fixed;
  right: 18px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.float-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  z-index: -1;
  animation: float-call-pulse 2s ease-out infinite;
}

.float-call:hover {
  transform: scale(1.06);
  background: var(--green-dark);
}

.float-call-num,
.float-call-cta {
  display: none;
}

@keyframes float-call-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s ease, visibility 0s linear 0s;
}

.modal-box {
  background: #fff;
  width: min(100%, 560px);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: auto;
  max-height: min(92vh, 860px);
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.modal.open .modal-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal:not(.open) .modal-box {
  transition-duration: 0.26s, 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1), ease;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

.modal-box h3 {
  margin-bottom: 8px;
  padding-right: 40px;
}

.modal-box p {
  color: var(--muted);
  margin-bottom: 18px;
}

.form {
  display: grid;
  gap: 12px;
}

.form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
}

.form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--red);
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  column-gap: 10px;
  width: 100%;
  margin: 2px 0 4px;
  text-align: left;
}

.check-row__input,
.form input.check-row__input,
.form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  margin: 3px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  accent-color: var(--red);
  justify-self: start;
  flex: none;
}

.modal-box .check-row__text,
.check-row__text {
  min-width: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.inline-term-link {
  display: inline;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.inline-term-link:hover {
  color: var(--red-dark);
}

#termModal {
  z-index: 2100;
}

.form-msg {
  display: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.form-msg.ok {
  display: block;
  background: #e9f9ef;
  color: #157347;
}

.form-msg.err {
  display: block;
  background: var(--red-soft);
  color: var(--red-dark);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
}

.modal-close svg {
  display: block;
  width: 14px;
  height: 14px;
}

.modal-close:hover {
  background: var(--line);
}

.term-modal-content {
  max-height: 50vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
  white-space: pre-wrap;
  color: #1a2637;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  place-items: center;
  z-index: 2100;
  padding: 20px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 80vh;
  border-radius: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  :root {
    --header: 68px;
  }

  .logo {
    gap: 10px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-mark svg {
    width: 38px;
    height: 38px;
  }

  .menu-btn {
    display: block;
    width: 40px;
    height: 40px;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(17, 17, 17, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-sheet-head a::after,
  .nav-sheet-foot a::after {
    content: none;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 90%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
    gap: 0;
    background: #fff;
    border-bottom: 0;
    box-shadow: 18px 0 40px rgba(17, 17, 17, 0.16);
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  body.nav-open .nav {
    display: flex;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-sheet-head .logo-mark {
    color: var(--red);
  }

  .nav-sheet-head .logo-text strong {
    color: var(--ink);
  }

  .nav-sheet-head .logo-text span {
    color: var(--muted);
  }

  .nav-sheet-close {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1.5px solid var(--red);
    background: transparent;
    color: var(--red);
    cursor: pointer;
  }

  .nav-sheet-close svg {
    width: 14px;
    height: 14px;
  }

  .nav-sheet-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    gap: 0;
    padding: 8px 8px 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-sheet-links a {
    padding: 14px 12px;
    font-size: 16px;
    color: var(--ink);
    text-shadow: none;
  }

  .nav-sheet-links a::after {
    left: 12px;
    bottom: 8px;
    width: 0;
  }

  .nav-sheet-links a:hover::after,
  .nav-sheet-links a.active::after {
    width: 72px;
  }

  .nav-sheet-foot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    margin-top: auto;
    padding: 16px 18px 20px;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .nav-sheet-meta {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
  }

  .nav-sheet-meta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--red);
  }

  a.nav-sheet-meta {
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
  }

  .nav-sheet-cta,
  body.nav-open .header .nav .nav-sheet-cta {
    width: 100%;
    margin-top: 4px;
    color: #fff;
    text-shadow: none;
  }

  .header-cta .btn-call {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: 0;
  }

  .hero-card {
    min-height: 48vh;
    height: 48vh;
  }

  .hero-cap {
    padding: 22px 18px;
  }

  .terms-nav {
    position: static;
  }

  .intro-grid,
  .trust-grid,
  .faq-grid,
  .terms-layout,
  .split,
  .alt-row,
  .alt-row.reverse,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .intro-cols {
    grid-template-columns: 1fr;
  }

  .action-bar .container,
  .quote-bar .container,
  .split-copy {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }

  .action-bar .container {
    width: 100%;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px;
  }

  .action-bar h2 {
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 700;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .action-right {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    gap: 12px;
  }

  .action-phone {
    font-size: 1.2rem;
    min-width: 0;
  }

  .action-phone svg {
    width: 22px;
    height: 22px;
  }

  .action-bar .btn-white {
    flex-shrink: 0;
  }

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

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

}

@media (max-width: 640px) {
  :root {
    --header: 60px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .logo-mark svg {
    width: 34px;
    height: 34px;
  }

  .logo-text strong {
    font-size: 10px;
  }

  .logo-text span {
    margin-top: 1px;
    font-size: 16px;
  }

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

  .hero-card {
    min-height: 42vh;
    height: 42vh;
  }

  .hero-cap h2 {
    font-size: 1.05rem;
  }

  .hero-cap p {
    display: none;
  }

  .hero-more {
    width: 40px;
    height: 40px;
  }

  .action-bar .container {
    padding: 16px 16px 18px;
    gap: 12px;
  }

  .action-bar h2 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 12px;
  }

  .action-right {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .action-phone {
    font-size: clamp(1.15rem, 6.2vw, 1.45rem);
    justify-content: center;
    letter-spacing: -0.02em;
    padding: 2px 0;
  }

  .action-phone svg {
    width: 22px;
    height: 22px;
  }

  .action-bar .btn-white {
    width: 100%;
    min-height: 48px;
  }

  .float-call {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 52px;
    border-radius: 0;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 28px rgba(17, 17, 17, 0.18);
  }

  .float-call::before {
    display: none;
  }

  .float-call:hover {
    transform: none;
    background: var(--red-dark);
  }

  .float-call svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .float-call-num {
    display: block;
    flex: 1;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .float-call-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--red);
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
  }

  body.nav-open .float-call {
    display: none;
  }

  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }

  .header-phone {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-card img {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .modal,
  .modal.open,
  .modal-box,
  .modal:not(.open) .modal-box {
    transition: none;
  }

  .modal-box {
    opacity: 1;
    transform: none;
  }
}
