/* ==========================================================================
   NARTI Aircon Service — main stylesheet
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy: #0d2c49;
  --navy-2: #173a5e;
  --navy-line: rgba(255, 255, 255, 0.14);
  --orange: #f37021;
  --orange-dark: #dc5f12;
  --orange-soft: #fdeee4;
  --blue: #2f6db5;
  --blue-soft: #eef5fc;
  --light: #f1f6fa;
  --ink: #0f2a47;
  --text: #5b6b7c;
  --muted: #8a99a8;
  --border: #e3e9ef;
  --white: #ffffff;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1140px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(13, 44, 73, 0.08);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button, input, select { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.divider {
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin: 22px 0 24px;
}

.text { font-size: 16px; line-height: 1.75; color: var(--text); max-width: 480px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn__arrow { transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 20px rgba(243, 112, 33, .25); }
.btn--primary:hover { background: var(--orange-dark); }

.btn--outline { border-color: var(--orange); color: var(--orange); background: transparent; }
.btn--outline:hover { background: var(--orange); color: var(--white); }

.btn--ghost { border-color: rgba(255, 255, 255, .45); color: var(--white); background: transparent; height: 46px; }
.btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--white { background: var(--white); color: var(--orange); }
.btn--white:hover { background: var(--navy); color: var(--white); }

.btn--sm { height: 46px; padding: 0 24px; font-size: 14px; }
.btn--block { width: 100%; }

.link-more {
  display: inline-flex;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.link-more span { transition: transform .2s; }
.link-more:hover span { transform: translateX(4px); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section--navy { background: var(--navy); }
.section--navy .section-title { color: var(--white); }
.section--light { background: var(--light); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head__text { max-width: 300px; font-size: 15px; line-height: 1.7; color: var(--text); }
.section--navy .section-head__text { color: rgba(255, 255, 255, .72); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow .25s;
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(13, 44, 73, .08); }

.header__inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 40px;
}
.header__logo img { width: 150px; height: auto; }

.nav { flex: 1; }
.nav__list { display: flex; gap: 34px; }
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav__link:hover,
.nav__link.is-active { color: var(--blue); }
.nav__link.is-active::after,
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { display: none; }

.header__right { display: flex; align-items: center; gap: 28px; }
.header__phone { display: flex; flex-direction: column; line-height: 1.3; }
.header__phone strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.header__phone span { font-size: 12px; color: var(--muted); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 560px;
  background: linear-gradient(135deg, #f9fbfe 0%, #eef4fa 100%);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: 560px; }
.hero__content { max-width: 50%; padding: 70px 40px 70px 0; }

.hero__title {
  font-size: clamp(36px, 3.7vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero__text { font-size: 16px; line-height: 1.8; color: var(--text); max-width: 400px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: var(--navy);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 26%);
  overflow: hidden;
}
.hero__stripe {
  position: absolute;
  inset: 0;
  background: var(--orange);
  clip-path: polygon(0 26%, 10% 0, 20% 0, 88% 100%, 60% 100%, 0 46%);
}
.hero__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 108%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { background: var(--navy); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 26px;
  padding-bottom: 26px;
}
.stat { display: flex; align-items: center; gap: 14px; }
.stat__num { font-size: 30px; font-weight: 800; color: var(--orange); letter-spacing: -.02em; line-height: 1; }
.stat__label { font-size: 12px; line-height: 1.45; color: rgba(255, 255, 255, .75); }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.checklist { margin: 26px 0 34px; display: grid; gap: 14px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.about__collage {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 440 / 320;
  margin-left: auto;
  margin-right: 30px;
}
.about__img {
  position: absolute;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}
.about__img--main { left: 13%; top: 0;   width: 55%; height: 67%; z-index: 2; }
.about__img--tr   { left: 69%; top: 13%; width: 31%; height: 42%; z-index: 1; object-position: 70% center; }
.about__img--bl   { left: 0;   top: 58%; width: 41%; height: 42%; z-index: 3; }
.about__img--br   { left: 52%; top: 55%; width: 48%; height: 45%; z-index: 3; }
.about__deco { position: absolute; background: var(--blue-soft); z-index: 0; }
.about__deco--1 { left: 0;   top: 32%; width: 16%; height: 24%; background: #dcebfa; }
.about__deco--2 { left: 67%; top: 0;   width: 29%; height: 16%; background: #dcebfa; }
.about__deco--3 { left: 40%; top: 68%; width: 14%; height: 24%; background: #dcebfa; }

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 50px;
  align-items: start;
}
.services__intro .btn { margin-bottom: 28px; }
.services__img {
  border-radius: var(--radius);
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}
.services__img img { width: 100%; aspect-ratio: 420 / 175; object-fit: cover; object-position: center 35%; }

.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  padding: 30px 24px 28px;
  border-right: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  transition: background-color .25s;
}
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-last-child(-n+3) { border-bottom: 0; }
.service-card:hover { background: rgba(255, 255, 255, .04); }
.service-card__icon {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 22px;
}
.service-card__title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-card__text { font-size: 13px; line-height: 1.65; color: rgba(255, 255, 255, .62); margin-bottom: 18px; min-height: 43px; }

/* ==========================================================================
   Request a Service
   ========================================================================== */
.request__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: center;
}
.request-form {
  background: var(--orange);
  border-radius: 8px;
  padding: 34px 28px 30px;
  display: grid;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(243, 112, 33, .2);
}
.request-form__title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.field {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .16);
  color: var(--white);
  font-size: 13px;
  outline: none;
  transition: border-color .2s, background-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field::placeholder { color: rgba(255, 255, 255, .78); }
.field:focus { border-color: var(--white); background: rgba(255, 255, 255, .24); }
.field.is-invalid { border-color: var(--navy); }
.field-select { position: relative; }
.field-select::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 7px; height: 7px;
  margin-top: -6px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  pointer-events: none;
}
select.field { cursor: pointer; }
select.field:invalid { color: rgba(255, 255, 255, .78); }
select.field option { color: var(--ink); }
input[type="date"].field::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.request-form .btn { margin-top: 12px; height: 48px; }
.request-form__msg { font-size: 13px; color: var(--white); min-height: 0; }
.request-form__msg:empty { display: none; }

.request__content .text { margin-bottom: 30px; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step__media { position: relative; border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.step__media img { width: 100%; aspect-ratio: 240 / 150; object-fit: cover; transition: transform .5s; }
.step:hover .step__media img { transform: scale(1.05); }
.step__num {
  position: absolute;
  top: 0; right: 0;
  min-width: 42px; height: 38px;
  display: grid; place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 0 4px 0 6px;
}
.step__title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.step__text { font-size: 13px; line-height: 1.65; color: var(--text); }

/* ==========================================================================
   Our Work
   ========================================================================== */
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, .25); }
.work-card img { width: 100%; aspect-ratio: 320 / 180; object-fit: cover; }
.work-card__body { padding: 20px 22px 22px; border-left: 3px solid var(--orange); }
.work-card__title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.work-card__text { font-size: 13px; color: var(--text); }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
}
.why__content .text { margin-bottom: 28px; }
.why__img { border-radius: 4px; overflow: hidden; }
.why__img img { width: 100%; aspect-ratio: 460 / 185; object-fit: cover; object-position: center 40%; }

.why__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card {
  position: relative;
  background: var(--blue-soft);
  border-top: 3px solid var(--blue);
  border-radius: 4px;
  padding: 26px 22px 24px;
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card__num {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 22px;
  font-weight: 800;
  color: #d6e4f3;
}
.why-card__icon {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 18px;
}
.why-card__title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.why-card__text { font-size: 13px; line-height: 1.65; color: var(--text); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 54px;
  align-items: end;
}
.faq__img { border-radius: 4px; overflow: hidden; }
.faq__img img { width: 100%; aspect-ratio: 380 / 230; object-fit: cover; }
.faq__content .section-title { margin-bottom: 30px; }

.accordion { display: grid; gap: 12px; }
.accordion__item {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  transition: border-color .25s;
}
.accordion__item.is-open { border-color: rgba(243, 112, 33, .55); }
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.accordion__icon { position: relative; flex: 0 0 12px; width: 12px; height: 12px; }
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 2px;
  margin-top: -1px;
  background: rgba(255, 255, 255, .6);
  transition: transform .25s;
}
.accordion__icon::after { transform: rotate(90deg); }
.accordion__item.is-open .accordion__icon::after { transform: rotate(0); }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel > p {
  overflow: hidden;
  padding: 0 20px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .68);
}
.accordion__item.is-open .accordion__panel > p { padding-bottom: 20px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { display: block; overflow: hidden; }
.post-card__media img { width: 100%; aspect-ratio: 320 / 125; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 20px 22px 24px; }
.post-card__cat {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.post-card__title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.post-card__title a:hover { color: var(--orange); }
.post-card__text { font-size: 13px; line-height: 1.65; color: var(--text); }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.cta__left {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cta__content {
  width: 100%;
  max-width: calc(var(--container) / 2 + 24px);
  padding: 60px 40px 60px 24px;
}
.cta__title {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.cta__text { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .88); margin-bottom: 26px; }
.cta__right {
  position: relative;
  background: linear-gradient(90deg, #f37021 0%, #f58a2f 100%);
  overflow: hidden;
}
.cta__wave { position: absolute; left: 0; top: 0; width: 100%; height: calc(100% + 2px); }
.cta__img {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left top;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: rgba(255, 255, 255, .7); padding-top: 70px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer__brand img { width: 130px; margin-bottom: 18px; }
.footer__brand p { font-size: 13px; line-height: 1.75; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  transition: background-color .2s;
}
.socials a:hover { background: var(--orange); }
.socials svg { width: 15px; height: 15px; fill: var(--white); }
.footer__col h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { font-size: 13px; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 12px;
  position: relative;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: var(--navy-line);
}
.footer__bottom ul { display: flex; gap: 24px; }
.footer__bottom a:hover { color: var(--orange); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0s !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1140px) {
  .header__phone { display: none; }
  .nav__list { gap: 26px; }
}

@media (max-width: 991px) {
  :root { --header-h: 68px; }
  .section { padding: 80px 0; }

  /* mobile nav */
  .nav-toggle { display: block; }
  .header__right { display: none; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    padding: 12px 24px 28px;
    box-shadow: 0 20px 30px rgba(13, 44, 73, .12);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav__link::after { display: none; }
  .nav__cta { display: inline-flex; width: 100%; margin-top: 20px; }

  /* hero */
  .hero, .hero__inner { min-height: 0; }
  .hero__content { max-width: 560px; padding: 60px 0 40px; }
  .hero__visual {
    position: relative;
    width: 100%;
    height: 380px;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }
  .hero__img { width: 100%; object-position: center bottom; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; padding-top: 30px; padding-bottom: 30px; }

  .about__grid,
  .services__grid,
  .request__grid,
  .why__grid,
  .faq__grid { grid-template-columns: 1fr; }
  .about__collage { margin: 10px auto 0; }
  .services__cards { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--navy-line); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--navy-line); }
  .service-card:nth-last-child(-n+2) { border-bottom: 0; }
  .request__grid { max-width: 560px; }
  .request-form { order: 2; }
  .faq__img { order: 2; }

  .steps__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .work__grid,
  .blog__grid { grid-template-columns: repeat(2, 1fr); }

  .cta { grid-template-columns: 1fr; }
  .cta__left { justify-content: flex-start; }
  .cta__right { height: 320px; }
  .cta__img { object-position: center top; }

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

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  .footer__bottom::before { left: 16px; right: 16px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__visual { height: 280px; }
  .stat__num { font-size: 24px; }
  .services__cards { grid-template-columns: 1fr; }
  .service-card { border-right: 0 !important; border-bottom: 1px solid var(--navy-line) !important; }
  .service-card:last-child { border-bottom: 0 !important; }
  .steps__grid,
  .work__grid,
  .blog__grid,
  .why__cards { grid-template-columns: 1fr; }
  .request-form { padding: 28px 20px; }
  .cta__content { padding: 56px 16px; }
  .cta__right { height: 240px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Services dropdown (header)
   ========================================================================== */
.nav__item--dropdown { position: relative; }
.nav__caret {
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 230px;
  padding: 10px 0;
  background: var(--white);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 18px 40px rgba(13, 44, 73, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 10;
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -17px; height: 14px; }
.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s, background-color .2s;
}
.dropdown a:hover,
.dropdown a.is-current { color: var(--orange); background: var(--orange-soft); }

/* ==========================================================================
   Home: four service cards
   ========================================================================== */
.services__cards--4 { grid-template-columns: repeat(2, 1fr); }
.services__cards--4 .service-card { padding: 36px 30px 32px; }
.services__cards--4 .service-card:nth-child(3n) { border-right: 1px solid var(--navy-line); }
.services__cards--4 .service-card:nth-child(2n) { border-right: 0; }
.services__cards--4 .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--navy-line); }
.services__cards--4 .service-card:nth-last-child(-n+2) { border-bottom: 0; }
.services__cards--4 .service-card__title { font-size: 17px; }
.services__cards--4 .service-card__text { font-size: 14px; min-height: 0; }
a.service-card { display: block; }
a.service-card:hover .link-more span { transform: translateX(4px); }

/* ==========================================================================
   Service page hero
   ========================================================================== */
.page-hero {
  background: var(--navy);
  padding: 70px 0 80px;
  overflow: hidden;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb [aria-current] { color: var(--white); }
.page-hero__title {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.page-hero__text { font-size: 16px; line-height: 1.75; color: rgba(255, 255, 255, .78); max-width: 520px; }
.page-hero__text + .page-hero__text { margin-top: 14px; }
.page-hero__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}
.page-hero__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.page-hero__media--cutout { background: linear-gradient(135deg, var(--orange) 0 45%, var(--navy-2) 45%); }
.page-hero__media--cutout img { object-fit: contain; object-position: center bottom; }

/* ==========================================================================
   Symptoms checklist
   ========================================================================== */
.symptoms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.symptom {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 20px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.symptom svg {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--orange);
  fill: none;
  stroke: var(--white);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   What's included
   ========================================================================== */
.included__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.included__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.included__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.included__content .text { margin-bottom: 28px; }
.packages { display: grid; gap: 18px; }
.packages--2 { grid-template-columns: 1fr 1fr; }
.package {
  background: var(--blue-soft);
  border-top: 3px solid var(--blue);
  border-radius: 4px;
  padding: 24px 22px;
}
.package__title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.checklist--tight { margin: 0; gap: 12px; }
.checklist--tight li { font-size: 14px; line-height: 1.5; padding-left: 30px; }
.checklist--tight li::before { top: 1px; margin-top: 0; width: 18px; height: 18px; background-size: 10px; }

/* ==========================================================================
   Other services
   ========================================================================== */
.service-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-link {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-link:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-link:hover .link-more span { transform: translateX(4px); }
.service-link__icon {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 18px;
}
.service-link__title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.service-link__text { font-size: 14px; line-height: 1.65; color: var(--text); margin-bottom: 16px; }

/* ==========================================================================
   Footer contact + WhatsApp button
   ========================================================================== */
.footer__contact a { line-height: 1.6; display: inline-block; }
.accordion__panel a { color: var(--orange); text-decoration: underline; }

.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .22);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ---------- Responsive for new components ---------- */
@media (max-width: 991px) {
  .nav__caret { display: none; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 6px 14px; min-width: 0;
    background: transparent;
  }
  .dropdown::before { display: none; }
  .dropdown a { padding: 10px 0; font-size: 14px; color: var(--text); background: none; }

  .page-hero { padding: 50px 0 60px; }
  .page-hero__grid,
  .included__grid { grid-template-columns: 1fr; gap: 40px; }
  .included__media img { aspect-ratio: 16 / 10; }
  .symptoms__grid { grid-template-columns: repeat(2, 1fr); }
  .service-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services__cards--4 { grid-template-columns: 1fr; }
  .symptoms__grid,
  .service-links,
  .packages--2 { grid-template-columns: 1fr; }
  .page-hero .hero__actions .btn { flex: 1 1 100%; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ==========================================================================
   Review ratings (hero)
   ========================================================================== */
.ratings { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px 16px 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(13, 44, 73, .07);
  transition: transform .2s, box-shadow .2s;
}
.rating:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(13, 44, 73, .12); }
.rating__logo { flex: 0 0 28px; width: 28px; height: 28px; }
.rating__body { display: grid; line-height: 1.25; }
.rating__name { font-size: 13px; font-weight: 700; color: var(--ink); }
.rating__stars {
  position: relative;
  display: inline-block;
  width: max-content;
  font-size: 14px;
  letter-spacing: 1px;
  color: #d5dde6;
  line-height: 1.2;
}
.rating__stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--rating, 0) / 5 * 100%);
  overflow: hidden;
  white-space: nowrap;
  color: #fbbc04;
}
.rating[data-review="trustpilot"] .rating__stars-fill { color: #00b67a; }
.rating:not(.has-rating) .rating__stars { display: none; }
.rating__meta { font-size: 12px; color: var(--text); }
.rating__meta strong { color: var(--ink); }

.ratings--dark .rating { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); box-shadow: none; }
.ratings--dark .rating__name,
.ratings--dark .rating__meta strong { color: var(--white); }
.ratings--dark .rating__meta { color: rgba(255, 255, 255, .7); }
.ratings--dark .rating__stars { color: rgba(255, 255, 255, .22); }

/* ==========================================================================
   Trust badges
   ========================================================================== */
.trust { background: var(--white); border-bottom: 1px solid var(--border); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.trust-badge { display: flex; align-items: center; gap: 14px; }
.trust-badge__seal {
  flex: 0 0 54px;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--orange);
}
.trust-badge__seal svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-badge__body { display: grid; gap: 2px; line-height: 1.4; }
.trust-badge__body strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.trust-badge__body span { font-size: 12.5px; color: var(--text); }

@media (max-width: 991px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 24px; }
}
@media (max-width: 480px) {
  .trust__grid { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; padding-bottom: 28px; }
  .ratings { gap: 10px; }
  .rating { flex: 1 1 100%; }
}

/* ---------- Touch targets on small screens ---------- */
@media (max-width: 640px) {
  .footer__col ul { gap: 0; }
  .footer__col a { display: inline-block; padding: 10px 0; }
  .post-card__title a { display: block; padding: 4px 0; }
}

/* ---------- Responsive fixes from audit ---------- */
@media (max-width: 991px) {
  /* show the whole technician cut-out instead of cropping his head */
  .hero__visual {
    height: auto;
    aspect-ratio: 3 / 2;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }
  .hero__img { height: 100%; object-fit: contain; object-position: center bottom; }
  /* long menu stays scrollable on short phones */
  .nav { max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
}
@media (max-width: 480px) {
  .stats__grid { gap: 20px 16px; }
  .stat { flex-direction: column; align-items: flex-start; gap: 6px; }
  .stat__label { font-size: 12.5px; }
}

/* ---------- 404 page ---------- */
.page-404 { padding: 110px 0 120px; }
.page-404__links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 40px; }
.page-404__links a { color: var(--white); font-weight: 600; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 4px; }
.page-404__links a:hover { color: var(--orange); border-color: var(--orange); }

/* ---------- Ratings sit between the intro text and the buttons ---------- */
.ratings { margin-top: 26px; }
.ratings + .hero__actions { margin-top: 26px; }

/* ==========================================================================
   About page
   ========================================================================== */
.breadcrumb--dot [aria-current] { color: var(--orange); }

/* ---------- Hero with background image ---------- */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 90px 0 110px;
}
.about-hero__bg { position: absolute; inset: 0; z-index: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(100deg, rgba(13, 44, 73, .97) 0%, rgba(13, 44, 73, .9) 45%, rgba(18, 64, 110, .78) 100%);
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero__title {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 560px;
}
.about-hero__text { font-size: 16px; line-height: 1.75; color: rgba(255, 255, 255, .8); max-width: 460px; }
.about-facts {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  padding: 6px 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about-facts li { display: flex; align-items: center; gap: 18px; padding: 22px 0; }
.about-facts li + li { border-top: 1px solid rgba(255, 255, 255, .12); }
.about-facts svg {
  flex: 0 0 30px; width: 30px; height: 30px;
  fill: none; stroke: var(--orange); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.about-facts strong { display: block; font-size: 16px; font-weight: 700; color: var(--white); }
.about-facts li span span { font-size: 13px; color: rgba(255, 255, 255, .68); }
.about-hero__watermark {
  position: absolute;
  right: 4%;
  bottom: -0.2em;
  z-index: 0;
  font-size: clamp(80px, 13vw, 190px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
  user-select: none;
}

/* ---------- Our story ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story__media { position: relative; margin: 0 26px 26px 0; }
.story__media::after {
  content: "";
  position: absolute;
  top: 26px; left: 26px; right: -26px; bottom: -26px;
  border: 2px solid var(--orange);
  border-radius: 6px;
  z-index: -1;
}
.story__media img { width: 100%; aspect-ratio: 5 / 3.6; object-fit: cover; border-radius: 6px; }
.story__badge {
  position: absolute;
  left: -18px; bottom: 16%;
  background: var(--navy);
  border-radius: 6px;
  padding: 16px 20px;
  box-shadow: 0 16px 30px rgba(13, 44, 73, .3);
}
.story__badge strong { display: block; font-size: 22px; font-weight: 800; color: var(--orange); line-height: 1.2; }
.story__badge span { font-size: 12px; color: rgba(255, 255, 255, .75); }
.story__content .text + .text { margin-top: 16px; }
.story__sign {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.story__sign strong { display: block; font-size: 15px; color: var(--ink); }
.story__sign span { font-size: 13px; color: var(--muted); }
.story__sign em { font-size: 14px; color: var(--blue); text-align: right; max-width: 220px; }

/* ---------- Stats (striped) ---------- */
.about-stats {
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 22px),
    var(--navy);
}
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 50px; padding-bottom: 50px; }
.about-stat { padding: 0 28px; }
.about-stat:first-child { padding-left: 0; }
.about-stat + .about-stat { border-left: 1px solid rgba(255, 255, 255, .12); }
.about-stat__num { display: block; font-size: 40px; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.about-stat__num em { font-style: normal; color: var(--orange); }
.about-stat__label { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, .7); }

/* ---------- Centered section heads ---------- */
.section-center { text-align: center; max-width: 560px; margin: 0 auto 50px; }
.divider--center { margin-left: auto; margin-right: auto; }
.section-center__text { font-size: 15px; line-height: 1.7; color: var(--text); }
.section--navy .section-center__text { color: rgba(255, 255, 255, .72); }

/* ---------- Habits ---------- */
.habits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.habit {
  position: relative;
  background: var(--white);
  border-top: 3px solid var(--orange);
  border-radius: 6px;
  padding: 30px 24px 28px;
  box-shadow: 0 6px 20px rgba(13, 44, 73, .05);
  transition: transform .3s, box-shadow .3s;
}
.habit:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.habit__num { position: absolute; top: 14px; right: 18px; font-size: 38px; font-weight: 800; color: #eef3f8; line-height: 1; }
.habit__icon {
  position: relative;
  width: 26px; height: 26px; margin-bottom: 26px;
  fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.habit__title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.habit__text { font-size: 13px; line-height: 1.65; color: var(--text); }

/* ---------- Timeline ---------- */
.tl { position: relative; list-style: none; margin: 0 auto; padding: 0; max-width: 1000px; }
.tl::before {
  content: "";
  position: absolute;
  top: 20px; bottom: 40px; left: 50%;
  width: 2px; margin-left: -1px;
  background: var(--orange);
  opacity: .8;
}
.tl-item { position: relative; display: grid; grid-template-columns: 1fr 90px 1fr; align-items: center; }
.tl-item + .tl-item { margin-top: 10px; }
.tl-item__dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
.tl-item--now .tl-item__dot { background: var(--orange); }
.tl-item__card {
  grid-row: 1;
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: 6px;
  padding: 20px 24px;
}
.tl-item:nth-child(odd) .tl-item__card { grid-column: 1; text-align: right; }
.tl-item:nth-child(even) .tl-item__card { grid-column: 3; }
.tl-item__card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.tl-item__card p { font-size: 13px; line-height: 1.65; color: rgba(255, 255, 255, .68); }

/* ---------- Work tiles ---------- */
.work-tiles {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  height: 540px;
}
.work-tile { position: relative; margin: 0; border-radius: 8px; overflow: hidden; }
.work-tile--large { grid-row: 1 / span 2; }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.work-tile:hover img { transform: scale(1.05); }
.work-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 44, 73, .92) 0%, rgba(13, 44, 73, .2) 45%, transparent 70%);
}
.work-tile__tag {
  position: absolute; top: 18px; left: 18px; z-index: 1;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 3px;
}
.work-tile figcaption { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 1; }
.work-tile figcaption strong { display: block; font-size: 16px; color: var(--white); margin-bottom: 4px; }
.work-tile figcaption span { font-size: 13px; color: rgba(255, 255, 255, .75); }

/* ---------- Promise ---------- */
.promise__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.promise-card {
  margin: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 44px 44px 36px;
  box-shadow: 0 24px 50px rgba(13, 44, 73, .08);
}
.promise-card__mark { display: block; font-size: 60px; line-height: .6; color: var(--orange); font-family: Georgia, serif; margin-bottom: 18px; }
.promise-card__quote { font-size: 21px; line-height: 1.45; font-weight: 700; color: var(--ink); margin-bottom: 26px; }
.promise-card footer { padding-top: 20px; border-top: 1px solid var(--border); }
.promise-card footer strong { display: block; font-size: 15px; color: var(--ink); }
.promise-card footer span { font-size: 13px; color: var(--muted); }
.promise-list { display: grid; gap: 14px; }
.promise-item {
  display: flex; align-items: center; gap: 18px;
  background: var(--white);
  border-radius: 6px;
  padding: 18px 22px;
  box-shadow: 0 4px 14px rgba(13, 44, 73, .05);
}
.promise-item svg {
  flex: 0 0 26px; width: 26px; height: 26px;
  fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.promise-item strong { display: block; font-size: 15px; color: var(--ink); }
.promise-item span span { font-size: 13px; color: var(--text); }

/* ---------- Areas ---------- */
.areas__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.areas__content .text { margin-bottom: 28px; }
.area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: 0 3px 10px rgba(13, 44, 73, .04);
}
.area-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.area-list:not(.is-expanded) .area-chip--extra { display: none; }
.area-more {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 0; border-radius: 999px;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background-color .2s;
}
.area-more::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--white); }
.area-more:hover { background: var(--orange); }

/* ---------- About responsive ---------- */
@media (max-width: 991px) {
  .about-hero { padding: 60px 0 80px; }
  .about-hero__grid,
  .story__grid,
  .promise__grid,
  .areas__grid { grid-template-columns: 1fr; gap: 44px; }
  .story__media { max-width: 560px; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .about-stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .habits__grid { grid-template-columns: repeat(2, 1fr); }
  .work-tiles { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .work-tile--large { grid-column: 1 / span 2; grid-row: auto; }
  .work-tile { aspect-ratio: 4 / 3; }
  .work-tile--large { aspect-ratio: 16 / 9; }

  /* timeline becomes a single column on the left */
  .tl::before { left: 32px; }
  .tl-item { grid-template-columns: 64px 1fr; gap: 18px; }
  .tl-item + .tl-item { margin-top: 18px; }
  .tl-item__dot { grid-column: 1; }
  .tl-item:nth-child(odd) .tl-item__card,
  .tl-item:nth-child(even) .tl-item__card { grid-column: 2; text-align: left; }
}
@media (max-width: 640px) {
  .about-facts { padding: 4px 20px; }
  .about-stat { padding: 0 16px; }
  .about-stat__num { font-size: 32px; }
  .habits__grid { grid-template-columns: 1fr; }
  .work-tiles { grid-template-columns: 1fr; }
  .work-tile--large { grid-column: auto; }
  .work-tile, .work-tile--large { aspect-ratio: 4 / 3; }
  .promise-card { padding: 34px 26px 28px; }
  .promise-card__quote { font-size: 18px; }
  .story__sign { flex-direction: column; align-items: flex-start; }
  .story__sign em { text-align: left; }
  .story__badge { left: 12px; bottom: 12px; }
}

/* ---------- About: closer match to the template ---------- */
.about-hero { padding: 80px 0 100px; }
@media (min-width: 992px) {
  .about-hero__grid { grid-template-columns: 1.25fr 1fr; }
}
.about-hero__title { font-size: clamp(30px, 3.1vw, 42px); max-width: 640px; }
.about-facts li { padding: 20px 0; }
.story__grid { align-items: start; }
.story__media { margin-top: 64px; }
@media (max-width: 991px) {
  .story__media { margin-top: 0; }
}

/* ---------- Developer credit ---------- */
.footer__credit a { color: var(--white); font-weight: 600; }
.footer__credit a:hover { color: var(--orange); }
@media (min-width: 992px) {
  .footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; }
  .footer__credit { text-align: center; }
  .footer__bottom ul { justify-self: end; }
}

/* ==========================================================================
   Mobile / tablet: nothing sits flush against the screen edge
   ========================================================================== */
@media (max-width: 991px) {
  /* home hero image becomes an inset card */
  .hero { padding-bottom: 40px; }
  .hero__visual {
    width: auto;
    margin: 0 24px;
    border-radius: 14px;
    clip-path: none;
    box-shadow: 0 20px 40px rgba(13, 44, 73, .18);
  }

  /* CTA block becomes an inset card */
  .cta {
    margin: 0 24px 60px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 44, 73, .15);
  }
  .cta__content { padding: 48px 32px 40px; }

  /* keep the WhatsApp button off the footer text */
  .footer { padding-bottom: 76px; }
}
@media (max-width: 640px) {
  .hero__visual { margin: 0 16px; border-radius: 12px; }
  .cta { margin: 0 16px 48px; border-radius: 12px; }
  .cta__content { padding: 40px 22px 34px; }
}

/* ---------- Breadcrumbs sit at the bottom of the hero ---------- */
.breadcrumb--bottom { margin: 28px 0 0; }
.about-hero .breadcrumb--bottom { margin-top: 26px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-hero { padding-bottom: 150px; }
.contact-hero .ratings { margin-top: 26px; }

/* cards overlap the bottom of the hero */
.contact-cards-wrap { position: relative; z-index: 2; margin-top: -80px; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border-top: 3px solid var(--orange);
  border-radius: 8px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 45px rgba(13, 44, 73, .12);
  transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(13, 44, 73, .18); }
.contact-card:hover .link-more span { transform: translateX(4px); }
.contact-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--orange);
  margin-bottom: 12px;
}
.contact-card__icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.contact-card__label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.contact-card__value { font-size: 15px; line-height: 1.45; font-weight: 700; color: var(--ink); flex: 1; }
.contact-card .link-more { margin-top: 8px; }

/* form + map */
.contact-main__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-form { padding: 36px 32px 32px; }
.contact-form__intro { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .88); margin: -4px 0 8px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field--area { height: auto; min-height: 110px; padding: 12px 14px; resize: vertical; line-height: 1.5; font-family: inherit; }

.contact-map {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map__frame { position: relative; flex: 1; min-height: 300px; background: var(--light); }
.contact-map__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-map__info { display: grid; gap: 20px; padding: 28px 28px 30px; }
.contact-map__info .eyebrow { margin-bottom: 8px; }
.contact-map__title { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.contact-map__info .btn { justify-self: start; }

/* what to send */
.send-us__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.send-card {
  position: relative;
  background: var(--white);
  border-radius: 6px;
  border-top: 3px solid var(--blue);
  padding: 28px 24px 26px;
  box-shadow: 0 6px 20px rgba(13, 44, 73, .05);
  transition: transform .3s, box-shadow .3s;
}
.send-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.send-card__num { position: absolute; top: 14px; right: 18px; font-size: 34px; font-weight: 800; line-height: 1; color: #e8eff7; }
.send-card__icon {
  position: relative;
  width: 26px; height: 26px; margin-bottom: 22px;
  fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.send-card__title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.send-card__text { font-size: 13px; line-height: 1.65; color: var(--text); }

@media (max-width: 1100px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .contact-hero { padding-bottom: 130px; }
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-map__frame { min-height: 320px; flex: none; }
  .send-us__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .contact-cards { grid-template-columns: 1fr; gap: 16px; }
  .contact-form { padding: 28px 20px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .send-us__grid { grid-template-columns: 1fr; }
  .contact-map__info { padding: 24px 20px; }
  .contact-map__info .btn { justify-self: stretch; }
}
.contact-hero .about-hero__watermark { font-size: clamp(56px, 11vw, 170px); right: 3%; }
.send-us .section-center { max-width: 620px; }
@media (max-width: 991px) { .contact-form { order: 0; } }

/* ==========================================================================
   Services overview + Projects pages
   ========================================================================== */
.about-hero__watermark--sm { font-size: clamp(50px, 10vw, 160px); right: 3%; }
.work__more { text-align: center; margin-top: 44px; }

/* service rows */
.svc-rows { display: grid; gap: 70px; }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; scroll-margin-top: calc(var(--header-h) + 20px); }
.svc-row--flip .svc-row__media { order: 2; }
.svc-row__media { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border-bottom: 4px solid var(--orange); }
.svc-row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s; }
.svc-row:hover .svc-row__media img { transform: scale(1.04); }
.svc-row__num {
  position: absolute; top: 0; left: 0;
  min-width: 58px; height: 52px; display: grid; place-items: center;
  background: var(--orange); color: var(--white); font-size: 18px; font-weight: 800;
  border-radius: 0 0 8px 0;
}
.svc-row__icon { width: 34px; height: 34px; fill: none; stroke: var(--orange); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.svc-row__title { font-size: clamp(24px, 2.4vw, 30px); font-weight: 800; color: var(--ink); letter-spacing: -.01em; margin-bottom: 14px; }
.svc-row__body .text { margin-bottom: 20px; }
.svc-row__body .checklist { margin-bottom: 28px; }
.svc-row__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* which service table */
.which__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.which__text { font-size: 15px; line-height: 1.75; color: rgba(255, 255, 255, .75); margin-bottom: 28px; max-width: 380px; }
.which__table-wrap { background: var(--navy-2); border: 1px solid var(--navy-line); border-radius: 8px; overflow: hidden; }
.which__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.which__table th {
  text-align: left; padding: 16px 22px;
  background: rgba(255, 255, 255, .05);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
}
.which__table td { padding: 16px 22px; border-top: 1px solid var(--navy-line); color: rgba(255, 255, 255, .85); vertical-align: top; }
.which__table td a { color: var(--white); font-weight: 700; white-space: nowrap; }
.which__table td a:hover { color: var(--orange); }

/* project filters + grid */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.filter-btn span { font-size: 12px; min-width: 22px; padding: 1px 7px; border-radius: 999px; background: var(--light); color: var(--text); }
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.filter-btn.is-active span { background: var(--orange); color: var(--white); }
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  margin: 0; background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-card[hidden] { display: none; }
.project-card__media { position: relative; overflow: hidden; }
.project-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s; }
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__body { padding: 18px 20px 20px; border-left: 3px solid var(--orange); }
.project-card__body strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.project-card__body span { font-size: 13px; color: var(--text); }

@media (max-width: 991px) {
  .svc-rows { gap: 56px; }
  .svc-row, .which__grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-row--flip .svc-row__media { order: 0; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-row__actions .btn { flex: 1 1 100%; }
  .which__table th, .which__table td { padding: 14px 16px; }
  .which__table td a { white-space: normal; }
  .projects__grid { grid-template-columns: 1fr; }
  .filters { gap: 8px; }
  .filter-btn { padding: 9px 14px; font-size: 13px; }
}
.svc-row > *, .which__grid > * { min-width: 0; }
@media (max-width: 640px) {
  .svc-row__actions .btn { white-space: normal; text-align: center; height: auto; min-height: 50px; padding: 12px 20px; }
}
.which__table td a { display: inline-block; padding: 6px 0; margin: -6px 0; }
