:root {
  --bg: #ffffff;
  --bg-muted: #f3f5f7;
  --bg-soft: #eef2f5;
  --text: #20252b;
  --muted: #68727e;
  --line: #dfe5ea;
  --dark: #111820;
  --dark-2: #192534;
  --kia-blue: #05141f;
  --accent: #314b6c;
  --accent-2: #e8f1ff;
  --green: #5f7f4d;
  --warning: #f2b84b;
  --shadow: 0 18px 50px rgba(10, 20, 31, 0.12);
  --shadow-sm: 0 12px 30px rgba(10, 20, 31, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  z-index: 999;
}

.skip-link:focus {
  left: 14px;
}

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

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar {
  background: var(--kia-blue);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.topbar a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

.topbar-links {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 230px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.main-nav a {
  color: var(--dark);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--accent);
  transition: right 0.2s ease;
}

.main-nav a:hover::after {
  right: 0;
}

.nav-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-button {
  background: var(--dark);
  color: #fff;
  white-space: nowrap;
}

.nav-button:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 740px;
  background: var(--kia-blue);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 31, 0.70) 0%, rgba(5, 20, 31, 0.42) 42%, rgba(5, 20, 31, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 20, 31, 0.55), transparent 45%);
}

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

.hero-content {
  min-height: 740px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-card {
  max-width: 690px;
  color: #fff;
  padding: 64px 0;
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.hero-card .kicker,
.dark-band .kicker {
  color: #97c2ff;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
  font-weight: 900;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-card > p:not(.kicker):not(.lead) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #1d57bc;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

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

.btn-light {
  background: #fff;
  color: var(--dark);
}

.btn-full {
  width: 100%;
}

.quick-links {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-left: 1px solid var(--line);
}

.quick-grid a:last-child {
  border-right: 1px solid var(--line);
}

.quick-grid a:hover {
  background: var(--bg-muted);
  color: var(--accent);
}

.section {
  padding: 96px 0;
}

.intro {
  text-align: center;
}

.intro p:not(.kicker) {
  font-size: 1.16rem;
  color: var(--muted);
}

.section-split {
  border-top: 1px solid var(--line);
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.panel,
.service-card,
.why-card,
.contact-card,
.lead-form,
.dark-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.panel {
  padding: 36px;
}

.promotion-panel {
  border-top: 6px solid var(--accent);
}

.amount-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.amount-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.amount-list span {
  color: var(--muted);
}

.amount-list strong {
  font-size: 1.2rem;
  white-space: nowrap;
}

.sum-box {
  background: var(--kia-blue);
  color: #fff;
  padding: 28px;
  margin-top: 28px;
}

.sum-box span,
.sum-box small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.sum-box strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  margin: 8px 0;
}

.fineprint,
.form-note {
  font-size: 0.92rem !important;
  color: #7b858f !important;
}

.muted-section {
  background: var(--bg-muted);
}

.image-frame {
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 10px;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 16px;
  height: 10px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.text-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

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

.section-head p:not(.kicker) {
  color: var(--muted);
  font-size: 1.07rem;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.why-card {
  padding: 30px;
  min-height: 250px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.why-card {
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--kia-blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.service-card p,
.why-card p {
  color: var(--muted);
}

.dark-band {
  background: var(--kia-blue);
  color: #fff;
}

.dark-band .copy p {
  color: rgba(255, 255, 255, 0.76);
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 36px;
  box-shadow: none;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.76);
}

.claim {
  color: var(--dark) !important;
  font-weight: 900;
  font-size: 1.22rem !important;
}

.why-card span {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(5, 20, 31, 0.94), rgba(25, 37, 52, 0.88)),
    var(--kia-blue);
  color: #fff;
}

.contact-grid {
  align-items: start;
}

/*
.contact-copy p:not(.kicker) {
  color: rgba(255, 255, 255, 0.78);
}
*/

.contact-card {
  padding: 28px;
  color: var(--text);
  margin-top: 28px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.lead-form {
  color: var(--text);
  padding: 36px;
}

.lead-form > p {
  color: var(--muted);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  font-weight: 900;
  color: var(--dark);
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--bg-muted);
  color: var(--text);
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.11);
}

.hidden-field {
  display: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.form-status {
  margin-top: 12px;
  font-weight: 900;
  color: var(--accent);
}

.site-footer {
  background: #060b10;
  color: rgba(255, 255, 255, 0.72);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 250px;
  margin-bottom: 18px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright p {
  margin: 0;
}

@media (max-width: 1020px) {
  .topbar-inner,
  .topbar-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .split,
  .split-reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 78px;
  }

  .brand img {
    width: 188px;
  }

  .nav-button {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-image::after {
    background: linear-gradient(90deg, rgba(5, 20, 31, 0.7), rgba(5, 20, 31, 0.4));
  }

  .hero-card {
    padding: 44px 0;
  }

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

  .quick-grid a {
    min-height: 68px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .cards.four,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .panel,
  .lead-form,
  .dark-card,
  .service-card,
  .why-card {
    padding: 24px;
  }

  .amount-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .topbar {
    display: none;
  }
}
