:root {
  --navy: #071a3b;
  --navy-2: #0c2754;
  --red: #e31d2b;
  --red-dark: #c81522;
  --ink: #15213a;
  --muted: #68738a;
  --line: #dfe5ee;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 26, 59, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; overscroll-behavior: none; touch-action: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: 12px;
}
.topbar-inner {
  min-height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-links { display: flex; gap: 24px; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,229,238,.85);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(7,26,59,.08); }
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  width: 260px;
  flex: 0 0 auto;
}
.brand img { width: 100%; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #26334d;
}
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -9px;
  height: 2px; background: var(--red);
  transition: right .2s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta {
  color: #fff;
  background: var(--red);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 9px 22px rgba(227,29,43,.2);
}
.nav-cta:hover { background: var(--red-dark); }
.menu-button {
  display: none;
  width: 44px; height: 44px;
  border: 0; border-radius: 10px;
  background: var(--soft);
  padding: 11px;
}
.menu-button span {
  display: block; height: 2px; background: var(--navy); margin: 5px 0;
  transition: transform .2s, opacity .2s;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(7, 26, 59, .42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background:
    linear-gradient(120deg, #f8fafc 0%, #fff 58%, #f6f8fc 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(7,26,59,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,26,59,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none;
}
.hero-glow-one {
  width: 430px; height: 430px; right: -150px; top: -120px;
  background: radial-gradient(circle, rgba(227,29,43,.12), rgba(227,29,43,0) 68%);
}
.hero-glow-two {
  width: 500px; height: 500px; left: -290px; bottom: 0;
  background: radial-gradient(circle, rgba(7,26,59,.11), rgba(7,26,59,0) 68%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 8px 24px rgba(7,26,59,.05);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(227,29,43,.1); }
.hero h1 {
  margin: 22px 0 20px;
  color: var(--navy);
  font-size: clamp(43px, 5vw, 69px);
  line-height: 1.05;
  letter-spacing: -.045em;
  max-width: 690px;
}
.hero h1 span { color: var(--red); }
.hero-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 630px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 31px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 13px 28px rgba(227,29,43,.2);
}
.button-primary:hover { background: var(--red-dark); box-shadow: 0 16px 34px rgba(227,29,43,.26); }
.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 9px 26px rgba(7,26,59,.06);
}
.button-secondary:hover { border-color: #bec9d8; }
.button-full { width: 100%; }
.button-white { background: #fff; color: var(--navy); }
.button-white:hover { box-shadow: 0 13px 30px rgba(0,0,0,.12); }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.hero-trust strong, .hero-trust small { display: block; }
.hero-trust strong { color: var(--navy); font-size: 13px; }
.hero-trust small { color: var(--muted); font-size: 12px; }
.avatars { display: flex; padding-left: 9px; }
.avatars span {
  width: 34px; height: 34px; margin-left: -9px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  border: 3px solid #fff;
  font-size: 10px; font-weight: 800;
}
.avatars span:nth-child(2) { background: #264b80; }
.avatars span:nth-child(3) { background: #7187aa; }
.avatars span:nth-child(4) { background: var(--red); }

.hero-panel-wrap { position: relative; padding: 25px 30px 45px; }
.hero-panel-wrap::before {
  content: "";
  position: absolute;
  inset: 5px 35px 15px;
  background: var(--navy);
  border-radius: 40px 40px 110px 40px;
  transform: rotate(2deg);
}
.quote-preview {
  position: relative;
  z-index: 2;
  padding: 29px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 25px;
  box-shadow: 0 30px 70px rgba(7,26,59,.21);
}
.preview-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.preview-head span { color: var(--red); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.preview-head h2 { margin: 1px 0 0; color: var(--navy); font-size: 27px; }
.status-pill {
  color: #1c7c52 !important;
  background: #ebf8f1;
  border-radius: 999px;
  padding: 7px 11px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.preview-options { display: grid; gap: 10px; margin-bottom: 18px; }
.preview-option {
  width: 100%;
  display: grid;
  grid-template-columns: 46px 1fr 25px;
  align-items: center;
  gap: 13px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 11px;
  color: var(--ink);
  transition: border .2s, background .2s, transform .2s;
}
.preview-option:hover { transform: translateX(3px); }
.preview-option.active {
  border-color: rgba(227,29,43,.5);
  background: #fff9f9;
}
.preview-option strong, .preview-option small { display: block; }
.preview-option strong { color: var(--navy); font-size: 13px; }
.preview-option small { color: var(--muted); font-size: 11px; }
.mini-icon {
  width: 45px; height: 45px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--soft); color: var(--navy);
}
.mini-icon svg { width: 24px; height: 24px; }
.preview-option.active .mini-icon { color: var(--red); background: #ffecee; }
.check {
  width: 21px; height: 21px; border-radius: 50%;
  display: grid; place-items: center;
  color: transparent; border: 1px solid var(--line); font-size: 12px;
}
.preview-option.active .check { color: #fff; border-color: var(--red); background: var(--red); }
.preview-note {
  margin: 13px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  color: var(--muted); font-size: 11px;
}
.preview-note svg { width: 15px; height: 15px; color: #1c7c52; }
.floating-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(223,229,238,.9);
  border-radius: 14px;
  box-shadow: 0 17px 38px rgba(7,26,59,.14);
}
.floating-badge strong, .floating-badge small { display: block; }
.floating-badge strong { color: var(--navy); font-size: 11px; }
.floating-badge small { color: var(--muted); font-size: 9px; }
.badge-top { right: -16px; top: -4px; }
.badge-bottom { left: -13px; bottom: 10px; }
.badge-icon {
  min-width: 33px; height: 33px; padding: 0 5px;
  display: grid; place-items: center;
  border-radius: 9px;
  color: #1c7c52; background: #e8f7ef;
  font-weight: 900; font-size: 12px;
}
.badge-icon.red { color: var(--red); background: #ffecee; font-size: 9px; }

.stats {
  position: relative; z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.85);
}
.stats > div {
  min-height: 103px;
  padding: 21px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.stats > div:last-child { border-right: 0; }
.stats strong { color: var(--navy); font-size: 25px; line-height: 1; }
.stats span { margin-top: 8px; color: var(--muted); font-size: 11px; font-weight: 700; }

.section { padding: 105px 0; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-kicker {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.section-heading h2, .why-copy h2, .quote-copy h2, .faq h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.section-heading h2 span, .why-copy h2 span, .quote-copy h2 span, .faq h2 span { color: var(--red); }
.section-heading p, .why-copy > p, .quote-copy > p, .faq-grid > div:first-child > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.products { background: #fff; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  min-height: 390px;
  padding: 30px 28px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.product-card::after {
  content: "";
  position: absolute;
  right: -65px; bottom: -65px;
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 26px solid rgba(7,26,59,.025);
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.product-card.featured { border-color: rgba(227,29,43,.32); }
.card-label {
  position: absolute; right: 18px; top: 18px;
  color: var(--red);
  background: #fff0f1;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  color: var(--navy);
  background: var(--soft);
  margin-bottom: 22px;
}
.product-card.featured .product-icon { color: var(--red); background: #fff0f1; }
.product-icon svg { width: 29px; height: 29px; }
.product-card h3 { margin: 0; color: var(--navy); font-size: 20px; }
.product-card p { margin: 12px 0 16px; color: var(--muted); font-size: 13px; }
.product-card ul {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: grid; gap: 7px;
}
.product-card li { position: relative; padding-left: 21px; color: #44516b; font-size: 12px; font-weight: 600; }
.product-card li::before {
  content: "✓";
  position: absolute; left: 0;
  color: #1d9463; font-weight: 900;
}
.product-card > a {
  position: relative; z-index: 2;
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: space-between;
  color: var(--navy); font-size: 13px; font-weight: 800;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.product-card > a span { color: var(--red); font-size: 20px; transition: transform .2s; }
.product-card > a:hover span { transform: translateX(5px); }

.why-us { background: var(--soft); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 86px; align-items: center; }
.why-visual { min-height: 520px; display: grid; place-items: center; }
.shield-graphic { position: relative; width: min(430px, 100%); }
.shield-graphic > svg { width: 100%; filter: drop-shadow(0 25px 35px rgba(7,26,59,.14)); }
.shield-main { fill: var(--navy); stroke: none; }
.shield-inner { fill: #fff; stroke: none; }
.shield-check { fill: none; stroke: var(--red); stroke-width: 16; }
.visual-card {
  position: absolute;
  min-width: 180px;
  background: #fff;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(7,26,59,.13);
}
.visual-card::before {
  content: "✓";
  position: absolute; left: -15px; top: 15px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--red); color: #fff;
  border: 4px solid var(--soft);
  font-size: 11px; font-weight: 900;
}
.visual-card strong, .visual-card span { display: block; padding-left: 8px; }
.visual-card strong { color: var(--navy); font-size: 12px; }
.visual-card span { color: var(--muted); font-size: 10px; }
.visual-card-one { left: -14px; top: 80px; }
.visual-card-two { right: -20px; bottom: 70px; }
.benefit-list { margin-top: 32px; display: grid; gap: 5px; }
.benefit-item {
  display: grid; grid-template-columns: 46px 1fr; gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid #dce3ed;
}
.benefit-item:last-child { border-bottom: 0; }
.benefit-number {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--red);
  background: #fff;
  font-size: 11px; font-weight: 900;
}
.benefit-item h3 { margin: 0; color: var(--navy); font-size: 15px; }
.benefit-item p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.text-link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 24px; color: var(--red); font-size: 13px; font-weight: 800;
}
.text-link span { font-size: 19px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.process {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(227,29,43,.14), transparent 30%);
}
.section-heading.light { position: relative; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.65); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.process-grid article {
  position: relative;
  padding: 33px 30px;
  min-height: 250px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
}
.process-no {
  position: absolute; right: 23px; top: 15px;
  color: rgba(255,255,255,.08);
  font-size: 66px; font-weight: 800; line-height: 1;
}
.process-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--red); color: #fff;
  box-shadow: 0 13px 30px rgba(227,29,43,.2);
}
.process-icon svg { width: 28px; height: 28px; }
.process-grid h3 { margin: 24px 0 9px; color: #fff; font-size: 18px; }
.process-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.quote-section { background: #fff; }
.quote-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.contact-cards { display: grid; gap: 12px; margin-top: 30px; }
.contact-cards a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border .2s, transform .2s;
}
.contact-cards a:hover { border-color: #bdc7d5; transform: translateX(4px); }
.contact-icon {
  width: 43px; height: 43px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--red); background: #fff0f1;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: var(--muted); font-size: 10px; }
.contact-cards strong { color: var(--navy); font-size: 13px; }
.quote-assurance {
  display: flex; gap: 12px;
  margin-top: 22px;
  padding: 14px;
  background: #f0f8f4;
  border-radius: 14px;
}
.quote-assurance > span {
  width: 27px; height: 27px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%; background: #1d9463; color: #fff;
  font-size: 11px; font-weight: 900;
}
.quote-assurance p { margin: 0; color: #4d6d5c; font-size: 11px; }
.quote-assurance strong { color: #1a5d41; }

.quote-form {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #fff;
}
.quote-form::before {
  content: "";
  position: absolute;
  left: 34px; right: 34px; top: 0;
  height: 4px; border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, var(--red), #ff6b76);
}
.form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.form-head span:first-child { color: var(--red); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.form-head h3 { margin: 2px 0 0; color: var(--navy); font-size: 27px; }
.form-step { color: var(--muted); font-size: 11px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 15px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 11px; font-weight: 800; }
.field input, .field select {
  width: 100%; height: 49px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  transition: border .2s, box-shadow .2s;
}
.field input::placeholder { color: #a5adbb; }
.field input:focus, .field select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(7,26,59,.07);
}
.field.invalid input, .field.invalid select { border-color: var(--red); }
.field-error { display: none; margin-top: 5px; color: var(--red); font-size: 10px; }
.field.invalid .field-error { display: block; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin: 2px 0 18px; color: var(--muted); font-size: 10px; }
.consent input { margin-top: 3px; accent-color: var(--red); }
.consent-error.show { display: block; margin: -12px 0 14px; }
.submit-button { border: 0; }
.form-disclaimer { margin: 12px 0 0; text-align: center; color: #8a93a3; font-size: 9px; }
.form-success {
  display: none;
  align-items: center;
  gap: 13px;
  margin-top: 15px;
  padding: 14px;
  background: #edf8f2;
  border-radius: 13px;
}
.form-success.show { display: flex; }
.form-success > span {
  width: 35px; height: 35px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%; background: #1d9463; color: #fff; font-weight: 900;
}
.form-success strong { color: #195e40; font-size: 12px; }
.form-success p { margin: 1px 0 0; color: #4d6d5c; font-size: 10px; }

.faq { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.dark-border { margin-top: 26px; box-shadow: none; }
.accordion { display: grid; gap: 11px; }
.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}
.accordion-item button {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: transparent; border: 0;
  padding: 20px 22px;
  color: var(--navy);
  text-align: left;
  font-weight: 800; font-size: 13px;
}
.accordion-plus { color: var(--red); font-size: 22px; line-height: 1; }
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.accordion-content > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  font-size: 12px;
  transition: padding .25s ease;
}
.accordion-item.open .accordion-content { grid-template-rows: 1fr; }
.accordion-item.open .accordion-content > p { padding: 0 22px 21px; }

.cta-band { background: var(--red); color: #fff; }
.cta-band-inner {
  min-height: 190px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.cta-band span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.cta-band h2 { margin: 5px 0 0; max-width: 680px; font-size: clamp(27px, 3.3vw, 42px); line-height: 1.15; letter-spacing: -.03em; }

.site-footer { background: #06152f; color: rgba(255,255,255,.67); padding: 75px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-logo {
  width: 260px;
  border-radius: 10px;
  padding: 8px 10px;
}
.footer-brand p { max-width: 340px; margin: 22px 0; font-size: 12px; }
.site-footer h3 { margin: 0 0 17px; color: #fff; font-size: 13px; }
.site-footer a, .site-footer p { display: block; margin: 9px 0; font-size: 11px; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  color: #fff; font-size: 10px; font-weight: 800;
}
.footer-bottom {
  min-height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom span{
  margin: auto;

}

@media (max-width: 980px) {
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .brand { width: 220px; }
  .menu-button {
    display: block;
    position: relative;
    z-index: 1003;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(86vw, 390px);
    max-width: calc(100vw - 42px);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 104px 26px 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translate3d(105%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease, visibility 0s linear .25s;
    box-shadow: -24px 0 60px rgba(7, 26, 59, .18);
    font-size: 16px;
    z-index: 1002;
  }
  .main-nav.open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .nav-overlay {
    display: block;
    z-index: 1001;
    transition: opacity .22s ease, visibility 0s linear .22s;
  }
  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav a { padding: 15px 6px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 18px; text-align: center; border: 0; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.active span:nth-child(2) { opacity: 0; }
  .menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 65px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-panel-wrap { max-width: 610px; margin: 0 auto; width: 100%; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .product-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .why-copy, .quote-copy { max-width: 720px; }
  .why-visual { order: 2; min-height: 450px; }
  .quote-copy { text-align: center; margin: auto; }
  .contact-cards, .quote-assurance { max-width: 560px; margin-left: auto; margin-right: auto; text-align: left; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 210px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (min-width: 981px) {
  .main-nav {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .nav-overlay { display: none !important; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand { width: 190px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 42px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { text-align: left; }
  .hero-panel-wrap { padding: 18px 0 35px; }
  .hero-panel-wrap::before { inset: 0 10px 10px; border-radius: 28px 28px 70px 28px; }
  .quote-preview { padding: 22px 17px; }
  .floating-badge { display: none; }
  .stats { margin-top: 55px; }
  .stats > div { padding: 17px 12px; min-height: 93px; }
  .stats strong { font-size: 22px; }
  .stats span { font-size: 9px; }

  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .why-copy h2, .quote-copy h2, .faq h2 { font-size: 35px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 360px; }
  .why-grid { gap: 35px; }
  .why-visual { min-height: 360px; }
  .visual-card { min-width: 155px; padding: 11px; }
  .visual-card-one { left: 0; top: 56px; }
  .visual-card-two { right: 0; bottom: 43px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 28px 18px; }
  .quote-form::before { left: 18px; right: 18px; }
  .faq-grid { gap: 35px; }

  .cta-band-inner { min-height: 240px; flex-direction: column; justify-content: center; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-logo { width: 235px; }
  .footer-bottom { padding: 20px 0; align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 5px; }
}

/* PHP teklif formu durum mesajları ve spam tuzağı */
.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}
.form-error {
  display: none;
  margin-top: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(197, 32, 45, .18);
  border-radius: 13px;
  background: #fff1f2;
  color: #9d1c28;
  font-size: 11px;
  line-height: 1.55;
}
.form-error.show { display: block; }
.submit-button:disabled {
  cursor: wait;
  opacity: .72;
}

/* Sigorta türüne göre çoklu belge yükleme alanları */
.documents-field {
  margin-top: 2px;
  padding: 16px;
  border: 1px solid #e2e7ef;
  border-radius: 15px;
  background: #fbfcfe;
}
.documents-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.documents-heading label {
  margin: 0 0 3px;
}
.documents-heading small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.document-count {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 8px;
  background: #edf1f6;
  color: #68738a;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}
.document-count.has-files {
  background: #eef8f3;
  color: #1d7b55;
}
.document-guidance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding: 11px 12px;
  border: 1px solid #dce4ef;
  border-radius: 11px;
  background: #f3f6fa;
}
.document-guidance[hidden] { display: none; }
.document-guidance-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.document-guidance p {
  margin: 1px 0 0;
  color: #506078;
  font-size: 10px;
  line-height: 1.55;
}
.document-requirements {
  display: grid;
  gap: 11px;
}
.document-upload-group {
  padding: 13px;
  border: 1px solid #e1e6ee;
  border-radius: 13px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.document-upload-group.invalid {
  border-color: var(--red);
  background: #fff9f9;
}
.document-upload-group.has-file:not(.has-invalid-file) {
  border-color: #9acdb4;
  background: #fbfffd;
}
.document-upload-group.has-invalid-file {
  border-color: var(--red);
  background: #fff8f8;
}
.document-upload-head {
  margin-bottom: 10px;
}
.document-upload-title-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
.document-upload-title {
  color: var(--navy);
  font-size: 11px;
}
.document-required,
.document-optional {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.document-required {
  background: #fff0f1;
  color: var(--red-dark);
}
.document-optional {
  background: #eef2f7;
  color: #68738a;
}
.document-upload-description {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.document-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.file-picker {
  min-height: 72px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 12px 13px;
  border: 1px dashed #c5cedb;
  border-radius: 11px;
  background: #f8fafc;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.file-picker:hover,
.document-upload-input:focus + .file-picker {
  border-color: var(--navy);
  background: #f3f6fa;
  box-shadow: 0 0 0 4px rgba(7,26,59,.06);
}
.file-picker-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #fff0f1;
  color: var(--red);
}
.file-picker-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.file-picker-copy {
  min-width: 0;
  flex: 1;
}
.file-picker-copy strong,
.file-picker-copy small {
  display: block;
}
.file-picker-copy strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-picker-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}
.file-picker-action {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}
.selected-files {
  display: grid;
  gap: 6px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}
.selected-files:empty { display: none; }
.selected-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #eef8f3;
  color: #276247;
  font-size: 8px;
}
.selected-file.invalid-file {
  background: #fff0f1;
  color: #9d1c28;
}
.selected-file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}
.selected-file-size { flex: 0 0 auto; font-weight: 800; }
.document-group-error {
  display: none;
  margin-top: 7px;
  color: var(--red);
  font-size: 9px;
}
.document-upload-group.invalid .document-group-error,
.document-upload-group.has-invalid-file .document-group-error {
  display: block;
}
.extra-documents-group {
  border-style: dashed;
}
.documents-field.invalid {
  border-color: var(--red);
  background: #fffafa;
}
.documents-field.invalid > .documents-error {
  display: block;
}
.documents-privacy {
  margin: 11px 0 0;
  padding-left: 17px;
  position: relative;
  color: #7b8595;
  font-size: 8px;
  line-height: 1.55;
}
.documents-privacy::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d9463;
  font-weight: 900;
}

@media (max-width: 480px) {
  .documents-heading { flex-direction: column; }
  .file-picker { align-items: flex-start; flex-wrap: wrap; }
  .file-picker-copy { width: calc(100% - 56px); }
  .file-picker-action { margin-left: 54px; }
}
