/* ── Design tokens ── */
:root {
  --bg: #090c0f;
  --bg2: #10151a;
  --panel: #151b21;
  --panel2: #1a2229;
  --text: #f5f6f7;
  --muted: #aab3b9;
  --copper: #c97842;
  --copper2: #e4a06b;
  --gold: #d3ac69;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

/* ── Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background:
    radial-gradient(circle at 88% 0%, rgba(201, 120, 66, 0.12), transparent 26%),
    linear-gradient(180deg, #080b0d 0%, #0b0f12 35%, #090c0f 100%);
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1220px, 92%);
  margin: auto;
}

body.nav-open {
  overflow: hidden;
}

/* ── Utilities ── */
.text-muted {
  color: var(--muted);
}

.text-white {
  color: #fff;
}

.mt-lg {
  margin-top: 26px;
}

.mt-sm {
  margin-top: 10px;
}

.mt-footer {
  margin-top: 30px;
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 13, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  z-index: 102;
}

.logo-text {
  font-size: clamp(14px, 2.5vw, 16px);
  white-space: nowrap;
}

.logo-mark {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--copper), var(--copper2));
  display: grid;
  place-items: center;
  color: #17100b;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(201, 120, 66, 0.25);
  flex-shrink: 0;
}

.logo span {
  color: var(--copper2);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #d5dbe0;
}

.navlinks a:hover {
  color: #fff;
}

.nav-menu-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 102;
}

.nav-cta-short {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(21, 27, 33, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-visible {
  display: block;
  opacity: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--copper), var(--copper2));
  color: #17100b;
  box-shadow: 0 12px 30px rgba(201, 120, 66, 0.18);
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

/* ── Hero ── */
.hero {
  padding: 96px 0 78px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  right: -220px;
  top: -170px;
  background: radial-gradient(circle, rgba(228, 160, 107, 0.18), transparent 67%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper2);
  font-weight: 800;
}

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

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 7vw, 90px);
  line-height: 0.97;
  margin: 16px 0 22px;
}

.hero p {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
}

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

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(145deg, #1a2229, #0f1418);
  box-shadow: var(--shadow);
}

.hero-panel .caption {
  padding: 14px 5px 2px;
  color: var(--muted);
  font-size: 13px;
}

/* ── Shared image frames ── */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #0d1115;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

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

@media (hover: none) {
  .media-frame:hover img {
    transform: none;
  }
}

.media-frame--hero {
  aspect-ratio: 16 / 11;
}

.media-frame--portrait {
  aspect-ratio: 3 / 4;
}

.img-focus-center {
  object-position: center center;
}

.img-focus-top {
  object-position: center 18%;
}

/* Hero coil — keep the pallet & coil in frame */
.hero-panel .media-frame--hero img {
  object-position: center 55%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(17, 23, 28, 0.82);
  padding: 19px;
  border-radius: 16px;
}

.stat strong {
  display: block;
  color: var(--copper2);
  font-size: 25px;
}

.stat span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Sections ── */
section {
  padding: 94px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin: 8px 0 0;
}

.section-copy {
  max-width: 680px;
  color: var(--muted);
}

.band {
  background: linear-gradient(180deg, #0f1418, #11171c);
  border-block: 1px solid var(--line);
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ── Cards & features ── */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(21, 27, 33, 0.96), rgba(15, 20, 24, 0.98));
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 160, 107, 0.34);
}

.card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 120, 66, 0.13), transparent 65%);
}

.tag {
  display: inline-block;
  border: 1px solid rgba(228, 160, 107, 0.25);
  color: var(--copper2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  font-size: 23px;
  margin: 18px 0 10px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(21, 27, 33, 0.72);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper2);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(228, 160, 107, 0.08);
}

/* ── Process ── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  border-top: 3px solid var(--copper);
  padding: 22px 18px;
  background: rgba(18, 24, 29, 0.75);
  border-radius: 14px;
}

.step .n {
  color: var(--copper2);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 10px 0 8px;
  font-size: 19px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ── Product gallery ── */
.gallery-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 460px;
}

.gallery-main.media-frame {
  height: 100%;
  min-height: 460px;
}

.gallery-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
  min-height: 460px;
}

.gallery-stack .media-frame {
  height: 100%;
  min-height: 0;
}

.product-caption {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.product-title {
  font-size: 28px;
  margin: 0 0 5px;
}

.spec-pill {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(201, 120, 66, 0.13);
  border: 1px solid rgba(228, 160, 107, 0.28);
  color: var(--copper2);
  font-weight: 800;
  font-size: 13px;
}

/* ── SGS section ── */
.sgs-showcase {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(260px, 400px) 1fr;
  gap: 24px;
  align-items: start;
}

.sgs-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sgs-photo {
  margin: 0;
}

.sgs-photo figcaption {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}

.sgs-cert {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
  position: sticky;
  top: 96px;
}

.sgs-cert-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b4a2e;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sgs-cert-scroll {
  max-height: min(78vh, 680px);
  overflow-y: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  scrollbar-width: thin;
  scrollbar-color: #c97842 #eee;
}

.sgs-cert-scroll img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.verify-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 3px solid var(--copper);
  background: rgba(201, 120, 66, 0.08);
  border-radius: 10px;
  color: var(--muted);
}

/* ── Leadership ── */
.leader {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 120, 66, 0.12), transparent 28%),
    linear-gradient(145deg, #161d23, #0f1418);
  box-shadow: var(--shadow);
}

.avatar {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  background: linear-gradient(135deg, #7b4127, #d6925f);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  color: #24140b;
  margin-bottom: 20px;
}

.leader h3 {
  font-size: 30px;
  margin-bottom: 2px;
}

.role {
  color: var(--copper2);
  font-weight: 700;
  margin-bottom: 18px;
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1.35;
  margin-top: 24px;
  color: #f4e5da;
}

/* ── Global trade ── */
.global-card {
  min-height: 300px;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 30px;
  background:
    radial-gradient(circle at 70% 30%, rgba(228, 160, 107, 0.18), transparent 20%),
    linear-gradient(145deg, #151c22, #0e1317);
}

.global-card h3 {
  font-size: 28px;
  margin-top: 12px;
}

.countries {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.country {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9dfe3;
  font-size: 13px;
}

/* ── Contact / CTA ── */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 46px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, #9a552f 0%, #c97842 45%, #e1a16e 100%);
  color: #1b1009;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
  box-shadow: 0 28px 80px rgba(154, 85, 47, 0.35);
}

.cta-info h2 {
  font-size: clamp(34px, 4vw, 42px);
  margin-bottom: 12px;
  line-height: 1.08;
}

.cta .kicker {
  color: rgba(28, 16, 9, 0.72);
}

.cta-lead {
  margin: 0 0 28px;
  max-width: 480px;
  line-height: 1.6;
  color: rgba(27, 16, 9, 0.82);
}

/* Company details */
.company-block {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.company-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 20, 24, 0.1);
  border: 1px solid rgba(28, 16, 9, 0.14);
}

.company-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(15, 20, 24, 0.18);
  color: #1b1009;
}

.company-icon svg {
  width: 20px;
  height: 20px;
}

.company-row strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.company-row span {
  display: block;
  font-size: 13px;
  color: rgba(27, 16, 9, 0.75);
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 28px rgba(27, 16, 9, 0.15);
}

.contact-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.contact-card--wide .contact-icon {
  margin-bottom: 0;
}

.contact-card--wide .contact-label,
.contact-card--wide .contact-value {
  flex: 1;
  min-width: 140px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-icon--phone {
  background: rgba(16, 20, 23, 0.85);
  color: #fff;
}

.contact-icon--email {
  background: rgba(16, 20, 23, 0.85);
  color: #e4a06b;
}

.contact-icon--whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-icon--whatsapp svg {
  width: 20px;
  height: 20px;
}

.contact-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(27, 16, 9, 0.6);
}

.contact-value {
  font-size: 14px;
  font-weight: 700;
  color: #1b1009;
  word-break: break-word;
}

/* Form panel */
.cta-form-wrap {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(27, 16, 9, 0.12);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 800;
  font-size: 15px;
  color: #1b1009;
}

.form-header svg {
  width: 20px;
  height: 20px;
  color: var(--copper);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: #4a4a4a;
  letter-spacing: 0.02em;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  color: #9a9a9a;
  pointer-events: none;
  z-index: 1;
}

.field-icon--top {
  top: 14px;
  align-self: flex-start;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  padding: 13px 14px 13px 42px;
  background: #f8f9fa;
  color: #151515;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 120, 66, 0.15);
}

.form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9a9a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 13px;
}

.form-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 15px 24px;
  background: linear-gradient(135deg, #101417, #1f2830);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(16, 20, 23, 0.25);
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 20, 23, 0.35);
}

/* ── Footer ── */
.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

.small {
  font-size: 13px;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

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

/* ── WhatsApp float ── */
.floating-wa {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 18px));
  bottom: max(18px, env(safe-area-inset-bottom, 18px));
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa svg {
  width: 30px;
  height: 30px;
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.45);
}

/* ── Responsive ── */

/* Tablet landscape & below */
@media (max-width: 1100px) {
  .navlinks {
    gap: 16px;
    font-size: 13px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* Tablet — mobile menu */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .navlinks {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 24px 32px;
    background: linear-gradient(180deg, #0f1418 0%, #0a0d10 100%);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    overflow-y: auto;
  }

  .navlinks.is-open {
    transform: translateX(0);
  }

  .navlinks a {
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    color: #d5dbe0;
  }

  .navlinks a:last-of-type {
    border-bottom: none;
  }

  .nav-menu-cta {
    display: inline-flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .two,
  .cta {
    grid-template-columns: 1fr;
  }

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

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

  .section-head {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-main.media-frame {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: unset;
  }

  .gallery-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: unset;
  }

  .gallery-stack .media-frame {
    aspect-ratio: 16 / 11;
  }

  .sgs-showcase {
    grid-template-columns: 1fr;
  }

  .sgs-cert {
    position: static;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .container {
    width: min(1220px, 90%);
  }

  section {
    padding: 72px 0;
  }

  .hero {
    padding: 72px 0 56px;
  }

  h1 {
    font-size: clamp(40px, 10vw, 52px);
  }

  .hero p {
    font-size: 17px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat {
    padding: 16px;
  }

  .stat strong {
    font-size: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .card {
    padding: 22px;
  }

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

  .leader {
    padding: 26px;
  }

  .leader h3 {
    font-size: 24px;
  }

  .quote {
    font-size: 20px;
  }

  .cta {
    padding: 32px 24px;
  }

  .cta-info h2 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .floating-wa {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .floating-wa svg {
    width: 28px;
    height: 28px;
  }
}

/* Mobile */
@media (max-width: 580px) {
  .container {
    width: min(1220px, calc(100% - 28px));
  }

  .nav {
    min-height: 68px;
    gap: 10px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 15px;
  }

  .logo-text {
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .nav-cta-full {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .nav-cta {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 13px;
  }

  .nav-menu-cta {
    display: none;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 56px 0 48px;
  }

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

  .gallery-stack {
    grid-template-columns: 1fr;
  }

  .gallery-stack .media-frame {
    aspect-ratio: 16 / 10;
  }

  .gallery-main.media-frame {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  .sgs-photos {
    grid-template-columns: 1fr;
  }

  .sgs-photo figcaption {
    text-align: left;
  }

  .media-frame--hero {
    aspect-ratio: 16 / 11;
  }

  .product-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card--wide {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

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

  .cta {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .cta-form-wrap {
    padding: 20px 16px;
  }

  .cta-info h2 {
    font-size: 26px;
  }

  .global-card {
    min-height: auto;
    padding: 24px;
  }

  .countries {
    gap: 8px;
  }

  .country {
    font-size: 12px;
    padding: 8px 11px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .container {
    width: calc(100% - 24px);
  }

  .logo-text {
    font-size: 12px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .stat strong {
    font-size: 20px;
  }

  .stat span {
    font-size: 12px;
  }

  .card h3 {
    font-size: 20px;
  }

  .form-submit {
    font-size: 14px;
    padding: 14px 20px;
  }
}

/* Large desktops */
@media (min-width: 1400px) {
  .container {
    width: min(1280px, 90%);
  }
}

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

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

  .media-frame img,
  .navlinks,
  .nav-toggle-bar,
  .nav-backdrop,
  .contact-card,
  .form-submit,
  .floating-wa {
    transition: none;
  }
}
