:root {
  --blue: #4298ee;
  --blue-dark: #2d82d6;
  --navy: #002244;
  --navy-deep: #001833;
  --heading: #002448;
  --text: #5d5d5d;
  --muted: #7a7a7a;
  --ice: #f4f9fe;
  --line: #d8e4f1;
  --white: #fff;
  --danger: #c83b3b;
  --shadow: 0 16px 40px rgba(0, 34, 68, 0.08);
  --font: "Open Sans", sans-serif;
  --display: "Ubuntu", sans-serif;
  --max: 1170px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--display); color: var(--heading); line-height: 1.25; margin: 0 0 12px; }
p { margin: 0 0 14px; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.center { text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.kicker::before, .kicker::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.sec-head h2 { font-size: 40px; font-weight: 700; }
.sec-head p { margin-bottom: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { background: var(--blue-dark); color: #fff; }
.btn-light { background: #fff; color: var(--heading); }
.btn-light:hover { background: var(--navy); color: #fff; }
.btn-line { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn-line:hover { background: var(--blue); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo img { height: 48px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav a {
  color: var(--heading);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.nav a.active, .nav a:hover { color: var(--blue); }
.header-mail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--heading);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.header-mail span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  position: relative;
  min-height: 640px;
  background: #0b2f57 url("../images/hero-car.jpg") right center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, #002244 0%, #002244 42%, rgba(0, 34, 68, 0.35) 62%, rgba(0, 34, 68, 0.05) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 120px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#ffffff55 1.4px, transparent 1.5px);
  background-size: 14px 14px;
}
.hero-inner { position: relative; z-index: 1; padding: 90px 0 120px; max-width: 560px; }
.hero h1 { color: #fff; font-size: 58px; font-weight: 700; margin-bottom: 18px; }
.hero p { color: rgba(255,255,255,.88); font-size: 18px; }

.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #123a66 center / cover no-repeat;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #002244 0%, #002244 46%, rgba(0,34,68,.25) 78%, rgba(0,34,68,.05) 100%);
}
.page-banner .container { position: relative; z-index: 1; padding: 70px 0; }
.page-banner h1 { color: #fff; font-size: 52px; }
.crumbs { color: rgba(255,255,255,.8); }
.crumbs a { color: #fff; }

.section { padding: 90px 0; }
.section.ice { background: var(--ice); }
.section.navy { background: var(--navy); color: rgba(255,255,255,.86); }
.section.navy h2, .section.navy h3 { color: #fff; }

.feature {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.feature-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 6px;
  overflow: hidden;
}
.feature-card img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.feature-copy { padding: 42px 40px; }
.feature-copy h2 { font-size: 36px; }
.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.person img { width: 54px; height: 54px; min-height: 0; border-radius: 50%; object-fit: cover; }
.person strong { display: block; color: var(--heading); }
.person span { font-size: 14px; }

.cards-3, .cards-2 { display: grid; gap: 28px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }

.svc {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}
.svc:hover { transform: translateY(-6px); }
.svc img { height: 210px; width: 100%; object-fit: cover; }
.svc-body { padding: 24px 22px 28px; }
.svc h3 { font-size: 22px; }
.more { font-weight: 700; }

.why-photo { position: relative; }
.why-photo img { width: 100%; height: 420px; object-fit: cover; border-radius: 6px; }
.stat-row {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat {
  background: rgba(255,255,255,.94);
  border-radius: 4px;
  padding: 12px;
  text-align: center;
}
.stat b { display: block; color: var(--blue); font-size: 22px; font-family: var(--display); }
.stat span { color: var(--heading); font-size: 13px; font-weight: 700; }
.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}
.num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.section.navy .num { border-color: #fff; color: #fff; }
.step h3 { font-size: 20px; margin-bottom: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member { text-align: center; }
.frame {
  position: relative;
  background: #fff;
  padding: 14px 14px 0;
}
.frame::before, .frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid var(--blue);
}
.frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.frame::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.frame img { width: 100%; height: 320px; object-fit: cover; object-position: top; }
.member h3 { margin-top: 16px; font-size: 22px; }
.member .role {
  display: inline-block;
  margin-top: 6px;
  background: var(--blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}

.faq-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.acc { border: 1px solid var(--line); background: #fff; margin-bottom: 12px; }
.acc button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 16px 18px;
  color: var(--heading);
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}
.acc.open button { background: var(--blue); color: #fff; }
.acc .panel { display: none; padding: 16px 18px 18px; }
.acc.open .panel { display: block; }
.faq-grid img, .round-img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; }

.quote-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.quote-block img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; }
.quote-mark { font-family: var(--display); font-size: 70px; color: var(--blue); line-height: 0.6; }
.who strong { color: var(--heading); display: block; }

.awards {
  position: relative;
  background: #001833 url("../images/celebrate.jpg") center / cover no-repeat;
  color: #fff;
}
.awards::before { content: ""; position: absolute; inset: 0; background: rgba(0, 24, 51, 0.82); }
.awards .container { position: relative; z-index: 1; }
.award-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.award {
  border: 1px solid rgba(255,255,255,.18);
  padding: 26px 18px;
  text-align: center;
  background: rgba(0, 34, 68, 0.35);
}
.award b { display: block; color: #fff; font-size: 28px; font-family: var(--display); }
.award span { color: rgba(255,255,255,.85); }

.bars { display: grid; gap: 16px; }
.bar-top { display: flex; justify-content: space-between; color: var(--heading); font-weight: 700; font-size: 14px; }
.track { height: 8px; background: #e7eef6; border-radius: 99px; overflow: hidden; }
.track i { display: block; height: 100%; background: var(--blue); border-radius: 99px; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bubble {
  text-align: center;
  color: rgba(255,255,255,.88);
}
.bubble .ico {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(66, 152, 238, 0.2);
  border: 2px solid var(--blue);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.bubble h3 { color: #fff; font-size: 20px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.plan header {
  background: linear-gradient(180deg, #7ec0fb, #4298ee);
  color: #fff;
  padding: 28px 16px 22px;
}
.plan header h3, .plan header p { color: #fff; margin: 0; }
.plan header strong { display: block; font-size: 48px; font-family: var(--display); line-height: 1.1; }
.plan ul { padding: 22px 26px; text-align: left; }
.plan li { padding: 8px 0 8px 22px; position: relative; border-bottom: 1px solid #f0f4f8; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.plan .btn { margin: 8px 0 26px; }

.cta-band {
  background: var(--blue);
  color: #fff;
  position: relative;
  margin-top: 30px;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 18px;
  background: radial-gradient(circle at 12px 0, transparent 12px, var(--blue) 13px) left top / 24px 18px repeat-x;
}
.cta-band::before { top: -17px; transform: scaleY(-1); }
.cta-band::after { bottom: -17px; background: radial-gradient(circle at 12px 18px, transparent 12px, #001833 13px) left top / 24px 18px repeat-x; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0;
}
.cta-inner h2 { color: #fff; font-size: 32px; margin: 0; }
.inline-form { display: flex; background: #fff; border-radius: 4px; overflow: hidden; min-width: min(420px, 100%); }
.inline-form input {
  border: 0;
  flex: 1;
  padding: 14px 16px;
  outline: none;
  color: var(--heading);
}
.inline-form button {
  width: 54px;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.info-strip { background: var(--navy-deep); color: #fff; padding: 34px 0 10px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .dot {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--blue); display: grid; place-items: center; flex: none; font-size: 20px;
}
.info-item b { display: block; }
.info-item a { color: #fff; }

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding: 20px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr; gap: 30px; padding: 30px 0 40px; }
.site-footer h3, .site-footer h4 { color: #fff; font-size: 20px; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--blue); }
.site-footer li { margin: 7px 0; }
.social { display: flex; gap: 8px; margin-top: 14px; }
.social a, .social button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  color: #fff; background: transparent; cursor: pointer;
}
.foot-form { display: grid; gap: 10px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  padding: 12px 12px;
  border-radius: 3px;
  outline: none;
}
.field textarea { min-height: 90px; resize: vertical; }
.field select option { color: #002244; }
.light-form .field input, .light-form .field select, .light-form .field textarea {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--heading);
}
.error { color: #ffb4b4; font-size: 13px; margin-top: 4px; display: none; }
.light-form .error { color: var(--danger); }
.field.invalid .error { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.success {
  display: none;
  background: #e9f8ef;
  color: #146c36;
  border: 1px solid #b7e4c7;
  padding: 16px 18px;
  border-radius: 6px;
  font-weight: 700;
}
.success.show { display: block; }
.legal-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.subfoot {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; }
.panel { background: #fff; border-radius: 8px; box-shadow: var(--shadow); padding: 28px; }
.panel.dark { background: var(--navy); color: rgba(255,255,255,.86); }
.panel.dark h2, .panel.dark h3 { color: #fff; }
.contact-list { display: grid; gap: 14px; margin: 18px 0; }
.contact-list div {
  display: flex; gap: 12px; align-items: center;
  background: var(--ice); padding: 12px 14px; border-radius: 6px; color: var(--heading);
}
.book { background: var(--ice); border-radius: 8px; padding: 22px; }
.book-row {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; padding: 12px 14px; margin-top: 10px; border-radius: 4px;
}
.legal { max-width: 860px; margin: 0 auto; }
.legal h2 { font-size: 28px; margin-top: 28px; }
.legal h3 { font-size: 20px; margin-top: 18px; }
.legal ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { background: #fff; box-shadow: var(--shadow); padding: 22px; border-radius: 8px; }
.stars { color: #f5b400; letter-spacing: 2px; }
.check { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; }
.check input { margin-top: 5px; }

@media (max-width: 1280px) {
  .header-mail { font-size: 0; }
  .header-mail span { font-size: 16px; }
}
@media (max-width: 1100px) {
  .nav {
    display: none;
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 22px 22px;
    box-shadow: var(--shadow);
    gap: 12px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .header-mail { display: none; }
  .hero h1, .page-banner h1 { font-size: 40px; }
  .cards-3, .team-grid, .plans, .process, .award-grid, .t-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid, .faq-grid, .quote-block, .feature-card, .cards-2, .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .cards-3, .team-grid, .plans, .process, .award-grid, .t-grid, .stat-row { grid-template-columns: 1fr; }
  .sec-head h2 { font-size: 30px; }
  .hero { min-height: 520px; background-position: center; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .inline-form { min-width: 0; }
  .section { padding: 64px 0; }
}
