:root {
  --navy-950: #050d15;
  --navy-900: #07131f;
  --navy-850: #0a1a29;
  --navy-800: #0d2235;
  --blue-600: #1378b9;
  --blue-500: #1596d2;
  --cyan-400: #36c6d3;
  --green-500: #24b66b;
  --green-600: #159653;
  --white: #ffffff;
  --gray-50: #f7f9fb;
  --gray-100: #edf2f5;
  --gray-200: #dbe4ea;
  --gray-400: #8ca0ad;
  --gray-600: #506471;
  --gray-700: #354955;
  --gray-900: #13232c;
  --shadow-sm: 0 10px 35px rgba(8, 30, 48, .08);
  --shadow-md: 0 22px 60px rgba(3, 16, 26, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 105px 0;
}

.section-soft {
  background: var(--gray-50);
}

.section-dark {
  position: relative;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(19, 35, 44, .08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  border-radius: 13px;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 8px 22px rgba(19, 120, 185, .22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--gray-600);
  font-size: .74rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 25px;
}

.main-nav a {
  position: relative;
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-500);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  gap: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border: 0;
  border-radius: 13px;
  font-size: .95rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(36, 182, 107, .2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(36, 182, 107, .28);
  filter: brightness(1.04);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
  font-size: .84rem;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.hero {
  min-height: 720px;
  padding: 75px 0 55px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  left: -150px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(21, 150, 210, .22), transparent 68%);
}

.hero-glow-two {
  right: -200px;
  bottom: -280px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(54, 198, 211, .14), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan-400);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--blue-600);
}

.hero h1 {
  max-width: 760px;
  margin: 19px 0 22px;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: .99;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--cyan-400);
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #bdcad2;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 0;
  gap: 13px 22px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d1dae0;
  font-size: .88rem;
}

.hero-points span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
  background: rgba(54, 198, 211, .1);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-card {
  position: relative;
  width: min(100%, 470px);
  min-height: 570px;
  overflow: hidden;
  background: linear-gradient(160deg, #102b3f 0%, #07131f 62%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .32);
}

.portrait-grid {
  position: absolute;
  inset: 0;
  opacity: .55;
  background:
    radial-gradient(circle at 75% 22%, rgba(54, 198, 211, .19), transparent 35%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.portrait-card > img {
  position: absolute;
  z-index: 1;
  right: -3%;
  bottom: 0;
  width: 108%;
  max-width: none;
  height: 97%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.38));
}

.portrait-badge {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 22px;
  display: flex;
  align-items: center;
  padding: 15px 17px;
  gap: 12px;
  background: rgba(5, 13, 21, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 12px;
  height: 12px;
  background: var(--green-500);
  border: 3px solid rgba(36, 182, 107, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 182, 107, .09);
}

.portrait-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.portrait-badge strong {
  font-size: .9rem;
}

.portrait-badge small {
  margin-top: 3px;
  color: #aebdc6;
  font-size: .76rem;
}

.trust-strip {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 20px 26px;
  gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.trust-grid div:first-child {
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.trust-grid span {
  color: var(--cyan-400);
  font-size: .73rem;
  font-weight: 850;
}

.trust-grid strong {
  font-size: .87rem;
  letter-spacing: .01em;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.equipment-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 16px 0 18px;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.equipment-copy > p,
.about-copy > p {
  margin: 0;
  color: var(--gray-600);
  font-size: 1.02rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.service-card:hover {
  border-color: #c6dbe7;
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(8, 30, 48, .12);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--blue-600);
  background: #eaf6fb;
  border-radius: 15px;
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.service-card h3 {
  margin: 22px 0 10px;
  color: var(--navy-900);
  font-size: 1.16rem;
}

.service-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: .92rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 75px;
}

.equipment-copy > p + p {
  margin-top: 16px;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}

.brand-chips span {
  padding: 9px 14px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
  box-shadow: 0 5px 15px rgba(8, 30, 48, .05);
}

.independent-note {
  padding: 15px 17px;
  color: var(--gray-700) !important;
  background: #eef6f8;
  border-left: 3px solid var(--blue-500);
  border-radius: 8px;
  font-size: .86rem !important;
}

.equipment-visual {
  padding: 28px;
  background: linear-gradient(145deg, #ffffff, #eaf1f5);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.process-section {
  padding: 105px 0;
}

.section-heading-dark h2,
.contact-copy h2 {
  color: var(--white);
}

.section-heading-dark p,
.contact-copy > p {
  color: #b5c4cd;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-md);
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 49px;
  right: -27px;
  width: 34px;
  height: 1px;
  content: "";
  background: rgba(54, 198, 211, .55);
}

.process-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--cyan-400);
  background: rgba(54, 198, 211, .08);
  border: 1px solid rgba(54, 198, 211, .18);
  border-radius: 14px;
  font-size: .82rem;
  font-weight: 850;
}

.process-card h3 {
  margin: 24px 0 10px;
  font-size: 1.14rem;
}

.process-card p {
  margin: 0;
  color: #aebdc6;
  font-size: .9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 82px;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-frame {
  position: relative;
  width: min(100%, 430px);
  height: 500px;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-frame::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 68% 22%, rgba(54, 198, 211, .2), transparent 38%);
}

.about-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 22%;
}

.about-copy > p + p {
  margin-top: 16px;
}

.commitments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  gap: 14px;
}

.commitments div {
  padding: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
}

.commitments strong,
.commitments span {
  display: block;
}

.commitments strong {
  color: var(--navy-900);
  font-size: .92rem;
}

.commitments span {
  margin-top: 7px;
  color: var(--gray-600);
  font-size: .8rem;
  line-height: 1.5;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: 80px;
}

.faq-heading {
  margin: 0;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(8, 30, 48, .045);
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  color: var(--navy-900);
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 25px;
  height: 25px;
  content: "+";
  color: var(--blue-600);
  background: #eaf6fb;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--gray-600);
  font-size: .91rem;
}

.contact-section {
  padding: 105px 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 75px;
}

.contact-info {
  display: grid;
  margin-top: 34px;
  gap: 13px;
}

.contact-info > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--cyan-400);
  background: rgba(54, 198, 211, .08);
  border: 1px solid rgba(54, 198, 211, .15);
  border-radius: 12px;
  font-weight: 800;
}

.contact-info div div {
  display: flex;
  flex-direction: column;
}

.contact-info strong {
  font-size: .88rem;
}

.contact-info span:not(.contact-icon) {
  color: #aebdc6;
  font-size: .83rem;
}

.contact-form {
  padding: 34px;
  color: var(--gray-900);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
}

.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  margin-bottom: 17px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--gray-700);
  font-size: .82rem;
  font-weight: 750;
}

.form-row input,
.form-row textarea {
  width: 100%;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 11px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-row input {
  height: 49px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 125px;
  padding: 13px 14px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(21, 150, 210, .12);
}

.form-note {
  margin: 12px 0 0;
  color: var(--gray-600);
  font-size: .75rem;
  text-align: center;
}

.site-footer {
  padding: 70px 0 22px;
  color: #9fb0ba;
  background: #030a10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr .65fr .85fr;
  padding-bottom: 45px;
  gap: 70px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 430px;
  margin: 20px 0 0;
  font-size: .87rem;
}

.footer-grid h3 {
  margin: 7px 0 18px;
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .84rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--cyan-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
  margin: 0;
  font-size: .74rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 17px;
  gap: 9px;
  color: var(--white);
  background: #20ba63;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(9, 68, 38, .3);
  font-size: .83rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(9, 68, 38, .36);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-small {
  transition-delay: .08s;
}

.reveal-delay,
.reveal-delay-medium {
  transition-delay: .14s;
}

.reveal-delay-large {
  transition-delay: .22s;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid,
  .about-grid,
  .contact-grid {
    gap: 45px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section,
  .process-section,
  .contact-section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 22px 28px;
    gap: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 20px 40px rgba(5, 13, 21, .12);
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--gray-100);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 0;
  }

  .hero-grid,
  .equipment-grid,
  .about-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

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

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .portrait-card {
    min-height: 520px;
    border-radius: 28px 28px 0 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div,
  .trust-grid div:first-child {
    border: 1px solid rgba(255,255,255,.07);
  }

  .equipment-grid {
    gap: 40px;
  }

  .equipment-copy,
  .about-copy {
    max-width: 700px;
    margin-inline: auto;
  }

  .equipment-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .about-image {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .about-frame {
    height: 470px;
  }

  .faq-layout {
    gap: 35px;
  }

  .faq-heading {
    max-width: 700px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-copy {
    max-width: 680px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
  }

  .hero {
    padding-top: 55px;
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-points {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .portrait-card {
    min-height: 450px;
  }

  .portrait-card > img {
    right: -10%;
    width: 120%;
  }

  .trust-grid,
  .cards-grid,
  .process-grid,
  .commitments,
  .form-grid-two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: 70px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .equipment-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .service-card {
    min-height: auto;
  }

  .equipment-visual {
    padding: 12px;
  }

  .about-frame {
    height: 410px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

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

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}
