/* ===== Design tokens ===== */
:root {
  --navy: #0d1b2a;
  --navy-2: #16283d;
  --steel: #1b263b;
  --orange: #ff6b00;
  --orange-dark: #e85d00;
  --amber: #ffb703;
  --ink: #16202b;
  --muted: #5b6b7b;
  --line: #e3e8ee;
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 27, 42, 0.16);
  --maxw: 1160px;
  --font-head: "Barlow Condensed", "Inter", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255,107,0,.28); }
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 10px 26px rgba(255,107,0,.38); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.section .btn--ghost, .contact-info .btn--ghost { border-color: var(--navy); color: var(--navy); }
.section .btn--ghost:hover, .contact-info .btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--block { width: 100%; }

/* ===== Top bar ===== */
.topbar { background: var(--navy); color: #cdd8e3; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar__contact { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar__sep { opacity: .5; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: .5px;
}
.brand__text { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: .5px; text-transform: uppercase; }
.brand__text strong { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link { padding: 10px 14px; border-radius: 8px; font-weight: 600; color: var(--navy); transition: background .2s, color .2s; }
.nav__link:hover { background: var(--bg-alt); color: var(--orange); }
.nav__cta { background: var(--orange); color: #fff !important; }
.nav__cta:hover { background: var(--orange-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(rgba(13,27,42,.86), rgba(13,27,42,.92)),
    radial-gradient(circle at 80% 20%, rgba(255,107,0,.35), transparent 45%),
    var(--navy);
  color: #fff; padding: 80px 0;
}
.hero__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--amber); font-size: .85rem; margin-bottom: 12px; }
.hero__title { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; text-transform: uppercase; margin-bottom: 18px; }
.hero__lead { color: #c9d4df; font-size: 1.1rem; max-width: 560px; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__badges { display: flex; gap: 20px; flex-wrap: wrap; color: #cdd8e3; font-weight: 600; font-size: .95rem; }

.hero__card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); }
.hero__card-title { font-family: var(--font-head); font-size: 1.6rem; text-transform: uppercase; margin-bottom: 8px; }
.hero__card-text { color: var(--muted); margin-bottom: 20px; }
.hero__card-call { display: block; text-align: center; margin-top: 14px; color: var(--muted); font-weight: 600; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--orange); font-size: .82rem; margin-bottom: 10px; }
.section__title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.section__sub { color: var(--muted); font-size: 1.05rem; }

/* ===== Cards / grids ===== */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.grid { display: grid; gap: 24px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--two { grid-template-columns: repeat(2, 1fr); }
.grid--contact { grid-template-columns: 1.5fr 1fr; align-items: start; }

.service { padding: 28px; transition: transform .2s ease, box-shadow .2s ease; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service__icon { font-size: 2rem; width: 60px; height: 60px; display: grid; place-items: center; background: var(--bg-alt); border-radius: 12px; margin-bottom: 16px; }
.service h3 { font-family: var(--font-head); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 8px; }
.service p { color: var(--muted); margin-bottom: 16px; }
.service__price { display: inline-block; font-weight: 700; color: var(--orange); background: rgba(255,107,0,.1); padding: 6px 14px; border-radius: 999px; }

/* ===== Offers (mobile vs shop) ===== */
.offer { padding: 34px; position: relative; }
.offer__tag { position: absolute; top: 22px; right: 22px; background: var(--orange); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 12px; border-radius: 999px; }
.offer__tag--shop { background: var(--navy); }
.offer h3 { font-family: var(--font-head); font-size: 1.8rem; text-transform: uppercase; margin-bottom: 10px; }
.offer > p { color: var(--muted); margin-bottom: 18px; }

.ticklist { margin-bottom: 22px; }
.ticklist li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--ink); }
.ticklist li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.ticklist--two { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }

/* ===== Inspection ===== */
.inspection { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.inspection__content .section__title, .inspection__content .section__eyebrow { text-align: left; }
.inspection__content .section__sub { margin-bottom: 22px; }
.inspection__price { display: grid; gap: 18px; }
.pricecard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: var(--shadow); }
.pricecard--accent { background: linear-gradient(135deg, var(--navy), var(--steel)); color: #fff; border-color: transparent; }
.pricecard__label { display: block; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: .85rem; color: var(--muted); }
.pricecard--accent .pricecard__label { color: var(--amber); }
.pricecard__amount { display: block; font-family: var(--font-head); font-size: 3rem; line-height: 1; color: var(--orange); margin: 8px 0; }
.pricecard--accent .pricecard__amount { color: #fff; }
.pricecard__note { color: var(--muted); font-size: .92rem; }
.pricecard--accent .pricecard__note { color: #c9d4df; }

/* ===== Pricing table ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.pricing-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 520px; }
.pricing-table th, .pricing-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.pricing-table thead th { background: var(--navy); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; font-size: 1rem; }
.pricing-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.pricing-table tbody tr:hover { background: rgba(255,107,0,.06); }
.ta-right { text-align: right !important; font-weight: 700; color: var(--orange); }
.pricing-note { color: var(--muted); font-size: .9rem; margin-top: 16px; text-align: center; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.about .section__title, .about .section__eyebrow { text-align: left; }
.about p { color: var(--muted); margin-bottom: 16px; }
.stats { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.4rem; color: var(--orange); line-height: 1; }
.stat span { color: var(--muted); font-size: .9rem; }
.about__quotes { display: grid; gap: 20px; }
.quote { background: #fff; border-left: 4px solid var(--orange); border-radius: var(--radius-sm); padding: 22px 24px; box-shadow: var(--shadow); }
.quote p { color: var(--ink); font-style: italic; margin-bottom: 10px; }
.quote cite { color: var(--muted); font-weight: 600; font-style: normal; }

/* ===== Contact / form ===== */
.form { padding: 30px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form__group label, .form__label { font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.form input, .form select, .form textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); transition: border .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,.15);
}
.radio-row { display: flex; gap: 22px; flex-wrap: wrap; }
.radio { display: flex; align-items: center; gap: 8px; font-weight: 500; cursor: pointer; }
.form__status { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.form__status.ok { color: #128a2b; }
.form__status.err { color: #cc2b2b; }
.form__optional { font-weight: 400; color: var(--muted); }

/* ===== Text photos/video block ===== */
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); box-shadow: var(--shadow); }

.textmedia {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-alt);
}
.textmedia__icon {
  font-size: 1.6rem; flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center;
  background: #fff; border-radius: 12px; border: 1px solid var(--line);
}
.textmedia__text { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }

.contact-info { padding: 30px; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 16px; }
.contact-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.contact-list a { font-weight: 600; color: var(--navy); }
.service-area { margin: 22px 0; }
.service-area h4 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.1rem; margin-bottom: 6px; }
.service-area p { color: var(--muted); font-size: .95rem; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: #c9d4df; padding: 44px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand strong { color: #fff; font-family: var(--font-head); font-size: 1.3rem; text-transform: uppercase; }
.footer__brand p { font-size: .9rem; }
.footer__nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__nav a { font-weight: 600; }
.footer__nav a:hover { color: var(--orange); }
.footer__copy { font-size: .85rem; width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .inspection, .about, .grid--contact { grid-template-columns: 1fr; }
  .grid--services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 20px 24px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .3s ease; z-index: 40;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 14px; border-radius: 8px; }
  .nav__cta { text-align: center; margin-top: 6px; }
  .nav-toggle { display: flex; }
  .grid--two { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid--services { grid-template-columns: 1fr; }
  .ticklist--two { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0; }
  .stats { gap: 22px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
