:root {
  --ink: #19253b;
  --ink-2: #243451;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --line: #dfe6ef;
  --muted: #647186;
  --accent: #d7f06a;
  --shadow: 0 22px 55px rgba(25, 37, 59, 0.1);
  --radius: 18px;
  --font-display: "DM Sans", sans-serif;
  --font-body: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.7 var(--font-body);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -1px;
}
.container {
  width: min(1180px, calc(100% - 48px));
  min-width: 0;
  margin: 0 auto;
}
.site-header {
  position: relative;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--ink);
  color: #dfe6ef;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar strong {
  color: var(--accent);
  font-weight: 800;
}
.navbar {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar > * {
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}
.brand-mark {
  width: 260px;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.brand-text {
  font: 800 18px/1 var(--font-display);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.brand-text small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
  font: 700 9px var(--font-body);
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 13px;
  font-weight: 800;
}
.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  padding: 13px 18px;
  font: 800 13px var(--font-body);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.header-call {
  color: var(--ink);
  background: var(--accent);
  white-space: nowrap;
}
.button:hover,
.header-call:hover {
  transform: translateY(-2px);
}
.button-dark {
  color: var(--paper);
  background: var(--ink);
}
.button-light {
  color: var(--ink);
  background: var(--paper);
}
.button-outline {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 21px;
}
.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(25, 37, 59, 0.96) 0%, rgba(25, 37, 59, 0.78) 52%, rgba(25, 37, 59, 0.52) 100%),
    url("../img/hero-1.jpg") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -170px;
  border: 1px solid rgba(215, 240, 106, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(215, 240, 106, 0.06),
    0 0 0 140px rgba(215, 240, 106, 0.035);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
  min-height: 630px;
  padding: 92px 0;
}
.hero-grid > *,
.split > *,
.policy-grid > *,
.content-layout > *,
.contact-grid > * {
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  max-width: 720px;
  margin: 22px 0;
  font-size: clamp(42px, 6vw, 74px);
}
.hero h1 span {
  color: var(--accent);
}
.hero-copy {
  max-width: 580px;
  color: #b8c3d2;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  color: #b8c3d2;
  font-size: 12px;
}
.hero-note span {
  min-width: 0;
}
.hero-note strong {
  display: block;
  color: var(--paper);
  font: 800 22px var(--font-display);
}
.hero-visual {
  position: relative;
  min-height: 420px;
}
.placeholder-art {
  position: absolute;
  inset: 0 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(215, 240, 106, 0.55);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.02)
  );
  color: #d9e4ee;
  text-align: center;
}
.placeholder-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-art strong {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font: 800 18px var(--font-display);
}
.floating-stat {
  position: absolute;
  left: 0;
  bottom: 30px;
  padding: 18px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}
.floating-stat strong {
  display: block;
  font: 800 28px var(--font-display);
}
.section {
  padding: 105px 0;
}
.section-muted {
  background: var(--mist);
}
.section-heading {
  max-width: 710px;
  margin-bottom: 45px;
}
.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading h2 {
  margin: 16px 0;
  font-size: clamp(32px, 4vw, 50px);
}
.section-heading p {
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px dashed var(--line);
  background: #edf2f7;
  color: var(--ink);
  text-align: center;
  font-size: 42px;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-media span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}
.service-body h3 {
  margin: 13px 0 10px;
  font-size: 22px;
}
.service-body p {
  flex: 1;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.icon-box {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 11px;
  font-size: 20px;
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: center;
}
.visual-panel {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  background: var(--ink);
  overflow: hidden;
}
.visual-panel > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.visual-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: -90px;
  border: 1px solid rgba(215, 240, 106, 0.45);
  border-radius: 50%;
}
.visual-label {
  position: absolute;
  left: 25px;
  bottom: 25px;
  color: #b8c3d2;
  font-size: 12px;
}
.visual-label strong {
  display: block;
  color: var(--accent);
  font: 800 25px var(--font-display);
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.check-list i {
  color: #648300;
}
.reason-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}
.reason-grid {
  grid-template-columns: repeat(4, 1fr);
}
.reason-card {
  padding: 25px;
  border-top: 3px solid var(--accent);
  background: var(--paper);
}
.reason-card h3 {
  margin: 20px 0 9px;
  font-size: 20px;
}
.reason-card p,
.quote p {
  color: var(--muted);
  font-size: 13px;
}
.policy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.policy-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}
.policy-card h2 {
  margin-bottom: 15px;
  font-size: 34px;
}
.policy-card p {
  color: #bdc8d7;
}
.policy-card.light {
  color: var(--ink);
  background: var(--accent);
}
.policy-card.light p {
  color: #40502a;
}
.quote {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.quote p {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 800;
}
.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
}
.page-hero {
  padding: 68px 0;
  color: var(--paper);
  background: var(--ink);
}
.page-hero h1 {
  margin: 16px 0 8px;
  font-size: clamp(38px, 5vw, 60px);
}
.breadcrumbs {
  color: #aebaca;
  font-size: 13px;
}
.breadcrumbs a {
  color: var(--accent);
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 55px;
}
.content h2 {
  margin-top: 38px;
  font-size: 30px;
}
.content h2:first-child {
  margin-top: 0;
}
.content p,
.content li {
  color: var(--muted);
}
.side-nav {
  align-self: start;
  position: sticky;
  top: 25px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}
.side-nav strong {
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-display);
}
.side-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.side-nav a:last-child {
  border: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}
.contact-list {
  padding: 30px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-item:last-child {
  border: 0;
}
.contact-item h3 {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 17px;
}
.contact-item p {
  margin: 0;
  color: #c3cedb;
  font-size: 13px;
}
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: 14px var(--font-body);
}
textarea {
  min-height: 125px;
  resize: vertical;
}
.full {
  grid-column: 1 / -1;
}
.footer {
  padding: 65px 0 30px;
  color: #c0cad6;
  background: var(--ink);
}
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
.footer .brand-text {
  color: var(--paper);
}
.footer .brand-mark {
  width: 280px;
}
.footer h3 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 17px;
}
.footer p,
.footer a {
  color: #aebaca;
  font-size: 13px;
}
.footer a {
  display: block;
  margin: 8px 0;
}
.footer a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}
.footer-bottom a,
.footer p,
.contact-item p,
.content p {
  overflow-wrap: anywhere;
}
.mobile-call {
  display: none;
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 15px 25px rgba(25, 37, 59, 0.08);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 10px 0;
  }
  .menu-toggle {
    display: block;
  }
  .header-call {
    display: none;
  }
  .brand {
    flex: 1 1 auto;
  }
  .menu-toggle {
    flex: 0 0 auto;
  }
  .hero-grid,
  .split,
  .policy-grid,
  .contact-grid,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-grid {
    padding: 75px 0;
  }
  .hero-visual {
    min-height: 330px;
  }
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .side-nav {
    position: static;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .topbar {
    font-size: 11px;
  }
  .topbar-inner {
    justify-content: center;
  }
  .topbar span:first-child {
    display: none;
  }
  .navbar {
    min-height: 74px;
    gap: 12px;
  }
  .brand {
    gap: 8px;
  }
  .brand-mark {
    width: min(205px, calc(100vw - 92px));
  }
  .brand-text {
    font-size: 15px;
  }
  .brand-text small {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .nav-links {
    top: 74px;
  }
  .hero h1 {
    font-size: clamp(36px, 11vw, 43px);
    overflow-wrap: anywhere;
  }
  .hero-grid {
    min-height: 0;
    padding: 60px 0 85px;
  }
  .hero {
    background-position: 62% center;
  }
  .hero-visual {
    min-height: 270px;
  }
  .placeholder-art {
    inset: 0;
  }
  .floating-stat {
    bottom: -20px;
    max-width: calc(100% - 20px);
    padding: 14px;
  }
  .floating-stat strong {
    font-size: 22px;
  }
  .section {
    padding: 72px 0;
  }
  .service-grid,
  .reason-grid,
  .testimonial-grid,
  .policy-grid,
  .content-layout,
  .form-grid,
  .check-list {
    grid-template-columns: 1fr !important;
  }
  .section-heading h2,
  .policy-card h2,
  .content h2 {
    font-size: 30px;
  }
  .service-body,
  .contact-form,
  .contact-list,
  .policy-card {
    padding: 22px;
  }
  .button {
    width: 100%;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .button {
    flex: 1 1 100%;
  }
  .footer {
    padding-bottom: 106px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    margin-bottom: 65px;
  }
  .mobile-call {
    position: fixed;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    left: 50%;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: min(270px, calc(100% - 32px));
    padding: 15px 20px;
    transform: translateX(-50%);
    color: var(--ink);
    background: var(--accent);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(25, 37, 59, 0.27);
    font-weight: 800;
  }
}
