:root {
  --bg: #f8fbfa;
  --surface: #ffffff;
  --surface-soft: #eef8f5;
  --ink: #173239;
  --muted: #66797e;
  --primary: #0f7b72;
  --primary-dark: #0b5f58;
  --accent: #ffb84d;
  --accent-soft: #fff2d8;
  --line: rgba(23, 50, 57, 0.12);
  --shadow-sm: 0 10px 30px rgba(25, 64, 67, 0.08);
  --shadow-lg: 0 24px 70px rgba(21, 71, 74, 0.16);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 9999;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(248, 251, 250, .92);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(16, 63, 67, .07);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Nunito", sans-serif; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 25px rgba(15, 123, 114, .25);
  font-size: 22px;
}
.brand > span:last-child { display: grid; line-height: 1.08; }
.brand strong { font-size: 21px; letter-spacing: -.4px; }
.brand small { margin-top: 4px; color: var(--muted); font: 700 10px/1.2 "Manrope", sans-serif; text-transform: uppercase; letter-spacing: 1.8px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; color: #40585d; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; border-radius: 2px; background: var(--primary); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a.active::after { right: 0; }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: white; box-shadow: var(--shadow-sm); padding: 12px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 5px; transition: transform .2s ease, opacity .2s ease; }
.menu-button.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--primary);
  border-radius: 16px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(15, 123, 114, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); background: var(--primary-dark); box-shadow: 0 18px 36px rgba(15, 123, 114, .3); }
.button-small { min-height: 44px; padding-inline: 18px; border-radius: 14px; }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.button-ghost:hover { background: white; box-shadow: var(--shadow-sm); }
.button-light { background: white; border-color: white; color: var(--primary-dark); box-shadow: 0 14px 32px rgba(0,0,0,.14); }
.button-light:hover { background: var(--accent-soft); color: var(--ink); }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 36px;
  background: radial-gradient(circle at 86% 12%, rgba(255,184,77,.18), transparent 26%), linear-gradient(180deg, #f1faf7 0%, #f8fbfa 100%);
  overflow: hidden;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.hero-copy { max-width: 620px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--primary); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.eyebrow span { color: var(--accent); }
.eyebrow-light { color: #b9fff7; }
h1, h2, h3 { font-family: "Nunito", sans-serif; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(47px, 5.6vw, 76px); letter-spacing: -3px; max-width: 760px; }
h1 em { color: var(--primary); font-style: normal; position: relative; }
h1 em::after { content: ""; position: absolute; left: 3%; right: -3%; bottom: 2px; height: 12px; background: rgba(255,184,77,.48); border-radius: 50%; z-index: -1; transform: rotate(-2deg); }
.hero-copy > p { max-width: 590px; margin: 24px 0 30px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 16px 24px; margin: 28px 0 0; padding: 0; list-style: none; color: #4a6367; font-size: 13px; font-weight: 700; }
.hero-checks span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 6px; border-radius: 50%; color: var(--primary); background: white; box-shadow: 0 5px 14px rgba(15,123,114,.12); }
.hero-media { position: relative; }
.hero-card { position: relative; padding: 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 46px 46px 130px 46px; background: rgba(255,255,255,.58); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.hero-card > img { width: 100%; aspect-ratio: 1 / .92; object-fit: cover; object-position: center 42%; border-radius: 34px 34px 115px 34px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 218px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.82); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 10px; margin-top: 2px; }
.floating-card-top { left: -40px; top: 44px; }
.floating-card-bottom { right: -26px; bottom: 30px; animation-delay: -2.2s; }
.floating-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--surface-soft); }
.avatar-stack { display: flex; }
.avatar-stack i { width: 31px; height: 31px; display: grid; place-items: center; margin-left: -8px; border: 2px solid white; border-radius: 50%; background: var(--accent-soft); font-style: normal; font-size: 14px; }
.avatar-stack i:first-child { margin-left: 0; }
.hero-blob { position: absolute; border-radius: 999px; filter: blur(1px); opacity: .7; }
.hero-blob-one { width: 290px; height: 290px; right: -110px; top: 90px; background: rgba(15,123,114,.11); }
.hero-blob-two { width: 180px; height: 180px; left: -75px; bottom: 100px; background: rgba(255,184,77,.18); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.trust-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); overflow: hidden; }
.trust-strip > div { display: flex; align-items: center; gap: 14px; padding: 22px 26px; }
.trust-strip > div + div { border-left: 1px solid var(--line); }
.trust-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: var(--surface-soft); }
.trust-strip p { margin: 0; line-height: 1.3; }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { font-size: 14px; }
.trust-strip small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 88px; }
.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; inset: 30px -25px -25px 32px; z-index: -1; border-radius: var(--radius-lg); background: var(--accent-soft); transform: rotate(3deg); }
.media-frame > img { width: 100%; aspect-ratio: 1.06 / 1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-badge { position: absolute; right: -24px; bottom: 26px; width: 142px; height: 142px; display: grid; place-content: center; text-align: center; border: 8px solid var(--bg); border-radius: 50%; background: var(--primary); color: white; box-shadow: var(--shadow-sm); }
.media-badge strong { font-family: "Nunito", sans-serif; font-size: 28px; }
.media-badge span { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.section-copy h2, .section-heading h2, .product-copy h2, .process-copy h2, .contact-info h2 { font-size: clamp(36px, 4vw, 55px); letter-spacing: -1.8px; }
.section-copy > p { margin: 20px 0 0; color: var(--muted); }
.feature-list { display: grid; gap: 12px; margin: 28px 0; }
.feature-list > div { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.feature-list > div > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; background: var(--surface-soft); }
.feature-list p { margin: 0; }
.feature-list strong, .feature-list small { display: block; }
.feature-list small { color: var(--muted); margin-top: 4px; }
.text-link { color: var(--primary); font-weight: 800; }
.text-link span { transition: margin .2s ease; }
.text-link:hover span { margin-left: 6px; }

.services { background: #f0f8f5; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading > p { width: min(100%, 420px); margin: 0; color: var(--muted); }
.section-heading.centered { display: grid; justify-items: center; text-align: center; }
.section-heading.centered > p { width: min(100%, 650px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 16px 42px rgba(23,67,70,.08); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(23,67,70,.14); }
.service-card > img { width: 100%; aspect-ratio: 1.34 / 1; object-fit: cover; transition: transform .6s ease; }
.service-card:hover > img { transform: scale(1.04); }
.service-content { position: relative; padding: 28px; }
.service-number { position: absolute; right: 24px; top: -22px; width: 48px; height: 48px; display: grid; place-items: center; border: 5px solid white; border-radius: 15px; background: var(--accent); color: var(--ink); font-size: 12px; font-weight: 900; }
.service-content h3 { font-size: 24px; }
.service-content p { min-height: 82px; margin: 14px 0 20px; color: var(--muted); font-size: 14px; }
.service-content a { color: var(--primary); font-size: 13px; font-weight: 800; }
.service-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.service-mini-grid > div { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.7); }
.service-mini-grid > div > span { font-size: 24px; }
.service-mini-grid h3 { margin-top: 11px; font-size: 18px; }
.service-mini-grid p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }

.products { padding-top: 80px; }
.product-panel { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; overflow: hidden; min-height: 540px; padding: 60px; border-radius: 42px; background: linear-gradient(135deg, #0a5954, #0f7b72); color: white; box-shadow: var(--shadow-lg); }
.product-copy > p { max-width: 600px; color: rgba(255,255,255,.76); }
.product-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 30px; }
.product-tags span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 800; }
.product-panel > img { width: min(100%, 440px); aspect-ratio: 1; justify-self: center; object-fit: cover; border: 12px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 25px 70px rgba(0,0,0,.22); }

.difference-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.difference-grid article { padding: 28px 24px; border: 1px solid var(--line); border-radius: 22px; background: white; text-align: center; box-shadow: var(--shadow-sm); }
.difference-grid article > span { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 18px; background: var(--surface-soft); font-size: 26px; }
.difference-grid h3 { font-size: 20px; }
.difference-grid p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }

.process { background: var(--accent-soft); }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.process-copy p { color: var(--muted); margin: 20px 0 28px; }
.process-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.process-steps li { display: flex; align-items: center; gap: 20px; padding: 24px; border: 1px solid rgba(23,50,57,.1); border-radius: 22px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
.process-steps li > span { width: 54px; height: 54px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 17px; background: var(--primary); color: white; font-family: "Nunito", sans-serif; font-size: 23px; font-weight: 900; }
.process-steps h3 { font-size: 20px; }
.process-steps p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 24px; background: #dbe7e4; }
.gallery-item.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.gallery-item span { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; border-radius: 12px; background: rgba(17,50,57,.78); color: white; font-size: 11px; font-weight: 800; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.08); }
.gallery-item:hover span { opacity: 1; transform: translateY(0); }

.testimonials { background: #f0f8f5; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-grid blockquote { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-sm); }
.stars { color: #f3a82b; letter-spacing: 3px; font-size: 15px; }
.testimonial-grid blockquote > p { min-height: 115px; color: #41595e; font-size: 14px; }
.testimonial-grid footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-grid footer > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); }
.testimonial-grid footer strong, .testimonial-grid footer small { display: block; }
.testimonial-grid footer small { color: var(--muted); font-size: 10px; }

.contact { padding-bottom: 90px; }
.contact-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; padding: 60px; border-radius: 40px; background: var(--ink); color: white; box-shadow: var(--shadow-lg); }
.contact-info > p { color: rgba(255,255,255,.67); }
.contact-info ul { display: grid; gap: 18px; margin: 32px 0; padding: 0; list-style: none; }
.contact-info li { display: flex; align-items: center; gap: 14px; }
.contact-info li > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.09); }
.contact-info li small, .contact-info li strong, .contact-info li a { display: block; }
.contact-info li small { color: rgba(255,255,255,.53); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.06); font-size: 12px; font-weight: 800; }
.social-links span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 7px; background: white; color: var(--ink); }
.contact-form { padding: 34px; border-radius: 28px; background: white; color: var(--ink); }
.form-heading { margin-bottom: 24px; }
.form-heading span { font: 900 25px/1.1 "Nunito", sans-serif; }
.form-heading p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; font-size: 11px; font-weight: 800; color: #354e53; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: #f8fbfa; color: var(--ink); outline: none; padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 105px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(15,123,114,.1); }
.contact-form .invalid { border-color: #d64045; box-shadow: 0 0 0 4px rgba(214,64,69,.08); }
.form-status { min-height: 20px; margin: 0 0 10px; color: #b4232a; font-size: 12px; font-weight: 700; }
.form-note { display: block; margin-top: 12px; color: var(--muted); text-align: center; font-size: 9px; }

.site-footer { padding: 70px 0 25px; background: #0c2227; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 50px; }
.brand-footer small { color: rgba(255,255,255,.48); }
.footer-grid > div:first-child > p, .footer-grid > div:last-child p { color: rgba(255,255,255,.55); font-size: 12px; }
.footer-grid h3 { margin-bottom: 16px; font-size: 15px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a:not(.brand) { margin: 5px 0; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.43); font-size: 10px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1200; display: flex; align-items: center; gap: 10px; }
.whatsapp-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 4px solid white; border-radius: 50%; background: #25d366; color: white; font-size: 13px; font-weight: 900; box-shadow: 0 14px 35px rgba(37,211,102,.36); }
.whatsapp-tooltip { padding: 11px 14px; border-radius: 12px; background: white; color: var(--ink); box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 800; opacity: 0; pointer-events: none; transform: translateX(10px); transition: opacity .2s ease, transform .2s ease; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 30px; background: rgba(4,18,21,.92); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1040px, 92vw); max-height: 82vh; border-radius: 22px; box-shadow: 0 28px 90px rgba(0,0,0,.4); }
.lightbox-close { position: absolute; top: 22px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.08); color: white; font-size: 29px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .main-nav { gap: 16px; }
  .main-nav > a:not(.button) { display: none; }
  .hero-grid { gap: 40px; }
  .floating-card-top { left: -12px; }
  .floating-card-bottom { right: -8px; }
  .split-layout { gap: 56px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .service-card:last-child > img { height: 100%; }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 780px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: var(--header-height) 14px auto; display: grid; gap: 6px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.button) { display: block; padding: 12px; border-radius: 10px; }
  .main-nav > a:not(.button):hover { background: var(--surface-soft); }
  .main-nav .button { margin-top: 7px; }
  .hero { min-height: auto; padding-top: 115px; }
  .hero-grid, .split-layout, .product-panel, .process-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  h1 { font-size: clamp(43px, 13vw, 61px); letter-spacing: -2.3px; }
  .hero-card { border-radius: 32px 32px 90px 32px; }
  .floating-card { min-width: 188px; padding: 11px 12px; }
  .floating-card-top { left: -4px; top: 22px; }
  .floating-card-bottom { right: -3px; bottom: 18px; }
  .trust-strip { grid-template-columns: 1fr; margin-top: 40px; }
  .trust-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .split-layout { gap: 58px; }
  .media-badge { right: 12px; bottom: -34px; }
  .section-heading { display: grid; align-items: start; }
  .service-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: block; }
  .service-mini-grid { grid-template-columns: 1fr; }
  .product-panel { padding: 38px 26px; border-radius: 30px; }
  .product-panel > img { width: min(78%, 380px); order: -1; }
  .process-grid { gap: 42px; }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-item.gallery-large, .gallery-item.gallery-wide { grid-column: span 2; }
  .contact-panel { gap: 38px; padding: 38px 24px; border-radius: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .hero-copy > p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-checks { display: grid; gap: 10px; }
  .floating-card-top { display: none; }
  .floating-card-bottom { right: 8px; bottom: 10px; }
  .section-copy h2, .section-heading h2, .product-copy h2, .process-copy h2, .contact-info h2 { font-size: 36px; }
  .media-badge { width: 120px; height: 120px; }
  .difference-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.gallery-large, .gallery-item.gallery-wide { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .whatsapp-tooltip { display: none; }
  .whatsapp-icon { width: 54px; height: 54px; }
}

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