@font-face {
  font-family: "Poppins";
  src: url("../images/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --orange: #f15a2c;
  --orange-dark: #d9471d;
  --orange-soft: #fff0ea;
  --ink: #313944;
  --ink-deep: #1e252d;
  --muted: #68727d;
  --paper: #ffffff;
  --surface: #f7f6f4;
  --line: rgba(49, 57, 68, 0.12);
  --shadow: 0 24px 70px rgba(49, 57, 68, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--orange);
}

#header {
  z-index: 997;
  padding: 22px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

#header.header-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 32px rgba(49, 57, 68, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo img {
  display: block;
  width: 164px;
  height: auto;
}

.navbar {
  padding: 0;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.navbar a:not(.nav-cta)::after {
  position: absolute;
  right: 16px;
  bottom: 4px;
  left: 16px;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--orange);
}

.navbar a:hover::after,
.navbar a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-cta {
  margin-left: 8px;
  padding: 12px 19px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.navbar .nav-cta:hover,
.navbar .nav-cta.active {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  padding: 6px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
}

.hero {
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding: 140px 0 90px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 5%, rgba(255, 241, 235, 0.88) 100%),
    url("../images/hero-bg.jpg") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.26;
  background-image: radial-gradient(rgba(49, 57, 68, 0.3) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, #000, transparent 58%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: -18vw;
  right: -10vw;
  width: 45vw;
  height: 45vw;
  background: rgba(241, 90, 44, 0.18);
}

.hero-orb-two {
  bottom: -20vw;
  left: 30%;
  width: 34vw;
  height: 34vw;
  background: rgba(255, 190, 165, 0.25);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(3.2rem, 5.25vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 545px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(241, 90, 44, 0.28);
}

.button-primary:hover {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 18px 38px rgba(241, 90, 44, 0.35);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  color: var(--orange);
  background: #fff;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 43px;
}

.trust-avatars {
  display: flex;
  padding-left: 9px;
}

.trust-avatars span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: -9px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.trust-avatars span:nth-child(2) {
  background: var(--orange);
}

.trust-avatars span:nth-child(3) {
  color: var(--ink);
  background: #ffc6b4;
}

.hero-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.hero-trust strong {
  color: var(--ink);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 610px);
  min-height: 610px;
  margin-left: auto;
  place-items: center;
  background: linear-gradient(150deg, rgba(241, 90, 44, 0.95), rgba(250, 145, 113, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 48% 48% 28% 42% / 42% 38% 45% 38%;
  box-shadow: 0 40px 100px rgba(82, 51, 40, 0.2);
}

.visual-grid {
  position: absolute;
  inset: 22px;
  opacity: 0.25;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle, #000 25%, transparent 75%);
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 118%;
  max-width: none;
  margin: 0 -9% -3%;
  filter: drop-shadow(0 30px 32px rgba(49, 57, 68, 0.2));
  animation: float 5s ease-in-out infinite;
}

.hero-orbit {
  --orbit-size: 480px;
  --orbit-duration: 46s;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: var(--orbit-size);
  height: var(--orbit-size);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.orbit-track {
  position: absolute;
  inset: 0;
  transform: rotate(var(--angle));
  animation: orbit-spin var(--orbit-duration) linear infinite;
}

/* Counter-rotates at the same speed as its track so the card stays upright. */
.orbit-card {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(49, 57, 68, 0.14);
  transform: translate(-50%, -50%) rotate(calc(var(--angle) * -1));
  animation: orbit-counter-spin var(--orbit-duration) linear infinite;
}

.orbit-card i,
.card-dot {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}

.orbit-card i {
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--orange);
  border-radius: 12px;
  font-size: 17px;
}

.card-dot {
  width: 13px;
  height: 13px;
  margin: 0 6px;
  background: #28a66f;
  border: 3px solid #d7f4e6;
  border-radius: 50%;
}

.orbit-card strong,
.orbit-card span:not(.card-dot) {
  display: block;
  line-height: 1.4;
  white-space: nowrap;
}

.orbit-card strong {
  color: var(--ink-deep);
  font-size: 12px;
}

.orbit-card span:not(.card-dot) {
  color: var(--muted);
  font-size: 10px;
}

@keyframes orbit-spin {
  from { transform: rotate(var(--angle)); }
  to { transform: rotate(calc(var(--angle) + 360deg)); }
}

@keyframes orbit-counter-spin {
  from { transform: translate(-50%, -50%) rotate(calc(var(--angle) * -1)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--angle) * -1 - 360deg)); }
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  color: var(--orange);
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

.about {
  background: var(--paper);
}

.about-visual {
  position: relative;
  max-width: 570px;
}

.image-frame {
  position: relative;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.image-frame::before {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: -1;
  width: 120px;
  height: 120px;
  content: "";
  background-image: radial-gradient(var(--orange) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.45;
}

.image-frame img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: contain;
  background: linear-gradient(140deg, #fff2ed, #ffd7c9);
  border-radius: 22px;
}

.experience-badge {
  position: absolute;
  right: -18px;
  bottom: 35px;
  padding: 18px 23px;
  color: #fff;
  background: var(--ink);
  border: 5px solid #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  font-size: 20px;
}

.experience-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.section-kicker {
  margin-bottom: 18px;
}

.section-heading {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-lead {
  margin: 27px 0 16px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.about .col-lg-6 > p:not(.section-lead) {
  color: var(--muted);
}

.value-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
}

.value-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 14px;
}

.value-list i {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}

.value-list strong {
  color: var(--ink);
}

.text-link,
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  transition: gap 0.25s ease;
}

.text-link:hover,
.service-link:hover {
  gap: 14px;
  color: var(--orange);
}

.counts {
  z-index: 3;
  margin: -28px 0;
  padding: 0;
  overflow: visible;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px 24px;
  color: #fff;
  background: var(--ink-deep);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(30, 37, 45, 0.22);
}

.stat {
  position: relative;
  padding: 9px 30px;
  text-align: center;
}

.stat:not(:last-child)::after {
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  content: "";
  background: rgba(255, 255, 255, 0.14);
}

.stat span {
  display: block;
  color: var(--orange);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.stat p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.services {
  padding-top: 160px;
  background: var(--surface);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-intro > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 360px;
  padding: 42px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  content: "";
  background: var(--orange-soft);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: rgba(241, 90, 44, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 33px;
  color: rgba(49, 57, 68, 0.15);
  font-size: 14px;
  font-weight: 700;
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 31px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 18px;
  font-size: 25px;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--ink-deep);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card p {
  max-width: 500px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.service-link {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 42px;
}

.cta-band {
  padding: 0;
  overflow: visible;
  background: var(--surface);
}

.cta-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 62px 70px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(241, 90, 44, 0.96), rgba(220, 68, 26, 0.92)),
    url("../images/hero-bg.jpg") center / cover;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(241, 90, 44, 0.22);
}

.cta-inner::after {
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cta-inner h2 {
  max-width: 720px;
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.button-light {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  color: var(--ink-deep);
  background: #fff;
}

.button-light:hover {
  color: var(--orange);
}

.contact {
  padding-top: 140px;
  background: #fff;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.35fr);
  min-height: 530px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-details {
  padding: 53px 46px;
  color: #fff;
  background: var(--ink-deep);
}

.contact-details h3 {
  margin: 0 0 9px;
  font-size: 27px;
  font-weight: 700;
}

.contact-details > p {
  margin-bottom: 37px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item > span {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--orange);
  background: rgba(241, 90, 44, 0.12);
  border-radius: 13px;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-item strong {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.contact-item:hover strong {
  color: #ff9b7d;
}

.map-wrap {
  min-height: 530px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

#footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1fr;
  gap: 70px;
  padding: 76px 0 54px;
}

.footer-brand img {
  width: 175px;
}

.footer-brand p {
  max-width: 420px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  visibility: hidden;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(241, 90, 44, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top i {
  font-size: 24px;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Below this width the hero columns sit close together, so the orbit and the
   copy both tighten up to keep the cards clear of the headline. */
@media (max-width: 1399px) {
  .hero h1 {
    max-width: 510px;
  }

  .hero-lead {
    max-width: 450px;
  }

  .hero-orbit {
    --orbit-size: 440px;
  }

  .orbit-card {
    gap: 9px;
    padding: 9px 15px;
  }

  .orbit-card i {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .orbit-card strong {
    font-size: 11px;
  }

  .orbit-card span:not(.card-dot) {
    font-size: 9px;
  }
}

@media (max-width: 1199px) {
  .hero-visual {
    min-height: 510px;
  }

  .hero-orbit {
    --orbit-size: 400px;
  }
}

/* Narrowest two-column hero: cards drop their second line so they stay inside
   the illustration instead of drifting over the headline. */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-orbit {
    --orbit-size: 340px;
  }

  .orbit-card {
    padding: 8px 13px;
  }

  .orbit-card span:not(.card-dot) {
    display: none;
  }
}

@media (max-width: 991px) {
  section {
    padding: 90px 0;
  }

  /* No backdrop-filter here: it would make the header the containing block for
     the fixed full-screen menu panel, shrinking it to the header's height. */
  #header,
  #header.header-scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Both sit above the full-screen menu panel so the bar stays usable. */
  #header .logo,
  .mobile-nav-toggle {
    position: relative;
    z-index: 1001;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navbar a:not(.nav-cta)::after {
    display: none;
  }

  .navbar ul {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 80px 28px 40px;
    visibility: hidden;
    background: #fff;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .navbar.navbar-mobile ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .navbar a {
    justify-content: center;
    padding: 15px;
    font-size: 22px;
  }

  .navbar .nav-cta {
    width: fit-content;
    margin: 14px auto 0;
    padding: 14px 25px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 105px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 570px;
    margin: 30px auto 0;
  }

  .hero-orbit {
    --orbit-size: 500px;
  }

  .scroll-cue {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 76px 0;
  }

  .hero {
    padding: 125px 0 82px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 440px;
    border-radius: 38% 42% 27% 35%;
  }

  .hero-image {
    width: 108%;
    margin: 0 -4%;
  }

  .hero-orbit {
    --orbit-size: 360px;
  }

  .orbit-card {
    gap: 8px;
    padding: 8px 13px;
  }

  .orbit-card i {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .orbit-card strong {
    font-size: 11px;
  }

  .orbit-card span:not(.card-dot) {
    font-size: 9px;
  }

  .image-frame {
    padding: 14px;
  }

  .image-frame img {
    min-height: 320px;
  }

  .experience-badge {
    right: 8px;
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .stat:nth-child(2)::after {
    display: none;
  }

  .services {
    padding-top: 120px;
  }

  .service-card {
    min-height: 345px;
    padding: 34px 30px;
  }

  .service-link {
    bottom: 32px;
    left: 30px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 44px 34px;
  }

  .contact {
    padding-top: 105px;
  }

  .contact-details {
    padding: 40px 30px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 390px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  #header .logo img {
    width: 145px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    text-align: left;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-orbit {
    --orbit-size: 265px;
  }

  .orbit-card {
    padding: 7px;
    border-radius: 12px;
  }

  .orbit-card > div {
    display: none;
  }

  .card-dot {
    margin: 8px;
  }

  .section-heading {
    font-size: 2.35rem;
  }

  .stats-panel {
    padding: 28px 10px;
  }

  .stat {
    padding: 7px 8px;
  }

  .stat p {
    font-size: 10px;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

.cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor *,
  html.has-custom-cursor *::before,
  html.has-custom-cursor *::after {
    cursor: none !important;
  }

  html.has-custom-cursor .cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: block;
    width: 40px;
    height: 40px;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0);
    will-change: transform;
  }

  html.has-custom-cursor .cursor.is-hidden {
    opacity: 0;
  }

  .cursor-ring,
  .cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--ink-deep);
    opacity: 0.55;
    transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 90, 44, 0.16);
    transition: width 0.28s ease, height 0.28s ease, background 0.28s ease;
  }

  html.has-custom-cursor .cursor.is-hovering .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--orange);
    background: rgba(241, 90, 44, 0.08);
    opacity: 1;
  }

  html.has-custom-cursor .cursor.is-hovering .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--orange-dark);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
