:root {
  --bg: #f4fbfd;
  --surface: #ffffff;
  --surface-soft: #e8f7fa;

  --text: #071624;
  --text-soft: #516170;
  --muted: #7a8894;

  --primary: #0b6f86;
  --primary-dark: #064e60;
  --accent: #24c6dc;

  --border: rgba(7, 22, 36, 0.12);
  --shadow: 0 18px 45px rgba(7, 22, 36, 0.10);

  --container: 1300px;
  --radius: 22px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  border-radius: 10px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary-dark);
  background: var(--surface-soft);
}

.header-contact {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  border-left: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.header-contact a {
  color: var(--text);
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #b98b35;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 111, 134, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
}

/* Hero */

.hero {
  padding: 86px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(36, 198, 220, 0.20), transparent 32%),
    linear-gradient(135deg, #f7fdff 0%, #e8f7fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-secondary {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid var(--border);
}

.hero-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.hero-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-weight: 700;
}

.hero-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

/* Services */

.quick-services {
  padding: 70px 0;
  background: var(--surface);
}

.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
}

/* Footer */

.site-footer {
  color: #dbeaf0;
  background: #071624;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.brand-footer .brand-text strong {
  color: #fff;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(219, 234, 240, 0.76);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(219, 234, 240, 0.76);
  font-size: 15px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  color: rgba(219, 234, 240, 0.62);
  font-size: 14px;
}

/* Responsive */

@media (max-width: 1060px) {
  .header-contact {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    margin-left: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    border-radius: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 58px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .service-card {
    padding: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

  .footer-bottom-inner {
    display: grid;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo--header {
  height: 60px;
  max-width: 260px;
}

.brand-logo--footer {
  height: 52px;
  max-width: 230px;
}
@media (max-width: 640px) {
  .brand-logo--header {
    height: 40px;
    max-width: 180px;
  }

  .brand-logo--footer {
    height: 46px;
    max-width: 200px;
  }
}
.footer-areas {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.footer-areas-inner {
  padding: 26px 0;
}

.footer-areas h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.footer-areas p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  color: rgba(219, 234, 240, 0.72);
  font-size: 15px;
}

.footer-areas p + p {
  margin-top: 10px;
}

.footer-areas strong {
  margin-right: 5px;
  color: rgba(219, 234, 240, 0.82);
  font-weight: 500;
}

.footer-areas span {
  color: rgba(255, 255, 255, 0.92);
}

.footer-areas span:not(:last-child)::after {
  content: " · ";
  color: rgba(219, 234, 240, 0.52);
  margin: 0 5px;
}
@media (max-width: 640px) {
  .footer-areas-inner {
    padding: 24px 0;
  }

  .footer-areas h2 {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .footer-areas p {
    display: block;
    line-height: 1.8;
  }

  .footer-areas strong {
    display: block;
    margin: 0 0 2px;
  }

  .footer-areas span:not(:last-child)::after {
    content: " · ";
    margin: 0 4px;
  }
}

.btn-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==============================
   GLOBAL SAFETY / SHARED BLOCKS
============================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body,
main,
section,
.container {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: break-word;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  max-width: 100%;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
}

.home-btn--primary {
  color: #071018;
  background: linear-gradient(135deg, #c89b3c, #f0d486);
  box-shadow: 0 16px 40px rgba(200, 155, 60, 0.25);
}

.home-btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.home-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.home-btn--dark {
  color: #ffffff;
  background: #071018;
}

/* Reusable final CTA block */

.home-ready {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background-image: url("../images/ready-car.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-ready__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.76), rgba(5, 7, 10, 0.92)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.84), rgba(5, 7, 10, 0.38), rgba(5, 7, 10, 0.84));
}

.home-ready__inner {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  padding: 110px 0;
}

.home-ready h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 7vw, 98px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.home-ready h2 span {
  color: #d8b86a;
}

.home-ready p {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.home-ready__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
}

.home-ready__link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.home-ready__link:hover {
  color: #ffffff;
}

@media (max-width: 760px) {
  .home-ready {
    min-height: 480px;
  }

  .home-ready__inner {
    padding: 82px 0;
  }

  .home-ready h2 {
    font-size: clamp(42px, 12vw, 66px);
    letter-spacing: -0.055em;
  }

  .home-ready p {
    font-size: 18px;
  }

  .home-ready__actions {
    display: grid;
    gap: 14px;
  }

  .home-ready__actions .home-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-ready h2 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -0.045em;
  }
}
