:root {
  color-scheme: light;
  --paper: #f5f9fd;
  --paper-2: #eaf3fb;
  --ink: #0b2439;
  --muted: #5b7182;
  --line: #d3e1ed;
  --accent: #0f63e8;
  --accent-dark: #0848a8;
  --deep: #082c4d;
  --deep-2: #124c78;
  --surface: #ffffff;
  --surface-soft: #f8fbfe;
  --on-dark: #f5fbff;
  --radius: 18px;
  --radius-large: 28px;
  --shadow: 0 22px 55px rgba(8, 44, 77, 0.14);
  --max-width: 1220px;
  --header-bg: rgba(245, 249, 253, 0.94);
  --header-border: rgba(211, 225, 237, 0.85);
  --accent-foreground: #ffffff;
  --input-border: #c5d7e6;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", system-ui, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  transition: background-color 220ms ease, color 220ms ease;
}

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;
}

.shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--deep);
  color: var(--on-dark);
  font-size: 0.82rem;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(14px);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-symbol {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 10px 24px rgba(15, 99, 232, 0.2);
}



.brand-copy {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1.06rem;
  letter-spacing: -0.05em;
}

.brand-copy small {
  color: var(--accent-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.88rem;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--accent-dark);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--accent-dark);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 44, 77, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: var(--paper-2);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(15, 99, 232, 0.14);
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-toggle-icon {
  width: 19px;
  height: 19px;
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 21px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 10px 22px rgba(15, 99, 232, 0.2);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-small {
  min-height: 39px;
  padding-inline: 17px;
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.8rem;
  font-weight: 750;
}

.nav-toggle-icon {
  width: 20px;
  display: grid;
  gap: 5px;
}

.nav-toggle-icon i {
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: calc(100dvh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 7vw, 106px);
  padding-block: 64px 72px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow,
.service-kicker {
  margin: 0 0 21px;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  margin-bottom: 27px;
  font-size: clamp(3.45rem, 6.4vw, 6.45rem);
}

h1 span {
  display: block;
  color: var(--accent);
  font-size: 0.72em;
  letter-spacing: -0.07em;
}

h2 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.1vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.hero-lede {
  max-width: 43ch;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link,
.arrow-link {
  font-weight: 800;
  font-size: 0.87rem;
}

.text-link span,
.arrow-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--accent-dark);
  transition: transform 180ms ease;
}

.text-link:hover span,
.arrow-link:hover span {
  transform: translate(3px, -3px);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 20px -16px -16px 18px;
  z-index: -1;
  border-radius: var(--radius-large);
  background: var(--pale-blue, #d8eafe);
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.hero-media figcaption,
.media-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.proof-band {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}

.proof-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-band p {
  min-height: 93px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin: 0;
  padding: 16px 25px;
  border-right: 1px solid var(--line);
}

.proof-band p:first-child {
  padding-left: 0;
}

.proof-band p:last-child {
  border-right: 0;
}

.proof-band strong {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.proof-band span {
  color: var(--muted);
  font-size: 0.79rem;
}

.content-section {
  padding-block: 142px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 61px;
}

.section-heading h2 {
  max-width: 11ch;
}

.section-heading > p:last-child,
.product-copy > p,
.contact-copy > p:last-child {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.service-feature {
  min-height: 485px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 66px);
  border-radius: var(--radius-large);
  background: var(--deep);
  color: var(--on-dark);
}

.service-feature .service-kicker {
  color: #8fc2ff;
}

.service-feature h3 {
  max-width: 10ch;
  color: var(--on-dark);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.service-feature p {
  max-width: 43ch;
  margin-bottom: 30px;
  color: #c7d9e8;
}

.service-feature .arrow-link {
  color: var(--on-dark);
}

.service-feature .arrow-link span {
  color: #8fc2ff;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 19px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article:first-child {
  padding-top: 21px;
}

.service-number,
.product-card-number {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-list h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.service-list p {
  max-width: 30ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(50px, 8vw, 122px);
  align-items: center;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.product-copy h2 {
  max-width: 8ch;
}

.product-copy > p {
  margin-bottom: 34px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
}

.catalog-grid span {
  padding: 13px 11px 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
}

.product-gallery-section {
  padding-top: 30px;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.product-card {
  grid-column: span 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(8, 44, 77, 0.06);
}

.product-card-feature {
  grid-column: span 6;
}

.product-card-wide {
  grid-column: span 6;
}

.product-card-media {
  overflow: hidden;
  aspect-ratio: 1.08 / 0.92;
  background: var(--paper-2);
}

.product-card-feature .product-card-media,
.product-card-wide .product-card-media {
  aspect-ratio: 1.8 / 0.95;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
}

.product-card-copy {
  padding: 22px 22px 25px;
}

.product-card-copy h3 {
  margin: 9px 0 7px;
  font-size: 1.35rem;
}

.product-card-copy p {
  max-width: 33ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.projects-section {
  padding-top: 49px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.project-card {
  margin: 0;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.project-card-feature {
  grid-column: span 5;
  grid-row: span 2;
}

.project-card-feature img {
  min-height: 612px;
  aspect-ratio: 0.82 / 1;
}

.project-card-4 {
  grid-column: span 4;
}

.project-card-3 {
  grid-column: span 3;
}

.project-card-4 img,
.project-card-3 img {
  aspect-ratio: 0.84 / 1;
}

.project-card-wide {
  grid-column: span 7;
}

.project-card-wide img {
  min-height: 325px;
  aspect-ratio: 1.45 / 0.95;
  object-position: center 40%;
}

.project-card figcaption {
  display: grid;
  gap: 3px;
  margin-top: 14px;
}

.project-card figcaption strong {
  font-size: 0.94rem;
}

.project-card figcaption span {
  color: var(--muted);
  font-size: 0.73rem;
}

.project-note {
  grid-column: span 5;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 29px;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--on-dark);
}

.project-note h3 {
  margin-bottom: 8px;
  color: var(--on-dark);
  font-size: 1.55rem;
}

.project-note p {
  max-width: 31ch;
  margin-bottom: 20px;
  color: #c7d9e8;
  font-size: 0.86rem;
}

.project-note .arrow-link {
  color: var(--on-dark);
}

.project-note .arrow-link span {
  color: #8fc2ff;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(390px, 1.16fr);
  gap: clamp(43px, 8vw, 108px);
  align-items: start;
  padding: clamp(39px, 6vw, 82px);
  border-radius: var(--radius-large);
  background: var(--deep);
  color: var(--on-dark);
}

.quote-section h2 {
  color: var(--on-dark);
}

.quote-intro > p:not(.eyebrow) {
  max-width: 37ch;
  color: #c7d9e8;
}

.quote-contact {
  display: grid;
  gap: 15px;
  margin-top: 57px;
}

.quote-contact a {
  display: grid;
  gap: 2px;
  width: fit-content;
}

.quote-contact a:hover {
  color: #8fc2ff;
}

.quote-contact span {
  color: #8fc2ff;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-form {
  padding: clamp(23px, 3.5vw, 43px);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.quote-form label > span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.quote-form em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 9px;
  padding: 13px 14px;
  background: var(--surface-soft);
  color: var(--ink);
  outline: 0;
}

.quote-form textarea {
  min-height: 103px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #60798d;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 99, 232, 0.2);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 750;
}

.form-disclaimer {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-block: 142px;
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-details {
  display: grid;
  align-content: end;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-details > div {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
  max-width: 40ch;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--accent-dark);
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 15;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 18px 38px rgba(8, 44, 77, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
  box-shadow: 0 22px 44px rgba(8, 44, 77, 0.27);
}

.whatsapp-fab:active {
  transform: scale(0.96);
}

.whatsapp-fab-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #071b2d;
  --paper-2: #0b2943;
  --ink: #eaf4ff;
  --muted: #b5c8d9;
  --line: #24445d;
  --accent: #5aa7ff;
  --accent-dark: #9ccaff;
  --deep: #031321;
  --deep-2: #0b3557;
  --surface: #102e48;
  --surface-soft: #123754;
  --on-dark: #f5fbff;
  --header-bg: rgba(7, 27, 45, 0.94);
  --header-border: rgba(36, 68, 93, 0.9);
  --accent-foreground: #06233b;
  --input-border: #315673;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

@media (prefers-color-scheme: dark) {
  :root[data-theme="auto"] {
    color-scheme: dark;
    --paper: #071b2d;
    --paper-2: #0b2943;
    --ink: #eaf4ff;
    --muted: #b5c8d9;
    --line: #24445d;
    --accent: #5aa7ff;
    --accent-dark: #9ccaff;
    --deep: #031321;
    --deep-2: #0b3557;
    --surface: #102e48;
    --surface-soft: #123754;
    --on-dark: #f5fbff;
    --header-bg: rgba(7, 27, 45, 0.94);
    --header-border: rgba(36, 68, 93, 0.9);
    --accent-foreground: #06233b;
    --input-border: #315673;
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 67px 72px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    max-width: 760px;
  }

  .hero-media img {
    aspect-ratio: 1.35 / 1;
  }

  .services-layout,
  .product-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .service-feature {
    min-height: 420px;
  }

  .quote-contact {
    margin-top: 31px;
  }

  .quote-form {
    max-width: 760px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .project-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .project-card-feature {
    grid-column: span 3;
  }

  .project-card-4 {
    grid-column: span 2;
  }

  .project-card-3 {
    grid-column: span 1;
  }

  .project-card-wide {
    grid-column: span 4;
  }

  .project-note {
    grid-column: span 2;
  }

  .product-card-feature,
  .product-card-wide {
    grid-column: span 6;
  }

  .product-card {
    grid-column: span 3;
  }
}

@media (max-width: 720px) {
  .theme-toggle {
    justify-self: end;
    margin-top: 10px;
  }
  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav > a:not(.button) {
    padding: 13px 11px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 10px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero {
    padding-block: 56px 59px;
  }
  .brand-symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy {
    gap: 4px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

  .hero-media img {
    aspect-ratio: 1 / 1.04;
  }

  .proof-band-grid {
    grid-template-columns: 1fr;
  }

  .proof-band p,
  .proof-band p:first-child {
    min-height: 0;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band p:last-child {
    border-bottom: 0;
  }

  .content-section,
  .contact-section {
    padding-block: 94px;
  }

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

  .service-feature {
    min-height: 375px;
    padding: 31px;
  }

  .service-feature h3 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .service-list article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .product-section {
    gap: 39px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-feature,
  .product-card-wide {
    grid-column: span 1;
  }

  .product-card-media,
  .product-card-feature .product-card-media,
  .product-card-wide .product-card-media {
    aspect-ratio: 1.08 / 0.82;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card-feature,
  .project-card-4,
  .project-card-3,
  .project-card-wide,
  .project-note {
    grid-column: span 1;
    grid-row: auto;
  }

  .project-card-feature img,
  .project-card-4 img,
  .project-card-3 img,
  .project-card-wide img {
    min-height: 0;
    aspect-ratio: 1 / 1.05;
    object-position: center;
  }

  .project-note {
    min-height: 270px;
  }

  .quote-section {
    padding: 29px 19px;
    border-radius: var(--radius);
  }

  .quote-form {
    padding: 21px 17px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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