:root {
  --black: #08090b;
  --black-2: #101216;
  --black-3: #171a20;
  --red: #e10600;
  --red-dark: #a80500;
  --silver: #c7c9cf;
  --light: #f5f6f8;
  --white: #ffffff;
  --text: #17191e;
  --muted: #656b76;
  --border: #dde0e5;
  --success: #178346;
  --container: 1240px;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(0,0,0,.16);
  --shadow-soft: 0 14px 42px rgba(18,22,31,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 34px rgba(225,6,0,.26); }
.btn-primary:hover { background: #f11913; }
.btn-outline { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); color: #fff; backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.09); }
.btn-whatsapp { background: #1fa855; color: #fff; }
.btn-full { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(6,7,9,.95), rgba(6,7,9,.80));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(15px);
}
.nav-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 220px; display: block; flex: 0 0 auto; }
.brand img { width: 100%; height: 54px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 27px; color: #d9dce2; font-size: .91rem; font-weight: 760; }
.site-nav > a:not(.nav-call) { position: relative; padding: 30px 0; }
.site-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.site-nav > a:not(.nav-call):hover::after { right: 0; }
.nav-call {
  padding: 11px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 9px;
  box-shadow: 0 10px 25px rgba(225,6,0,.22);
}
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); border-radius: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; background: #fff; border-radius: 999px; }

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7,8,10,.98) 0%, rgba(7,8,10,.92) 28%, rgba(7,8,10,.45) 57%, rgba(7,8,10,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.35));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), #ff3a2f 38%, transparent 78%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 76px; }
.hero-copy { max-width: 780px; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #d6d9df; font-size: .84rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero-kicker span { width: 42px; height: 2px; background: var(--red); }
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 700px; margin: 28px 0 0; color: #d1d5dc; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 720px; margin-top: 52px; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.hero-proof > div { display: flex; align-items: center; gap: 13px; min-height: 78px; padding: 12px 18px 12px 0; }
.hero-proof > div + div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.12); }
.hero-proof strong { color: var(--red); font-size: 1.05rem; }
.hero-proof span { color: #f3f4f6; font-weight: 780; font-size: .91rem; }

/* Contact strip */
.contact-strip { background: #0c0e12; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-strip-grid { display: grid; grid-template-columns: .78fr 1fr 1.35fr; }
.contact-strip-grid > a { min-height: 92px; display: flex; align-items: center; gap: 15px; padding: 18px 24px; transition: background .2s ease; }
.contact-strip-grid > a + a { border-left: 1px solid rgba(255,255,255,.08); }
.contact-strip-grid > a:hover { background: rgba(255,255,255,.04); }
.strip-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; background: rgba(225,6,0,.12); color: var(--red); border: 1px solid rgba(225,6,0,.30); border-radius: 10px; font-size: 1.15rem; }
.contact-strip small, .contact-strip strong { display: block; }
.contact-strip small { margin-bottom: 2px; color: #888e99; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-strip strong { color: #f6f7f8; font-size: .92rem; }

/* Shared heading */
.section-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .growth-copy h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-heading > p:last-child { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-heading-dark { color: #fff; }
.section-heading-dark > p:last-child { color: #aeb4bf; }

/* About */
.about-section { background: #fff; }
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.about-media { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.about-media picture { display: block; width: 100%; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow); }
.about-media img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
.media-badge { position: static; width: min(380px, 100%); margin-top: 16px; padding: 20px 22px; background: #0a0b0e; color: #fff; border-left: 4px solid var(--red); border-radius: 12px; box-shadow: var(--shadow); }
.media-badge strong, .media-badge span { display: block; }
.media-badge strong { margin-bottom: 5px; font-size: 1.05rem; }
.media-badge span { color: #aeb3bd; font-size: .83rem; }
.about-copy .lead { margin-top: 24px; color: #30343c; font-size: 1.14rem; font-weight: 650; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mini-grid article { padding: 22px; background: var(--light); border: 1px solid var(--border); border-radius: 14px; }
.mini-grid span { display: block; margin-bottom: 8px; color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mini-grid p { margin: 0; color: #535965; font-size: .92rem; }
.values-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--border); }
.values-row span { padding: 9px 13px; border: 1px solid #d8dbe1; background: #fafbfc; border-radius: 999px; color: #343840; font-size: .86rem; font-weight: 760; }
.values-row span::before { content: "✓"; margin-right: 7px; color: var(--red); font-weight: 900; }

/* Services */
.services-section { background: #0a0b0e; color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; background: #111319; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.18); transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(225,6,0,.5); }
.service-photo { position: relative; overflow: hidden; aspect-ratio: 1.58 / 1; background: #16181d; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-photo img { transform: scale(1.035); }
.service-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(10,11,14,.85)); }
.service-no { position: absolute; z-index: 2; left: 18px; bottom: 14px; color: #fff; font-size: 1.1rem; font-weight: 950; }
.service-no::before { content: ""; display: inline-block; width: 30px; height: 2px; margin: 0 9px 4px 0; background: var(--red); }
.service-body { padding: 24px; }
.service-body h3 { margin: 0 0 9px; font-size: 1.35rem; }
.service-body p { margin: 0 0 16px; color: #aeb4bf; font-size: .94rem; }
.service-body ul { margin: 0; padding: 0; list-style: none; color: #eceef1; font-size: .88rem; }
.service-body li { position: relative; padding-left: 17px; }
.service-body li + li { margin-top: 6px; }
.service-body li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* Quality */
.quality-section { background: #0a0b0e; color: #fff; }
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 0 0 28px; padding: 0; }
.process-grid li { min-height: 245px; padding: 23px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)); }
.process-grid li > span { display: block; margin-bottom: 50px; color: var(--red); font-size: 1.45rem; font-weight: 950; }
.process-grid strong { display: block; margin-bottom: 6px; font-size: 1.07rem; }
.process-grid p { margin: 0; color: #a8aeb8; font-size: .88rem; }
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quality-card { padding: 27px; background: #fff; color: var(--text); border-radius: 15px; }
.quality-card > span { color: var(--red); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quality-card h3 { margin: 8px 0 15px; font-size: 1.3rem; }
.quality-card ul { margin: 0; padding-left: 1.15rem; color: var(--muted); }
.quality-card li + li { margin-top: 5px; }

/* Growth */
.growth-section { background: #f4f5f7; }
.growth-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: start; }
.growth-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--red); font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.growth-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.growth-list span { min-height: 78px; display: flex; align-items: center; padding: 18px 20px; background: #fff; border: 1px solid var(--border); border-radius: 12px; font-weight: 760; box-shadow: 0 8px 24px rgba(18,22,31,.04); }
.growth-list span::before { content: "→"; margin-right: 11px; color: var(--red); font-weight: 950; }

/* Contact */
.contact-section { position: relative; overflow: hidden; background: #07080a; color: #fff; }
.contact-media, .contact-media img, .contact-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-media img { object-fit: cover; }
.contact-overlay { background: linear-gradient(90deg, rgba(7,8,10,.98) 0%, rgba(7,8,10,.91) 46%, rgba(7,8,10,.70) 100%); }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-copy h2 { max-width: 620px; }
.contact-copy > p:not(.eyebrow) { color: #b6bbc4; font-size: 1.05rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 34px; }
.contact-details { margin: 0; }
.contact-details > div { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-details dt { color: #838a95; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-details dd { margin: 4px 0 0; font-weight: 720; }
.quote-form { padding: 30px; background: rgba(255,255,255,.97); color: var(--text); border-radius: 18px; box-shadow: var(--shadow); }
.form-heading > span { color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h3 { margin: 5px 0 5px; font-size: 1.85rem; }
.form-heading p { margin: 0 0 20px; color: var(--muted); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 6px; font-size: .82rem; font-weight: 760; }
.form-wide { grid-column: 1 / -1; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 12px 13px; border: 1px solid #ccd1d8; background: #fff; color: var(--text); border-radius: 9px; outline: none; }
.quote-form textarea { resize: vertical; min-height: 105px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,.10); }
.quote-form .btn { margin-top: 17px; }
.form-status { min-height: 1.4em; margin: 9px 0 0; font-size: .86rem; }
.form-status.error { color: #b30000; }
.form-status.success { color: var(--success); }


/* Location map */
.map-card {
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.map-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #e3e6eb;
}
.map-card-head span {
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.map-card-head a {
  color: var(--text);
  font-size: .85rem;
  font-weight: 850;
}
.map-card-head a:hover { color: var(--red); }
.map-card iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}
@media (max-width: 700px) {
  .map-card-head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .map-card iframe { height: 230px; }
}

/* Footer */
.site-footer { padding: 72px 0 22px; background: #08090b; color: #d9dce2; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 58px; }
.footer-brand img { width: 280px; height: auto; }
.footer-brand p { color: #8f95a0; }
.footer-grid h3 { margin-top: 0; color: #fff; font-size: 1rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a:hover { color: var(--red); }
.footer-grid span { color: #9ea4ae; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #777e89; font-size: .86rem; }
.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 56px; height: 56px; display: grid; place-items: center; background: #1fa855; color: #fff; border-radius: 50%; font-size: .79rem; font-weight: 950; box-shadow: 0 14px 38px rgba(0,0,0,.30); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; font-size: .85rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid li:nth-child(4), .process-grid li:nth-child(5) { min-height: 210px; }
}

@media (max-width: 860px) {
  .section { padding: 84px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 92px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: #111318; border: 1px solid rgba(255,255,255,.10); border-radius: 14px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.nav-call) { padding: 13px 12px; }
  .site-nav > a:not(.nav-call)::after { display: none; }
  .nav-call { margin-top: 8px; text-align: center; }
  .hero { min-height: 760px; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,8,10,.96), rgba(7,8,10,.76)); }
  .hero-proof { grid-template-columns: 1fr; max-width: 430px; }
  .hero-proof > div { min-height: 58px; }
  .hero-proof > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-grid > a + a { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .about-layout, .growth-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 700px; }
  .media-badge { width: 100%; max-width: 440px; }
  .quality-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { width: 172px; }
  .brand img { height: 48px; }
  .hero { min-height: 760px; }
  .hero-inner { padding-top: 130px; padding-bottom: 64px; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 5.4rem); }
  .hero-actions .btn { width: 100%; }
  .contact-strip-grid > a { padding-inline: 12px; }
  .about-layout { gap: 42px; }
  .media-badge { width: 100%; max-width: none; margin-top: 12px; }
  .mini-grid, .services-grid, .growth-list, .process-grid, .form-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto !important; }
  .process-grid li > span { margin-bottom: 24px; }
  .form-wide { grid-column: auto; }
  .quote-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   Mobile stability fixes
   Keeps the site usable on iPhone/Android screens and prevents
   text, cards, images and the navigation menu from overflowing.
------------------------------------------------------------ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(225, 6, 0, .18);
}

.contact-strip strong,
.contact-details dd,
.footer-grid a,
.footer-grid span,
.media-badge span,
.service-body p,
.quality-card,
.quote-form {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 900px) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .nav-inner {
    min-height: 72px;
    gap: 14px;
  }

  .brand {
    width: 168px;
    max-width: 58vw;
  }

  .brand img {
    height: 46px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 46px;
    position: relative;
    z-index: 1700;
  }

  .site-nav {
    display: flex !important;
    position: fixed;
    z-index: 1600;
    top: calc(82px + env(safe-area-inset-top));
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100dvh - 104px - env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(14, 16, 21, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(.98);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav > a:not(.nav-call),
  .nav-call {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .site-nav > a:not(.nav-call)::after {
    display: none;
  }

  .site-nav > a:not(.nav-call) {
    justify-content: flex-start;
  }

  .nav-call {
    margin-top: 8px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 128px;
    padding-bottom: 58px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-kicker {
    flex-wrap: wrap;
    gap: 8px;
    font-size: .74rem;
    letter-spacing: .06em;
    line-height: 1.35;
  }

  .hero-kicker span {
    width: 32px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 14vw, 4.4rem);
    line-height: .95;
    letter-spacing: -.045em;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin-top: 34px;
  }

  .hero-proof > div {
    min-height: 56px;
    padding: 12px 0;
  }

  .hero-proof > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

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

  .contact-strip-grid > a {
    min-height: auto;
    padding: 16px 0;
  }

  .contact-strip-grid > a + a {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .section-heading h2,
  .about-copy h2,
  .growth-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .about-layout,
  .growth-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media {
    width: 100%;
    max-width: none;
  }

  .about-media img {
    aspect-ratio: 16 / 11;
  }

  .media-badge {
    width: 100%;
    max-width: none;
    margin-top: 12px;
    padding: 16px 18px;
  }

  .mini-grid,
  .services-grid,
  .growth-list,
  .process-grid,
  .quality-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .values-row {
    margin-top: 36px;
  }

  .service-card:hover {
    transform: none;
  }

  .service-photo {
    aspect-ratio: 16 / 10;
  }

  .service-body {
    padding: 21px;
  }

  .process-grid li,
  .process-grid li:nth-child(4),
  .process-grid li:nth-child(5) {
    min-height: auto;
  }

  .process-grid li > span {
    margin-bottom: 24px;
  }

  .contact-layout {
    align-items: stretch;
  }

  .quote-form {
    padding: 22px;
  }

  .form-wide {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .footer-brand img {
    width: min(260px, 100%);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    width: 150px;
  }

  .brand img {
    height: 42px;
  }

  .nav-inner {
    min-height: 66px;
  }

  .site-nav {
    top: calc(76px + env(safe-area-inset-top));
    left: 10px;
    right: 10px;
    max-height: calc(100dvh - 92px - env(safe-area-inset-bottom));
  }

  .hero-inner {
    padding-top: 112px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(2.32rem, 13.5vw, 3.6rem);
  }

  .hero-lead,
  .section-heading > p:last-child,
  .contact-copy > p:not(.eyebrow) {
    font-size: .96rem;
  }

  .btn {
    min-height: 48px;
    padding-inline: 16px;
    font-size: .92rem;
  }

  .strip-icon {
    width: 38px;
    height: 38px;
  }

  .mini-grid article,
  .quality-card,
  .process-grid li,
  .growth-list span {
    padding: 18px;
  }

  .quote-form {
    padding: 18px;
  }
}

/* FINAL RESPONSIVE + CROSS-BROWSER COMPATIBILITY LAYER */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%;min-height:100%;}body{min-width:320px;overflow-x:hidden;-webkit-overflow-scrolling:touch;} .site-header{-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px);} .btn-outline{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);} .container{width:100%;max-width:var(--container);margin-left:auto;margin-right:auto;padding-left:clamp(16px,3vw,24px);padding-right:clamp(16px,3vw,24px);} img,svg,video,canvas{max-width:100%;height:auto;} input,select,textarea,button{-webkit-appearance:none;appearance:none;} .quote-form input,.quote-form select,.quote-form textarea{font-size:16px;} .contact-strip-grid>*,.services-grid>*,.quality-grid>*,.process-grid>*,.mini-grid>*,.growth-list>*,.footer-grid>*{min-width:0;} .hero h1,.section-heading h2,.about-copy h2,.growth-copy h2,.contact-copy h2{overflow-wrap:anywhere;}
@media(max-width:1200px){:root{--container:1080px}.services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.process-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.site-nav{gap:18px;font-size:.86rem}.hero h1{font-size:clamp(3.4rem,7vw,6.2rem)}}
@media(max-width:980px){.site-header{padding-top:env(safe-area-inset-top,0)}.nav-inner{min-height:72px}.brand{width:176px;max-width:60vw}.brand img{height:48px}.menu-toggle{display:inline-flex;flex-direction:column;justify-content:center;align-items:center;flex:0 0 46px;position:relative;z-index:1701;border-radius:10px}.menu-toggle span{margin:3px 0}.site-nav{display:flex!important;position:fixed;z-index:1700;top:calc(82px + env(safe-area-inset-top,0));left:16px;right:16px;width:auto;max-height:calc(100vh - 108px);overflow-y:auto;-webkit-overflow-scrolling:touch;flex-direction:column;align-items:stretch;gap:0;padding:12px;background:rgba(17,19,24,.98);border:1px solid rgba(255,255,255,.12);border-radius:16px;box-shadow:0 22px 60px rgba(0,0,0,.35);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-12px);transition:opacity .2s ease,transform .2s ease,visibility .2s ease}@supports(height:100dvh){.site-nav{max-height:calc(100dvh - 108px - env(safe-area-inset-bottom,0))}}.site-nav.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}.site-nav>a:not(.nav-call),.nav-call{width:100%;min-height:48px;display:flex;align-items:center;justify-content:flex-start;padding:12px 14px;border-radius:10px}.nav-call{justify-content:center;margin-top:8px}.site-nav>a:not(.nav-call)::after{display:none}body.nav-open{overflow:hidden;position:fixed;width:100%}.section{padding:84px 0}.hero{min-height:680px;min-height:min(760px,100vh)}.hero-inner{padding-top:124px;padding-bottom:56px}.hero h1{font-size:clamp(2.75rem,10vw,5rem);line-height:.98}.hero-proof,.contact-strip-grid,.about-layout,.growth-layout,.contact-layout{grid-template-columns:1fr}.hero-proof{max-width:540px}.contact-strip-grid>a+ a{border-left:0;border-top:1px solid rgba(255,255,255,.08)}.services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.quality-grid,.mini-grid,.growth-list,.form-grid{grid-template-columns:1fr}.about-media img{aspect-ratio:16/10}.footer-grid{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}}
@media(max-width:700px){.container{padding-left:16px;padding-right:16px}.section{padding:72px 0}.hero{min-height:auto}.hero-inner{padding-top:112px;padding-bottom:48px}.hero h1{font-size:clamp(2.25rem,13vw,3.85rem);line-height:1}.hero-actions .btn,.contact-actions .btn{width:100%}.about-media img{height:260px;aspect-ratio:auto}.service-photo{height:220px;aspect-ratio:auto}.services-grid,.process-grid{grid-template-columns:1fr}.service-card:hover,.btn:hover{transform:none}.quote-form{padding:22px}.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column}.floating-whatsapp{right:14px;bottom:calc(14px + env(safe-area-inset-bottom,0));width:52px;height:52px}}
@media(max-width:420px){.container{padding-left:14px;padding-right:14px}.brand{width:148px}.brand img{height:42px}.nav-inner{min-height:66px}.site-nav{top:calc(76px + env(safe-area-inset-top,0));left:10px;right:10px;max-height:calc(100vh - 94px)}.hero-inner{padding-top:104px}.hero h1{font-size:clamp(2.05rem,12.8vw,3.25rem)}.btn{min-height:48px;padding-left:16px;padding-right:16px;font-size:.92rem}.about-media img{height:230px}.service-photo{height:200px}.quote-form{padding:18px}}
@media(max-width:360px){.brand{width:132px}.menu-toggle{flex-basis:42px;width:42px;height:42px}.hero h1{font-size:2rem}}
@supports not (aspect-ratio:1/1){.about-media img{height:520px}.service-photo{height:270px}@media(max-width:700px){.about-media img{height:260px}.service-photo{height:220px}}}
@media(hover:none) and (pointer:coarse){.service-card:hover,.btn:hover{transform:none}}


/* Email address lists */
.email-list,
.footer-email-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.email-list a,
.footer-email-list a {
  display: inline-block;
  max-width: 100%;
}
@media (max-width: 640px) {
  .email-list,
  .footer-email-list {
    gap: 8px;
  }
}


/* Improved footer contact card */
.site-footer .footer-grid {
  grid-template-columns: minmax(220px, 1.05fr) minmax(170px, .75fr) minmax(280px, 1.35fr);
  align-items: start;
  gap: 28px;
}
.footer-contact-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}
.footer-contact-card h3 {
  margin-bottom: 16px;
  font-size: 1.08rem;
}
.footer-owner {
  margin-bottom: 14px;
}
.footer-owner strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}
.footer-label {
  display: block;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 14px 0 18px;
  padding: 14px;
  background: rgba(225,6,0,.12);
  border: 1px solid rgba(225,6,0,.28);
  border-radius: 14px;
  color: #fff;
}
.footer-phone:hover {
  background: rgba(225,6,0,.20);
  color: #fff;
}
.footer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--red);
  color: #fff !important;
  border-radius: 11px;
  font-size: 1.1rem;
}
.footer-phone small,
.footer-phone strong {
  display: block;
}
.footer-phone small {
  color: #b7bdc7;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-phone strong {
  color: #fff;
  font-size: 1.08rem;
}
.footer-contact-group {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-contact-card a {
  color: #e8ebf0;
}
.footer-contact-card a:hover {
  color: var(--red);
}
.footer-contact-card .footer-email-list {
  margin-top: 9px;
}
@media (max-width: 1180px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 700px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact-card {
    padding: 20px;
  }
}
@media (max-width: 420px) {
  .footer-phone {
    align-items: flex-start;
  }
  .footer-icon {
    width: 38px;
    height: 38px;
  }
  .footer-owner strong {
    font-size: 1.22rem;
  }
}


/* Improved footer services card */
.footer-services-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.footer-services-card h3 {
  margin-bottom: 16px;
}
.footer-service-feature {
  padding: 16px;
  margin-bottom: 16px;
  background: rgba(225,6,0,.10);
  border: 1px solid rgba(225,6,0,.26);
  border-left: 4px solid var(--red);
  border-radius: 13px;
}
.footer-service-feature strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: .95rem;
  line-height: 1.35;
}
.footer-service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.footer-service-list a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 9px 10px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 11px;
  color: #d9dce2;
  font-weight: 720;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-service-list a:hover {
  background: rgba(225,6,0,.12);
  border-color: rgba(225,6,0,.35);
  color: #fff;
  transform: translateX(3px);
}
.footer-service-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(225,6,0,.15);
  color: var(--red) !important;
  border: 1px solid rgba(225,6,0,.34);
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 950;
}
.footer-service-cta {
  margin-top: 16px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  background: var(--red);
  color: #fff !important;
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 32px rgba(225,6,0,.18);
}
.footer-service-cta:hover {
  background: #ff241d;
}
@media (max-width: 980px) {
  .footer-services-card {
    padding: 24px;
  }
}
@media (max-width: 700px) {
  .footer-services-card {
    padding: 20px;
  }
  .footer-service-list a:hover {
    transform: none;
  }
}
