:root {
  --navy: #062b52;
  --navy-dark: #031d38;
  --blue: #0875ca;
  --blue-bright: #13a8e8;
  --sky: #eaf7ff;
  --green: #16a963;
  --green-dark: #0d8d50;
  --ink: #0b2135;
  --muted: #5f7282;
  --line: #dce8f0;
  --soft: #f5faff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
body, button, input, select, textarea { font-family: Arial, Helvetica, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
section[id], article[id] { scroll-margin-top: 82px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 2.25px; }
.section-kicker::before { content: ''; width: 26px; height: 2px; background: currentColor; }
.section-kicker.light { color: #67ceff; }
.section-heading h2, .about-copy h2, .contact-info h2 { margin: 14px 0 0; color: var(--navy); font-size: clamp(40px, 4.2vw, 62px); line-height: 1.02; letter-spacing: -2.8px; text-transform: uppercase; font-weight: 900; }
.split-heading { display: grid; grid-template-columns: 1.4fr .7fr; gap: 70px; align-items: end; margin-bottom: 53px; }
.split-heading > p, .gallery-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.75; }

/* Header */
.site-header { height: 82px; display: flex; align-items: center; gap: 32px; padding: 0 max(4vw, 24px); position: sticky; top: 0; z-index: 100; background: rgb(255 255 255 / 96%); box-shadow: 0 8px 30px rgb(6 43 82 / 8%); backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-logo { width: auto; height: 68px; object-fit: contain; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(17px, 1.8vw, 27px); color: #28475f; font-size: 12px; font-weight: 800; }
.desktop-nav a { padding: 32px 0 27px; border-bottom: 3px solid transparent; transition: .2s ease; }
.desktop-nav a:hover { color: var(--blue); border-color: var(--blue); }
.header-cta { padding: 14px 17px; border-radius: 7px; background: var(--green); color: #fff; box-shadow: 0 8px 20px rgb(22 169 99 / 25%); font-size: 10px; font-weight: 900; letter-spacing: .45px; text-transform: uppercase; transition: .2s ease; }
.header-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.header-cta span { margin-left: 7px; }
.menu-toggle { display: none; width: 43px; height: 43px; padding: 11px; border: 0; border-radius: 6px; background: var(--navy); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: #fff; transition: .25s ease; }
.menu-toggle.open span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero */
.hero { min-height: calc(100svh - 82px); position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(3 30 55 / 97%) 0%, rgb(3 37 69 / 91%) 35%, rgb(3 42 73 / 42%) 65%, rgb(3 42 73 / 8%) 100%); }
.hero::after { content: ''; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(0deg, rgb(2 24 44 / 45%), transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-top: 85px; padding-bottom: 122px; color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #b9e7ff; font-size: 11px; font-weight: 800; letter-spacing: 2.2px; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: #45bdff; }
.hero-brand { margin: 24px 0 9px; color: #fff; font-size: 14px; font-weight: 900; letter-spacing: 2.4px; }
.hero h1 { max-width: 730px; margin: 0; font-size: clamp(56px, 5.9vw, 86px); line-height: .96; letter-spacing: -4.3px; text-transform: uppercase; font-weight: 900; }
.hero-lead { max-width: 620px; margin: 26px 0 33px; color: #e2f2fc; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: 6px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .65px; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: #fff; color: var(--navy); box-shadow: 0 10px 30px rgb(0 0 0 / 13%); }
.button-primary span { margin-left: 18px; font-size: 17px; }
.button-whatsapp { background: var(--green); color: #fff; box-shadow: 0 10px 30px rgb(22 169 99 / 24%); }
.button-whatsapp:hover { background: var(--green-dark); }
.button-whatsapp b, .cta-button b { width: 24px; height: 24px; display: grid; place-items: center; margin-right: 10px; border: 2px solid currentColor; border-radius: 50%; font-size: 11px; }
.hero-proof { position: absolute; z-index: 3; right: max(4vw, 24px); bottom: 29px; min-width: 282px; display: flex; flex-direction: column; padding: 18px 22px 17px 58px; border-radius: 9px; background: rgb(255 255 255 / 95%); box-shadow: 0 16px 45px rgb(0 0 0 / 18%); color: var(--navy); }
.hero-proof::before { content: '✓'; position: absolute; left: 20px; top: 19px; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #daf6e9; color: var(--green); font-weight: 900; }
.hero-proof strong { font-size: 14px; }
.hero-proof span { margin-top: 4px; color: var(--muted); font-size: 11px; }

/* Trust strip */
.trust-strip { position: relative; z-index: 5; border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 17px; padding: 20px 25px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid > div > span { color: #b7d5e8; font-size: 13px; font-weight: 900; }
.trust-grid p { display: flex; flex-direction: column; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.trust-grid strong { margin-bottom: 4px; color: var(--navy); font-size: 13px; }

/* Services */
.services-section { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 355px; display: flex; flex-direction: column; padding: 29px 26px 25px; border: 1px solid var(--line); border-radius: 4px; background: #fff; box-shadow: 0 15px 40px rgb(6 43 82 / 5%); transition: .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #9bcfed; box-shadow: 0 24px 55px rgb(6 43 82 / 11%); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-top small { color: #c2d2dd; font-size: 11px; font-weight: 900; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--sky); color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .5px; }
.service-card h3 { margin: 29px 0 13px; color: var(--navy); font-size: 20px; line-height: 1.18; letter-spacing: -.5px; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-card a { margin-top: auto; padding-top: 22px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .5px; text-transform: uppercase; }
.service-card a span { margin-left: 8px; font-size: 15px; }

/* About */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 84px; align-items: center; }
.about-visual { min-height: 610px; position: relative; }
.about-visual::before { content: ''; position: absolute; left: -22px; top: -22px; width: 150px; height: 150px; border-top: 2px solid #7cc9ef; border-left: 2px solid #7cc9ef; }
.about-visual img { width: 100%; height: 610px; object-fit: cover; object-position: 54% center; border-radius: 3px; }
.about-badge { position: absolute; right: -30px; bottom: 34px; min-width: 225px; display: flex; align-items: center; gap: 16px; padding: 22px; background: var(--navy); color: #fff; box-shadow: 0 18px 45px rgb(3 29 56 / 25%); }
.about-badge strong { font-size: 34px; letter-spacing: -1px; }
.about-badge span { padding-left: 16px; border-left: 1px solid rgb(255 255 255 / 30%); font-size: 11px; font-weight: 700; line-height: 1.45; text-transform: uppercase; }
.about-copy > p { margin: 25px 0 31px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.about-copy ul { display: grid; gap: 18px; margin: 0 0 32px; padding: 0; list-style: none; }
.about-copy li { display: grid; grid-template-columns: 34px 1fr; gap: 15px; align-items: start; }
.about-copy li > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: #ddf6ec; color: var(--green); font-size: 12px; font-weight: 900; }
.about-copy li strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: 14px; }
.about-copy li p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.text-link { display: inline-flex; align-items: center; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .7px; text-transform: uppercase; }
.text-link span { margin-left: 11px; font-size: 16px; }

/* Gallery */
.gallery-section { overflow: hidden; background: var(--navy-dark); }
.gallery-section .section-heading h2 { color: #fff; }
.gallery-heading { display: grid; grid-template-columns: 1fr .6fr; gap: 70px; align-items: end; margin-bottom: 45px; }
.gallery-heading > p { color: #a9c2d6; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 310px; gap: 13px; }
.gallery-item { position: relative; overflow: hidden; margin: 0; background: #0c3e69; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item.crop-left img { object-position: 72% center; }
.gallery-item.crop-right img { object-position: 40% center; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(3 26 48 / 86%) 0%, transparent 52%); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 21px; display: flex; align-items: center; gap: 15px; color: #fff; }
.gallery-item figcaption small { color: #7fd3fa; font-size: 10px; font-weight: 900; }
.gallery-item figcaption strong { font-size: 14px; }

/* Benefits */
.benefits-section { background: #fff; }
.centered-heading { max-width: 770px; margin: 0 auto 52px; text-align: center; }
.centered-heading .section-kicker { justify-content: center; }
.centered-heading > p { margin: 19px auto 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.benefit { min-height: 75px; display: grid; grid-template-columns: 42px 1fr 32px; align-items: center; gap: 15px; padding: 12px 22px; border: 1px solid var(--line); background: #fff; transition: .2s ease; }
.benefit:hover { border-color: #a9d5ed; background: var(--soft); }
.benefit > span { color: #afc5d4; font-size: 11px; font-weight: 900; }
.benefit strong { color: var(--navy); font-size: 13px; }
.benefit b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #ddf6ec; color: var(--green); font-size: 11px; }

/* Process */
.process-section { background: var(--soft); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.process-grid::before { content: ''; position: absolute; left: 16%; right: 16%; top: 58px; height: 1px; border-top: 1px dashed #9fc4d9; }
.process-grid article { position: relative; z-index: 1; padding: 0 26px 28px; text-align: center; }
.process-grid article > span { position: absolute; right: 37px; top: 3px; color: #b3c8d5; font-size: 11px; font-weight: 900; }
.process-icon { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 23px; border: 10px solid var(--soft); border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 1px #bfd9e7; color: #fff; font-size: 20px; font-weight: 900; }
.process-grid article:nth-child(2) .process-icon { background: var(--blue); }
.process-grid article:nth-child(3) .process-icon { background: var(--green); }
.process-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.process-grid p { max-width: 280px; margin: auto; color: var(--muted); font-size: 13px; line-height: 1.65; }

/* Sales CTA */
.sales-cta { position: relative; overflow: hidden; padding: 66px 0; background: linear-gradient(115deg, #0875ca, #0a9ddd); }
.sales-cta::before, .sales-cta::after { content: ''; position: absolute; border: 1px solid rgb(255 255 255 / 14%); border-radius: 50%; }
.sales-cta::before { width: 420px; height: 420px; right: 2%; top: -290px; }
.sales-cta::after { width: 250px; height: 250px; right: 16%; bottom: -210px; }
.cta-water { position: absolute; inset: 0; opacity: .13; background: radial-gradient(circle at 77% 130%, transparent 0 31%, #fff 31.5% 32%, transparent 32.5% 38%, #fff 38.5% 39%, transparent 39.5%); }
.cta-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 60px; color: #fff; }
.cta-content > div > span { font-size: 10px; font-weight: 900; letter-spacing: 2px; }
.cta-content h2 { margin: 10px 0 7px; font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -2.5px; text-transform: uppercase; }
.cta-content p { margin: 0; color: #d9f3ff; font-size: 16px; }
.cta-button { flex: 0 0 auto; min-height: 62px; padding: 0 25px; background: var(--green); color: #fff; box-shadow: 0 14px 35px rgb(3 62 58 / 24%); }
.cta-button:hover { background: var(--green-dark); }
.cta-button > span { margin-left: 15px; font-size: 16px; }

/* Contact */
.contact-section { overflow: hidden; background: var(--navy-dark); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.contact-info { position: relative; padding-top: 28px; color: #fff; }
.contact-info::before { content: ''; position: absolute; left: -100px; top: -70px; width: 310px; height: 310px; border: 1px solid rgb(73 185 236 / 10%); border-radius: 50%; }
.contact-info h2 { position: relative; color: #fff; }
.contact-info > p { max-width: 420px; margin: 23px 0 38px; color: #a9c2d6; font-size: 15px; line-height: 1.75; }
.contact-methods { display: grid; gap: 18px; margin-bottom: 33px; }
.contact-method { display: flex; align-items: center; gap: 17px; }
.contact-method > span { width: 50px; height: 50px; display: grid; place-items: center; border: 2px solid var(--green); border-radius: 50%; color: #7aebb7; font-weight: 900; }
.contact-method div { display: flex; flex-direction: column; }
.contact-method small { margin-bottom: 5px; color: #7d9bb2; font-size: 9px; font-weight: 900; letter-spacing: 1.5px; }
.contact-method a { color: #fff; font-size: 24px; font-weight: 900; letter-spacing: -.6px; }
.contact-method-email a { font-size: 17px; letter-spacing: -.25px; overflow-wrap: anywhere; }
.contact-note { max-width: 430px; display: flex; align-items: flex-start; gap: 13px; padding-top: 27px; border-top: 1px solid rgb(255 255 255 / 11%); }
.contact-note b { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgb(22 169 99 / 20%); color: #6ee0aa; font-size: 11px; }
.contact-note p { display: flex; flex-direction: column; margin: 0; color: #8faabe; font-size: 11px; line-height: 1.5; }
.contact-note strong { margin-bottom: 4px; color: #fff; font-size: 12px; }
.quote-form { padding: 39px 40px 33px; border-radius: 4px; background: #fff; box-shadow: 0 24px 70px rgb(0 0 0 / 25%); }
.form-heading { margin-bottom: 26px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.form-heading > span { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: 1.7px; }
.form-heading h3 { margin: 8px 0 5px; color: var(--navy); font-size: 26px; letter-spacing: -.8px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 15px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { color: #3b5366; font-size: 10px; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #d8e4eb; border-radius: 3px; outline: none; background: #fbfdff; color: var(--ink); font-size: 12px; transition: .2s ease; }
.form-grid input, .form-grid select { height: 47px; padding: 0 13px; }
.form-grid textarea { resize: vertical; min-height: 96px; padding: 13px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(8 117 202 / 9%); background: #fff; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #9aacb9; }
.form-submit { width: 100%; height: 56px; display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 22px; border: 0; border-radius: 4px; background: var(--green); color: #fff; box-shadow: 0 10px 25px rgb(22 169 99 / 22%); cursor: pointer; font-size: 11px; font-weight: 900; letter-spacing: .7px; text-transform: uppercase; transition: .2s ease; }
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-submit span { font-size: 17px; }
.privacy { display: block; margin-top: 12px; color: #8a9ca9; font-size: 9px; line-height: 1.5; text-align: center; }

/* Footer and floating action */
.site-footer { background: #02172b; color: #fff; }
.footer-top { min-height: 176px; display: grid; grid-template-columns: 1fr 1.25fr 1fr; align-items: center; gap: 70px; border-bottom: 1px solid rgb(255 255 255 / 8%); }
.brand-logo-footer { height: 88px; padding: 4px 8px; border-radius: 9px; background: #fff; box-shadow: 0 10px 30px rgb(0 0 0 / 18%); }
.footer-top > p { margin: 0; color: #8da7bb; font-size: 12px; line-height: 1.65; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: #b4c8d7; font-size: 11px; font-weight: 700; }
.footer-links a:hover { color: #fff; }
.footer-bottom { min-height: 67px; display: flex; align-items: center; justify-content: space-between; color: #68859b; font-size: 9px; letter-spacing: .3px; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; height: 56px; display: flex; align-items: center; gap: 10px; padding: 0 18px 0 10px; border-radius: 30px; background: var(--green); color: #fff; box-shadow: 0 10px 30px rgb(0 0 0 / 24%); transition: .2s ease; }
.whatsapp-float:hover { background: var(--green-dark); transform: translateY(-2px); }
.whatsapp-float span { width: 36px; height: 36px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; font-size: 13px; font-weight: 900; }
.whatsapp-float b { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }

:focus-visible { outline: 3px solid #71cfff; outline-offset: 3px; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; left: 0; right: 0; top: 82px; display: grid; gap: 0; padding: 9px max(4vw, 24px) 20px; background: #fff; box-shadow: 0 18px 35px rgb(6 43 82 / 14%); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .22s ease; }
  .mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-nav a { padding: 14px 2px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 13px; font-weight: 800; }
  .mobile-nav .mobile-whatsapp { margin-top: 12px; padding: 15px; border: 0; border-radius: 5px; background: var(--green); color: #fff; text-align: center; text-transform: uppercase; font-size: 10px; letter-spacing: .5px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 55px; }
  .about-badge { right: -15px; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 860px) {
  .section { padding: 88px 0; }
  .split-heading, .gallery-heading { grid-template-columns: 1fr; gap: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .trust-grid > div:nth-child(4) { border-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 490px; }
  .about-visual img { height: 490px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .process-grid::before { display: none; }
  .process-grid { gap: 8px; }
  .cta-content { flex-direction: column; align-items: flex-start; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; padding: 35px 0; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  section[id], article[id] { scroll-margin-top: 72px; }
  .container { width: min(100% - 36px, 1180px); }
  .section { padding: 72px 0; }
  .section-heading h2, .about-copy h2, .contact-info h2 { font-size: 39px; line-height: 1.02; letter-spacing: -1.8px; }
  .section-kicker { font-size: 9px; }
  .site-header { height: 72px; gap: 9px; padding: 0 16px; }
  .brand { gap: 9px; }
  .brand-logo { height: 58px; }
  .brand-logo-footer { height: 76px; }
  .header-cta { margin-left: auto; padding: 12px 11px; font-size: 0; }
  .header-cta::before { content: 'WHATSAPP'; font-size: 9px; }
  .header-cta span { display: none; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-nav { top: 72px; padding-inline: 18px; }
  .hero { min-height: calc(100svh - 72px); align-items: flex-end; }
  .hero-image { object-position: 66% center; }
  .hero-overlay { background: linear-gradient(0deg, rgb(3 28 52 / 99%) 0%, rgb(3 35 65 / 88%) 59%, rgb(3 35 65 / 15%) 100%); }
  .hero-content { padding-top: 195px; padding-bottom: 60px; }
  .eyebrow { font-size: 9px; letter-spacing: 1.6px; }
  .hero-brand { margin-top: 20px; font-size: 11px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); line-height: .95; letter-spacing: -2.5px; }
  .hero-lead { margin: 21px 0 26px; font-size: 15px; line-height: 1.55; }
  .hero-actions { gap: 9px; }
  .hero-actions .button { width: 100%; min-height: 51px; }
  .hero-proof { display: none; }
  .trust-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .trust-grid > div, .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { min-height: 97px; padding: 16px 13px; }
  .trust-grid > div:nth-child(odd) { padding-left: 18px; }
  .trust-grid > div > span { display: none; }
  .trust-grid strong { font-size: 11px; }
  .trust-grid p { font-size: 9px; }
  .split-heading { margin-bottom: 34px; }
  .split-heading > p, .gallery-heading > p { font-size: 14px; line-height: 1.65; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .about-grid { gap: 48px; }
  .about-visual { min-height: 390px; }
  .about-visual::before { left: -8px; top: -13px; }
  .about-visual img { height: 390px; }
  .about-badge { right: -8px; bottom: 18px; min-width: 200px; padding: 17px; }
  .about-badge strong { font-size: 29px; }
  .gallery-heading { margin-bottom: 30px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 255px; }
  .gallery-item.wide { grid-column: span 1; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 68px; padding-inline: 16px; }
  .process-grid { grid-template-columns: 1fr; gap: 38px; }
  .process-grid article { padding-bottom: 0; }
  .process-grid article > span { right: 24%; }
  .sales-cta { padding: 55px 0; }
  .cta-content h2 { font-size: 39px; }
  .cta-button { width: 100%; padding: 0 14px; font-size: 9px; }
  .contact-grid { gap: 45px; }
  .contact-method a { font-size: 22px; }
  .contact-method-email a { font-size: 15px; }
  .quote-form { margin-inline: -7px; padding: 30px 20px 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; padding: 42px 0; }
  .footer-top > p { grid-column: auto; grid-row: auto; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { min-height: 84px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; padding: 9px; }
  .whatsapp-float span { width: 36px; height: 36px; }
  .whatsapp-float b { display: none; }
}

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