@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../../s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aX8.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../../s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aX8.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../../s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aX8.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("../../s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w5aX8.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url("../../s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aX8.ttf") format("truetype");
  font-display: swap;
}
:root {
  --color-navy: #08233f;
  --color-navy-2: #123a63;
  --color-gold: #d8a72f;
  --color-gold-2: #f4c95d;
  --color-ink: #162033;
  --color-muted: #5d6b7f;
  --color-soft: #f3f6fa;
  --color-line: #dfe6ef;
  --color-white: #ffffff;
  --color-whatsapp: #128c4a;
  --shadow-card: 0 18px 50px rgba(8, 35, 63, 0.1);
  --shadow-soft: 0 12px 32px rgba(8, 35, 63, 0.08);
  --radius-card: 8px;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: "Montserrat", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 230, 239, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(8, 35, 63, 0.1);
  border-color: rgba(223, 230, 239, 0.45);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: var(--color-navy);
  font-weight: 900;
}

.brand img {
  width: 252px;
  max-width: 28vw;
  height: auto;
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.brand span,
.footer-brand span {
  max-width: 230px;
  line-height: 1.08;
}

.brand span {
  font-size: 18px;
}

.footer-brand span {
  max-width: 190px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--color-muted);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-navy);
  background: var(--color-soft);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  color: var(--color-ink);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.btn-primary {
  color: var(--color-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-gold-2);
}

.btn-ghost {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-line);
}

/* Compact icon-only header action buttons */
.btn-icon {
  width: 42px;
  min-height: 42px;
  padding: 0;
  gap: 0;
}

.btn-icon .btn-label {
  display: none;
}

.btn-whatsapp {
  color: var(--color-white);
  background: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
}

/* Instagram header button */
.btn-instagram {
  color: var(--color-white);
  background: linear-gradient(135deg, #833ab4 0%, #c13584 40%, #e1306c 70%, #fd1d1d 100%);
  border-color: transparent;
}

.btn-instagram:hover,
.btn-instagram:focus-visible {
  opacity: 0.9;
}

.full-width {
  width: 100%;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: var(--color-navy);
  background: var(--color-white);
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-open .menu-toggle .icon-open {
  display: none;
}

.menu-open .menu-toggle .icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 63, 0.98) 0%, rgba(8, 35, 63, 0.92) 46%, rgba(8, 35, 63, 0.68) 72%, rgba(8, 35, 63, 0.78) 100%),
    radial-gradient(circle at 80% 30%, rgba(216, 167, 47, 0.3), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--color-gold), #31a66a, #2b7cc7);
}

.hero-inner {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 46px;
}

.hero-copy {
  width: 100%;
  max-width: 560px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
  height: 520px;
  justify-self: end;
  display: grid;
  grid-template-columns: 1.55fr 0.68fr 0.68fr;
  gap: 14px;
}

.hero-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(8, 35, 63, 0.08));
  pointer-events: none;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-laptop {
  background: linear-gradient(180deg, #eef3f8 0%, #dce3e8 100%);
}

.hero-panel-laptop img {
  object-position: 58% center;
}

.hero-panel-desktop {
  background: linear-gradient(180deg, #e5d7c6 0%, #d5c1a8 100%);
}

.hero-panel-desktop img {
  object-position: center center;
}

.hero-panel-printer {
  background: linear-gradient(180deg, #d9e9f4 0%, #bed2df 100%);
}

.hero-panel-printer img {
  object-position: 62% center;
}

.hero-panel figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.two-column {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.section-copy p,
.section-heading p {
  color: var(--color-muted);
  font-size: 17px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-stats div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about-stats strong {
  display: block;
  color: var(--color-navy);
  font-size: 28px;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.image-panel {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: var(--shadow-card);
}

.image-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.image-panel-shop {
  padding: 12px;
}

.image-panel-shop img {
  aspect-ratio: 16 / 10;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
}

/* ── Shop slideshow ── */
.shop-slideshow {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-navy);
}

.shop-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}

.shop-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.shop-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  max-height: none;
  aspect-ratio: unset;
}

/* Dot navigation */
.shop-slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  pointer-events: auto;
}

.shop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}

.shop-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

.shop-dot:hover {
  background: rgba(255,255,255,0.8);
}



.services-section,
.products-section {
  background: var(--color-soft);
}

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

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

.service-card,
.feature-card,
.contact-card,
.contact-form,
.map-placeholder,
.product-images figure {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(8, 35, 63, 0.05);
}

.service-card,
.feature-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card {
  position: relative;
  min-height: 0;
  padding: 16px 16px 24px;
  overflow: hidden;
}

.feature-card {
  min-height: 230px;
  padding: 26px;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 167, 47, 0.55);
  box-shadow: var(--shadow-card);
}

.service-media {
  position: relative;
  height: 138px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #eef3f8 0%, #dfe7ef 100%);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 35, 63, 0.02), rgba(8, 35, 63, 0.16));
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -40px 0 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: var(--color-white);
  background: rgba(8, 35, 63, 0.92);
  box-shadow: 0 10px 24px rgba(8, 35, 63, 0.18);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.feature-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.service-card-wide {
  grid-column: span 1;
}
.why-section {
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--color-gold);
  stroke-width: 1.8;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: var(--color-navy);
  background: var(--color-white);
  font-weight: 800;
}

.product-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-images figure {
  position: relative;
  margin: 0;
  min-height: 310px;
  overflow: hidden;
}

.product-images img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.product-images figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--color-white);
  background: rgba(8, 35, 63, 0.86);
  font-weight: 900;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--color-soft);
}

/* Inline meta links under heading */
.contact-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 15px;
}

.contact-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-navy);
  font-weight: 700;
  transition: color 150ms ease;
}

.contact-meta a .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--color-gold);
}

.contact-meta a:hover {
  color: var(--color-gold);
}

.contact-meta a:hover .icon {
  color: var(--color-gold);
}

.contact-meta-dot {
  color: var(--color-muted);
  font-weight: 400;
}

/* Two big CTA buttons side by side */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(8, 35, 63, 0.14);
}

.contact-action-btn .icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.contact-action-btn span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-action-btn strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.contact-action-btn small {
  display: block;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.82;
}

.contact-action-btn--wa {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.contact-action-btn--call {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy-2);
}

/* Full-width map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(8, 35, 63, 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
  height: 340px;
}

.site-footer {
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--color-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: var(--color-white);
  margin-bottom: 16px;
}

.site-footer .footer-brand {
  width: max-content;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.social-links,
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link,
.footer-bottom-links a {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.social-link {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--color-white) !important;
  background: rgba(255, 255, 255, 0.08);
}

.social-link .icon {
  width: 18px;
  height: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: 18px;
}

.site-footer p {
  margin-bottom: 10px;
}

.site-footer a {
  display: table;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  transition: background 150ms ease, color 150ms ease;
}

.footer-social-icon:hover {
  background: rgba(255,255,255,0.14);
  color: var(--color-white);
}

.footer-social-icon--wa:hover {
  background: rgba(18, 140, 74, 0.4);
  color: var(--color-white);
  border-color: rgba(18, 140, 74, 0.5);
}

.footer-social-icon .icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(100% - 32px, 920px);
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .brand img {
    width: 220px;
    max-width: 30vw;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 30px;
  }

  .hero-visual {
    max-width: 520px;
    height: 430px;
    opacity: 0.92;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-wide {
    grid-column: span 1;
  }

  .two-column,
  .product-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* On tablet contact action buttons stay 2-col — fine */

  .product-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    justify-content: center;
  }

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

  .call-link {
    display: none;
  }

  .brand img {
    width: 210px;
    max-width: 46vw;
  }

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

  .hero-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual {
    width: 100%;
    max-width: none;
    height: 340px;
    margin-top: 34px;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 540px);
  }

  .section {
    padding: 62px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 166px;
    max-width: 48vw;
  }

  .header-actions {
    gap: 8px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  .hero-points {
    display: grid;
  }

  .hero-visual {
    height: 320px;
    grid-template-columns: 1.55fr 0.68fr 0.68fr;
    gap: 8px;
  }

  .service-card {
    padding: 14px 14px 22px;
  }

  .service-media {
    height: 128px;
  }

  .about-stats,
  .services-grid,
  .features-grid,
  .product-images {
    grid-template-columns: 1fr;
  }

  .about-stats div,
  .service-card,
  .feature-card {
    min-height: 0;
  }

  .image-panel {
    padding: 18px;
  }

  /* Action buttons stack on mobile */
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 260px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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