@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --red: #c90812;
  --red-dark: #96060d;
  --black: #050506;
  --dark: #111113;
  --charcoal: #1a1a1d;
  --white: #ffffff;
  --soft: #f5f5f5;
  --grey: #737373;
  --line: #e4e4e4;
  --shadow: 0 16px 38px rgba(0,0,0,.14);
  --radius: 12px;
  --heading: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
  --body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: #111;
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #d7d7d7;
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.brand img { width: 74px; height: 74px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong {
  font-family: var(--heading);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  letter-spacing: .7px;
  color: var(--red);
  font-weight: 900;
}
.brand small {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #111;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  position: relative;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
  padding: 37px 0 32px;
  transition: color .2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 9px;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(201,8,18,.22);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-call:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,8,18,.32); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  color: #fff;
  background: #050506;
  border-bottom: 4px solid var(--red);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 33%, rgba(0,0,0,.26) 57%, rgba(0,0,0,.1) 100%),
    url('../assets/images/hero-truck.jpg');
  background-size: cover;
  background-position: center right;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -110px auto;
  width: 46%;
  height: 210px;
  background: var(--red);
  transform: rotate(-10deg);
  border-radius: 100% 0 0 0;
  opacity: .95;
}
.hero-curve {
  position: absolute;
  right: -7%;
  bottom: -78px;
  width: 45%;
  height: 170px;
  background: #070707;
  transform: rotate(-10deg);
  border-radius: 100% 0 0 0;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 535px;
  display: flex;
  align-items: center;
}
.hero-content {
  width: min(600px, 100%);
  padding: 58px 0;
}
.hero h1,
.contact-panel h1 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(4rem, 7vw, 6.6rem);
  line-height: .9;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-style: italic;
}
.hero h1 span,
.about-copy h2 span,
.red-text { color: var(--red); }
.hero p {
  max-width: 440px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.short-red-line { width: 54px; height: 4px; background: var(--red); margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .45px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { color: #fff; background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 11px 23px rgba(201,8,18,.28); }
.btn-dark { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.45); }
.btn-dark:hover { background: rgba(255,255,255,.1); }

.btn-whatsapp {
  color: #fff;
  background: #25D366;
  box-shadow: 0 11px 23px rgba(37, 211, 102, .24);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}
.hero-seal {
  position: absolute;
  right: 3.5%;
  top: 42px;
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.38));
}
.page-hero { min-height: 510px; }
.page-hero .hero-inner { min-height: 510px; }
.page-hero .hero-content { width: min(700px, 100%); }
.page-hero h1 { font-size: clamp(3.5rem, 6.2vw, 6.2rem); }
.eyebrow {
  margin: 0 0 10px;
  font-family: var(--heading);
  color: var(--red);
  font-size: 1.15rem;
  letter-spacing: 1.2px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Trust strip */
.trust-strip {
  background: #0a0a0b;
  color: #fff;
  border-bottom: 4px solid var(--red);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid article {
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px 18px;
  border-left: 1px solid rgba(255,255,255,.25);
}
.trust-grid article:first-child { border-left: 0; }
.trust-grid svg { width: 48px; height: 48px; color: var(--red); stroke-width: 1.8; }
.trust-grid h3 {
  margin: 12px 0 6px;
  font-family: var(--heading);
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.05;
}
.trust-grid p { margin: 0; color: rgba(255,255,255,.82); font-size: .92rem; }

/* Common sections */
.section { padding: 64px 0; }
.section-heading { text-align: center; margin: 0 auto 32px; max-width: 820px; }
.eyebrow.centered {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.eyebrow.centered::before,
.eyebrow.centered::after {
  content: '';
  width: 35px;
  height: 2px;
  background: var(--red);
}
.section-heading h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(3rem, 5vw, 4.35rem);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 900;
}
.section-heading p:last-child {
  margin: 12px 0 0;
  font-size: 1.03rem;
  color: #333;
}

/* Service cards */
.services-preview { background: #fff; }
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
  transform: none;
}
.service-icon,
.row-icon,
.why-card div,
.banner-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: -42px auto 16px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: 6px solid #fff;
  box-shadow: 0 7px 18px rgba(0,0,0,.18);
}
.service-icon {
  position: relative;
  z-index: 3;
}
.service-icon svg,
.row-icon svg,
.why-card div svg { width: 38px; height: 38px; }
.service-card h3,
.service-row h3,
.why-card h3 {
  margin: 0;
  font-family: var(--heading);
  text-transform: uppercase;
  line-height: 1.05;
  font-size: 1.9rem;
  font-weight: 900;
}
.service-card p { min-height: 82px; padding: 0 20px; color: #333; font-size: .96rem; }
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 28px;
  color: var(--red);
  font-family: var(--heading);
  font-weight: 900;
  text-transform: uppercase;
}
.service-card a svg { width: 16px; height: 16px; }

/* About */
.about-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 100%, rgba(201,8,18,.45), transparent 27%),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.88)),
    url('../assets/images/hero-truck.jpg') center/cover no-repeat;
  padding: 70px 0 92px;
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.about-copy h2 {
  margin: 0 0 22px;
  font-family: var(--heading);
  font-size: clamp(3rem, 5vw, 4.35rem);
  text-transform: uppercase;
  font-style: italic;
  line-height: .95;
  font-weight: 900;
}
.about-copy p { color: rgba(255,255,255,.88); margin: 0 0 18px; }
.signature { font-family: cursive; font-size: 1.4rem; color: #fff !important; }
.about-visual { position: relative; padding-bottom: 86px; }
.about-visual > img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--red);
  box-shadow: var(--shadow);
}
.values-card {
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  color: #151515;
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(0,0,0,.28);
}
.values-card article { text-align: center; padding: 24px 16px; border-left: 1px solid #ddd; }
.values-card article:first-child { border-left: 0; }
.values-card svg { color: var(--red); width: 38px; height: 38px; }
.values-card h3 { font-family: var(--heading); text-transform: uppercase; font-size: 1.3rem; margin: 6px 0; }
.values-card p { color: #333; font-size: .84rem; margin: 0; }
.bottom-cta {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #760307);
  padding: 38px 0;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  inset: -30% auto auto -8%;
  width: 45%;
  height: 150%;
  border-radius: 50%;
  border: 55px solid rgba(255,255,255,.08);
}
.bottom-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
}
.big-phone { width: 92px; height: 92px; display: grid; place-items: center; border: 5px solid #fff; border-radius: 50%; }
.big-phone svg { width: 46px; height: 46px; }
.bottom-cta p { margin: 0; font-family: var(--heading); text-transform: uppercase; font-size: 1.6rem; font-weight: 900; }
.bottom-cta a { display: inline-block; color: #fff; font-family: var(--heading); font-size: 3.4rem; line-height: 1; font-weight: 900; }
.bottom-cta span { display: block; }
.bottom-cta span a { font-family: inherit; font-size: inherit; text-decoration: underline; }
.mini-info { border-left: 1px solid rgba(255,255,255,.35); padding-left: 28px; font-weight: 700; }
.mini-info span { color: #fff; margin-bottom: 4px; }
.mini-info svg { width: 34px; height: 34px; }

/* Services page rows */
.service-rows-section { background: #fff; }
.service-rows { display: grid; gap: 12px; }
.service-row {
  display: grid;
  grid-template-columns: 300px 90px 1fr 300px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  min-height: 152px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #f8f8f8;
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-row img { width: 100%; height: 152px; object-fit: cover; }
.row-icon { margin: 0; width: 78px; height: 78px; border: none; }
.row-copy h3 { font-size: 2.15rem; }
.row-copy p { margin: 8px 0 0; color: #252525; }
.service-row ul {
  height: 100%;
  display: grid;
  align-content: center;
  gap: 8px;
  margin: 0;
  padding: 24px 28px 24px 36px;
  border-left: 1px solid #d6d6d6;
  list-style: none;
}
.service-row li { position: relative; font-weight: 600; font-size: .95rem; }
.service-row li::before {
  content: '✓';
  position: absolute;
  left: -24px;
  top: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: .7rem;
  font-weight: 900;
}
.assist-strip { background: #0b0b0c; color: #fff; padding: 36px 0; border-top: 4px solid #111; }
.assist-inner { display: grid; grid-template-columns: 1.7fr repeat(4,1fr); gap: 22px; align-items: center; }
.assist-call { display: flex; gap: 20px; align-items: center; border-right: 1px solid rgba(255,255,255,.3); padding-right: 28px; }
.assist-call > svg { width: 78px; height: 78px; color: #fff; background: var(--red); border-radius: 50%; padding: 18px; border: 5px solid #fff; flex: 0 0 auto; }
.assist-call span, .assist-inner h3 { color: var(--red); font-family: var(--heading); text-transform: uppercase; font-weight: 900; }
.assist-call strong { display: block; font-family: var(--heading); text-transform: uppercase; font-size: 1.9rem; line-height: .95; }
.assist-call a { display: block; font-family: var(--heading); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.assist-call small { color: rgba(255,255,255,.78); }
.assist-inner article { text-align: center; border-left: 1px solid rgba(255,255,255,.25); padding-left: 18px; }
.assist-inner article svg { color: var(--red); width: 44px; height: 44px; }
.assist-inner h3 { color: #fff; margin: 8px 0 6px; font-size: 1.25rem; }
.assist-inner p { margin: 0; color: rgba(255,255,255,.78); font-size: .88rem; }

/* Why Choose Us */
.why-section { background: #fff; }
.why-card-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.why-card {
  min-height: 270px;
  text-align: center;
  padding: 26px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.09);
  transition: transform .22s ease, box-shadow .22s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card div { width: 82px; height: 82px; margin: 0 auto 16px; background: #090909; border: none; color: var(--red); }
.why-card h3 { font-size: 1.65rem; }
.why-card p { color: #333; font-size: .92rem; }
.trust-banner {
  margin-top: 28px;
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr 330px;
  align-items: center;
  gap: 24px;
  background: #080808;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.banner-icon { margin: 0 0 0 32px; width: 78px; height: 78px; border: none; color: #fff; }
.trust-banner h3 {
  margin: 0;
  font-family: var(--heading);
  text-transform: uppercase;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1;
}
.trust-banner p { margin: 8px 0 0; color: var(--red); font-family: cursive; font-size: 1.8rem; }
.trust-banner img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
}

/* Contact */
.contact-page-section {
  min-height: 650px;
  background: linear-gradient(90deg, #09090a 0 42%, #f6f6f6 42% 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
}

.contact-panel {
  color: #fff;
  padding: 72px 38px 72px 0;
}

.contact-panel h1 {
  font-size: clamp(3rem, 4vw, 4.15rem);
  line-height: .9;
  max-width: 100%;
}
.contact-panel > p {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  max-width: 395px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 30px;
}
.contact-item > span {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}
.contact-item svg { width: 30px; height: 30px; }
.contact-item strong {
  display: block;
  font-family: var(--heading);
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.05;
}
.contact-item > div > a {
  display: block;
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
  margin-top: 4px;
  letter-spacing: .2px;
}
.contact-item > div {
  min-width: 0;
}

.contact-email-link {
  font-family: var(--body) !important;
  font-weight: 700 !important;
  font-size: clamp(1rem, 1.35vw, 1.2rem) !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere;
  word-break: normal;
}
.contact-item small {
  display: block;
  color: rgba(255,255,255,.9);
  line-height: 1.45;
}
.contact-item small a {
  display: inline;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}
.contact-item p { margin: 5px 0 0; }
.form-panel {
  position: relative;
  padding: 86px 0 80px 72px;
}
.form-panel::after {
  display: none;
}
.form-panel h2 {
  margin: 0 0 28px;
  font-family: var(--heading);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  line-height: .98;
}
.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(260px, 1fr);
  gap: 16px 20px;
}
.contact-form label { display: grid; gap: 5px; }
.contact-form label span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background: #fff;
  padding: 17px 18px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea {
  min-height: 265px;
  height: 265px;
  resize: none;
  line-height: 1.45;
}
.contact-form .message-label { grid-column: 2; grid-row: 1 / span 3; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(201,8,18,.12); }
.contact-form button { width: min(330px, 100%); grid-column: 1; border: 0; }

.contact-form .btn-whatsapp {
  width: min(330px, 100%);
  grid-column: 2;
}
.red-feature-bar { color: #fff; background: var(--red); }
.red-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.red-feature-grid article { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 25px 20px; border-left: 1px solid rgba(255,255,255,.32); }
.red-feature-grid article:first-child { border-left: 0; }
.red-feature-grid svg { width: 44px; height: 44px; }
.red-feature-grid strong { font-family: var(--heading); text-transform: uppercase; font-size: 1.25rem; line-height: 1.1; }

/* Footer */
.site-footer { color: #fff; background: #09090a; }
.footer-top-line { height: 1px; background: rgba(201,8,18,.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.3fr .9fr;
  gap: 46px;
  padding: 48px 0 42px;
}
.brand-footer img { width: 74px; height: 74px; }
.brand-footer strong { font-size: 2.3rem; }
.brand-footer small { color: #fff; font-size: .95rem; }
.footer-brand p { margin: 18px 0 0 88px; color: rgba(255,255,255,.76); font-size: .94rem; }
.footer-col { border-left: 1px solid rgba(255,255,255,.25); padding-left: 34px; }
.footer-col h3 { margin: 0 0 14px; color: var(--red); font-family: var(--heading); font-size: 1.35rem; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; margin: 5px 0; color: rgba(255,255,255,.83); }
.footer-col a:hover { color: #fff; }
.footer-contact a, .footer-contact p { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact svg { color: #fff; flex: 0 0 auto; margin-top: 2px; }
.facebook-link { width: 36px; height: 36px; display: grid !important; place-items: center; border-radius: 50%; background: #fff; color: #080808 !important; font-weight: 900; font-size: 1.5rem; }
.footer-bottom { border-top: 1px solid rgba(201,8,18,.55); }
.footer-bottom-inner { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.75); font-size: .84rem; }
.footer-bottom a { color: #fff; }

/* Responsive */
@media (max-width: 1120px) {
  .contact-grid { grid-template-columns: 40% 60%; }
  .contact-panel h1 { font-size: 3.65rem; }
  .form-panel { padding-left: 48px; }
  .main-nav { gap: 18px; }
  .header-call { padding: 13px 16px; }
  .service-card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 240px 78px 1fr; }
  .service-row ul { grid-column: 1 / -1; grid-template-columns: repeat(4,1fr); border-left: 0; border-top: 1px solid #ddd; }
  .why-card-grid { grid-template-columns: repeat(3, 1fr); }
  .assist-inner { grid-template-columns: 1fr 1fr; }
  .assist-call { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 24px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 34px, 1180px); }
  .header-inner { min-height: 82px; }
  .brand img { width: 62px; height: 62px; }
  .brand strong { font-size: 1.8rem; }
  .brand small { font-size: .78rem; letter-spacing: 2px; }
  .header-call { margin-left: auto; }
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 8px;
    background: #111;
    cursor: pointer;
  }
  .menu-toggle span { width: 24px; height: 2px; background: #fff; transition: transform .22s ease, opacity .22s ease; }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 12px 18px 24px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0,0,0,.18);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .2s ease;
  }
  body.menu-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 16px 4px; border-bottom: 1px solid #eee; }
  .main-nav a::after { bottom: 9px; width: 58px; }
  .hero, .page-hero { min-height: auto; }
  .hero-inner, .page-hero .hero-inner { min-height: 520px; }
  .hero-bg { background-position: 64% center; opacity: .82; }
  .hero h1 { font-size: clamp(3.4rem, 14vw, 5rem); }
  .hero-content { padding: 52px 0; }
  .hero-seal { width: 112px; height: 112px; right: 18px; top: 26px; opacity: .95; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(odd) { border-left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .bottom-cta-inner { grid-template-columns: auto 1fr; }
  .mini-info { grid-column: 1 / -1; border-left: 0; border-top: 1px solid rgba(255,255,255,.32); padding: 20px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col { border-left: 0; padding-left: 0; }
  .contact-page-section { background: #f6f6f6; }
  .contact-grid { grid-template-columns: 1fr; width: 100%; }
  .contact-panel { padding: 58px 24px; background: #09090a; }
  .contact-page-section {
    background: #f6f6f6;
    min-height: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-panel {
    padding: 48px 24px 42px;
    background: #09090a;
  }

  .contact-panel h1 {
    font-size: clamp(3.1rem, 13vw, 4rem);
  }

  .contact-panel > p {
    max-width: 100%;
    font-size: .95rem;
  }

  .contact-item {
    gap: 14px;
    margin-top: 24px;
  }

  .contact-item > span {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }

  .contact-item svg {
    width: 25px;
    height: 25px;
  }

  .contact-item strong {
    font-size: 1.1rem;
  }

  .contact-item > div > a {
    font-size: 1.45rem;
  }

  .contact-email-link {
    font-size: 1rem !important;
  }

  .contact-item p,
  .contact-item small {
    font-size: .92rem;
  }

  .form-panel {
    padding: 44px 24px 50px;
  }

  .form-panel h2 {
    font-size: clamp(2.6rem, 11vw, 3.2rem);
    margin-bottom: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .contact-form > * {
    grid-column: 1 / -1 !important;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 16px 18px;
    min-height: 60px;
  }

  .contact-form textarea {
    min-height: 150px;
    height: 150px;
  }

  .contact-form button,
  .contact-form .btn-whatsapp {
    width: 100%;
    min-height: 58px;
  }
}

@media (max-width: 640px) {
  .header-call { display: none; }
  .brand strong { font-size: 1.52rem; }
  .brand small { font-size: .68rem; letter-spacing: 1.8px; }
  .hero-inner, .page-hero .hero-inner { min-height: 500px; }
  .hero h1 { font-size: clamp(3rem, 17vw, 4.3rem); }
  .hero p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-seal { display: none; }
  .trust-grid, .service-card-grid, .values-card, .why-card-grid, .red-feature-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .trust-grid article:first-child { border-top: 0; }
  .section { padding: 46px 0; }
  .section-heading h2 { font-size: 2.85rem; }
  .service-card img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .about-section { padding: 48px 0 64px; }
  .about-visual { padding-bottom: 0; }
  .about-visual > img { min-height: 280px; }
  .values-card { position: static; margin-top: 16px; }
  .values-card article { border-left: 0; border-top: 1px solid #ddd; }
  .bottom-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .big-phone { margin: 0 auto; }
  .bottom-cta a { font-size: 2.7rem; }
  .service-row { grid-template-columns: 1fr; gap: 0; }
  .service-row img { height: 210px; }
  .row-icon { margin: -39px auto 14px; border: 6px solid #f8f8f8; }
  .row-copy { padding: 0 22px 20px; text-align: center; }
  .service-row ul { grid-template-columns: 1fr; padding-left: 52px; }
  .assist-inner { grid-template-columns: 1fr; }
  .assist-inner article { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding: 20px 0 0; }
  .assist-call { flex-direction: column; text-align: center; padding-right: 0; }
  .trust-banner { grid-template-columns: 1fr; text-align: center; padding-top: 24px; }
  .banner-icon { margin: 0 auto; }
  .trust-banner img { height: 170px; }
  .contact-panel h1 { font-size: 3.7rem; }
  .contact-item > div > a { font-size: 1.65rem; }
  .red-feature-grid article { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { margin-left: 0; }
  .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 16px 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
