/* ==========================================================================
   ALCO — Design Tokens (Apple.com-inspired system)
   Palette:  #FBFBFD porcelain-white bg · #FFFFFF surface · #1D1D1F ink
             #256E3A deep green · #2E7D42 brand green · #6BCB77 bright green
             #EAF6EC green mist · #D2D2D7 hairline
   Type:     SF Pro-style system stack for both display and body — the
             typeface itself, not decoration, carries the "Apple" feeling:
             huge, tight, weight-driven headlines over quiet body text.
   Signature: the ALCO eight-point burst treated the way Apple treats a
              product photograph — one large, still, quietly-lit centerpiece
              per hero, never a scattered decorative glow.
   ========================================================================== */

:root {
  --bg: #FBFBFD;
  --bg-alt: #F5F5F7;
  --surface: #FFFFFF;
  --ink: #1D1D1F;
  --ink-soft: #6E6E73;
  --ink-faint: #86868B;
  --line: #D2D2D7;
  --line-soft: #E8E8ED;

  --green-deep: #256E3A;
  --green: #2E7D42;
  --green-bright: #3DA557;
  --green-vivid: #6BCB77;
  --green-mist: #EAF6EC;

  --font-display: -apple-system, "SF Pro Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", ui-monospace, monospace;

  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 36px;

  --shadow-s: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.03);
  --shadow-m: 0 12px 32px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-l: 0 30px 70px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

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

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.011em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--green);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 760px;
}

.section-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 580px;
  margin-top: 18px;
  line-height: 1.5;
}

.center { margin-left: auto; margin-right: auto; text-align: center; }

section { position: relative; }

/* ---------- Grain overlay — removed for the Apple-style clean-surface look ---------- */
.grain-overlay { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-s);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-m);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--green-deep); }

/* ---------- Language toggle (EN / SO) ---------- */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  padding: 3px;
  flex-shrink: 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.compact .lang-toggle,
.nav--light-page .lang-toggle {
  background: var(--bg-alt);
  border-color: var(--line-soft);
}
.lang-btn {
  padding: 6px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav.compact .lang-btn,
.nav--light-page .lang-btn { color: var(--ink-faint); }
.lang-btn.active {
  background: var(--ink);
  color: #fff;
}
.nav.compact .lang-btn.active,
.nav--light-page .lang-btn.active { color: #fff; }

.mobile-lang-toggle {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.mobile-lang-toggle .lang-btn {
  flex: 1;
  background: var(--bg-alt);
  color: var(--ink-soft);
  padding: 10px;
  text-align: center;
}
.mobile-lang-toggle .lang-btn.active { background: var(--ink); color: #fff; }

/* Elements with translatable text are toggled via [data-en]/[data-so];
   the inactive language's nodes are hidden rather than removed. */
[data-lang-so] { display: none; }
html[lang="so"] [data-lang-en] { display: none; }
html[lang="so"] [data-lang-so] { display: inline; }
html[lang="so"] [data-lang-so].block-el { display: block; }

/* ==========================================================================
   Navigation
   Two states only:
   - Base (.nav): transparent, full-width, sits over the hero. Light text.
   - .nav.compact: as soon as scrollY > 40px — floating rounded pill with a
     solid background, dark text. Reverts smoothly back to base at the top.
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.45s var(--ease);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  box-shadow: none;
  transition: max-width 0.45s var(--ease), background 0.45s var(--ease),
              border-color 0.45s var(--ease), border-radius 0.45s var(--ease),
              box-shadow 0.45s var(--ease), padding 0.45s var(--ease),
              margin 0.45s var(--ease), transform 0.45s var(--ease);
}

/* Compact floating pill — shown as soon as the user scrolls past the hero,
   in either direction. Reverts to the transparent base state at the top. */
.nav.compact {
  padding: 12px 0;
}
.nav.compact .nav-inner {
  max-width: min(94vw, 920px);
  width: max-content;
  margin: 0 auto;
  background: var(--surface);
  border-color: var(--line-soft);
  padding: 8px 10px 8px 20px;
  box-shadow: var(--shadow-m);
}
.nav.compact .nav-logo-text { display: none; }
.nav.compact .nav-links { gap: 15px; }
.nav.compact .nav-link { font-size: 0.84rem; white-space: nowrap; }
.nav.compact .btn-nav { padding: 9px 17px; font-size: 0.82rem; white-space: nowrap; }
.nav.compact .nav-logo-img { width: 45px; height: 45px; }
.nav.compact .lang-toggle { flex-shrink: 0; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: gap 0.4s var(--ease);
}
.nav-logo-img { width: 70px; height: 70px; object-fit: contain; transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.4s var(--ease);
  letter-spacing: -0.02em;
}
.nav.compact .nav-logo-text { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-link:hover { opacity: 0.7; font-weight: 600; }
.nav.compact .nav-link { color: var(--ink-soft); }
.nav.compact .nav-link:hover { color: var(--ink); opacity: 1; font-weight: 600; }

.nav-link::after { content: none; }
.nav-link.active { color: #fff; font-weight: 600; }
.nav.compact .nav-link.active { color: var(--ink); }

.soon-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--green-vivid);
  color: var(--ink);
  padding: 2px 7px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 3px;
  text-transform: uppercase;
}

.nav-link--soon { opacity: 0.88; }
.nav-link--soon:hover { opacity: 1; }

/* ---------- Support dropdown (desktop) ---------- */
.nav-item-dropdown { position: relative; }
.nav-link-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
}
.nav-link-trigger .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}
.nav-item-dropdown.open .chevron,
.nav-link-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 40;
}
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: var(--radius-s);
  transition: background 0.2s var(--ease);
}
.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible { background: var(--bg-alt); }
.nav-dropdown-link strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-dropdown-link span {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ---------- Support group (mobile) ---------- */
.mobile-group-label {
  padding: 14px 4px 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink-faint);
}
.mobile-submenu {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  border-left: 2px solid var(--line-soft);
  margin-left: 4px;
}
.mobile-submenu .mobile-link {
  font-size: 0.96rem;
  padding: 10px 4px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.35s var(--ease);
}
.nav.compact .hamburger span { background: var(--ink); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.compact .hamburger[aria-expanded="true"] span { background: var(--ink); }

/* Pages without a dark image hero (About, eDukan) start with a light
   background right under the nav, so nav text stays dark from the top —
   only the pill background/shape still waits for scroll via .compact. */
.nav--light-page .nav-logo-text { color: var(--ink); }
.nav--light-page .nav-link { color: var(--ink-soft); }
.nav--light-page .nav-link.active { color: var(--ink); }
.nav--light-page .hamburger span { background: var(--ink); }
.nav--light-page .btn-nav { background: var(--ink); }
.nav--light-page .btn-nav:hover { background: var(--green-deep); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 84vw);
  height: 100vh;
  background: var(--surface);
  box-shadow: -12px 0 40px rgba(0,0,0,0.1);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link {
  padding: 14px 4px;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

/* ==========================================================================
   Hero — Apple-style: enormous, weight-driven type over a still, quietly
   lit image. The burst mark becomes one large ambient watermark, not a
   scattered decorative glow.
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,10,0.5) 0%, rgba(10,14,10,0.38) 45%, rgba(10,14,10,0.7) 100%);
}

.burst-glow {
  position: absolute;
  top: 50%; right: -4%;
  width: 760px; height: 760px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.4;
  animation: burst-rotate 140s linear infinite;
  filter: blur(0.5px);
}
.burst-svg { width: 100%; height: 100%; }
.burst-svg use {
  fill: none;
  stroke: rgba(107, 203, 119, 0.28);
  stroke-width: 0.4;
}
@keyframes burst-rotate {
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 32px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .eyebrow {
  color: var(--green-vivid);
  display: block;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 400;
  color: rgba(255,255,255,0.86);
  max-width: 600px;
  margin: 0 auto 18px;
  line-height: 1.45;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--green-vivid);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue-line {
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 3px;
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal { transition-delay: calc(var(--d, 0) * 0.1s); }
.hero .reveal:nth-child(1) { --d: 0; }
.hero .reveal:nth-child(2) { --d: 1; }
.hero .reveal:nth-child(3) { --d: 2; }
.hero .reveal:nth-child(4) { --d: 3; }
.hero .reveal:nth-child(5) { --d: 4; }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 160px 0; background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-lede {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.about-points { display: flex; flex-direction: column; gap: 22px; }
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.point-mark {
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  margin-top: 9px;
}
.about-point p { color: var(--ink-soft); font-size: 1.02rem; max-width: 440px; line-height: 1.5; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--green);
  border-bottom: 1px solid transparent;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.text-link span { transition: transform 0.3s var(--ease); }
.text-link:hover { gap: 10px; border-color: var(--green); }

.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-l);
}
.about-visual-card {
  position: absolute;
  bottom: -28px; left: -28px;
  background: rgba(29, 29, 31, 0.86);
  backdrop-filter: blur(20px);
  color: #fff;
  border-radius: var(--radius-m);
  padding: 22px 26px;
  box-shadow: var(--shadow-l);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-visual-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-vivid);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-visual-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); max-width: 130px; }

/* ==========================================================================
   Products
   ========================================================================== */
.products { padding: 160px 0; background: var(--bg-alt); }

.product-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: transparent;
}

.product-card--cta {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.product-card--cta .product-icon { color: var(--green-vivid); }
.product-card--cta p { color: rgba(255,255,255,0.65); }
.product-card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--green-vivid);
  transition: gap 0.3s var(--ease);
}
.product-card--cta:hover .product-card-cta-link { gap: 10px; }

.product-icon {
  width: 40px; height: 40px;
  color: var(--green);
  margin-bottom: 22px;
}
.product-icon svg { width: 100%; height: 100%; }

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.product-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }

/* ==========================================================================
   Why Choose
   ========================================================================== */
.why { padding: 160px 0; background: var(--bg); }

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}

.why-item { position: relative; padding-left: 4px; }
.why-mark {
  display: inline-flex;
  width: 28px; height: 28px;
  color: var(--green-vivid);
  margin-bottom: 18px;
}
.why-mark svg { width: 100%; height: 100%; fill: currentColor; }

.why-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.why-item p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }

/* ==========================================================================
   Mission / Vision
   ========================================================================== */
.mv { padding: 140px 0; background: var(--ink); color: #fff; }

.mv-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}
.mv-card .eyebrow { color: var(--green-vivid); }
.mv-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  line-height: 1.42;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.015em;
}
.mv-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.14);
}

/* ==========================================================================
   Branches
   ========================================================================== */
.branches { padding: 160px 0; background: var(--bg-alt); }

.branches-layout {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.branch-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  padding: 24px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.branch-card:hover { transform: translateX(4px); box-shadow: var(--shadow-s); }

.branch-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--green-deep);
  background: var(--green-mist);
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.branch-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.branch-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.4; }

.branch-map {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  min-height: 420px;
  border: 1px solid var(--line-soft);
}
.branch-map iframe { width: 100%; height: 100%; min-height: 420px; }

.branch-card { cursor: pointer; }
.branch-card:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; }

.careers-empty-state {
  margin-top: 60px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 56px 44px;
}
.careers-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-mist);
  color: var(--green-deep);
  margin-bottom: 22px;
}
.careers-empty-icon svg { width: 26px; height: 26px; }
.careers-empty-state h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.careers-empty-state p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }

/* ============ BRANCH CONTACT MODAL ============ */
.branch-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.branch-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.branch-modal {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  padding: 32px 28px 28px;
  max-width: 380px;
  width: 100%;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.branch-modal-overlay.open .branch-modal {
  transform: translateY(0) scale(1);
}

.branch-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.branch-modal-close:hover { background: var(--line-soft); color: var(--ink); }
.branch-modal-close svg { width: 16px; height: 16px; }

.branch-modal h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
}
.branch-modal-address {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 22px;
}
.branch-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.branch-modal-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

/* ==========================================================================
   Testimonials
   Cards read like handwritten receipts pinned to a board — a quiet nod to
   the till slips every branch prints, rather than a generic quote-bubble.
   ========================================================================== */
.testimonials { padding: 160px 0; background: var(--ink); color: #fff; overflow: hidden; }
.testimonials .eyebrow { color: var(--green-vivid); }
.testimonials .section-heading { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }

.testimonial-track {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-l);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,203,119,0.3);
  background: rgba(255,255,255,0.065);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--green-vivid);
  margin-bottom: 20px;
}
.testimonial-stars svg { width: 15px; height: 15px; fill: currentColor; }

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.48;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.92);
  flex-grow: 1;
  margin-bottom: 28px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-product-photo {
  width: 100%;
  border-radius: var(--radius-s);
  margin-bottom: 18px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.testimonial-name { font-weight: 600; font-size: 0.94rem; }
.testimonial-role { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.testimonials-note {
  text-align: center;
  margin-top: 44px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.customer-gallery { margin-top: 60px; }
.customer-gallery-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 22px;
}
.customer-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.customer-gallery-track::-webkit-scrollbar { display: none; }
.customer-gallery-item {
  flex: 0 0 240px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.customer-gallery-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.customer-gallery-info { padding: 16px 18px; }
.customer-gallery-quote { font-size: 0.86rem; color: rgba(255,255,255,0.85); line-height: 1.4; margin-bottom: 10px; }
.customer-gallery-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.customer-gallery-stars { display: flex; gap: 2px; color: var(--green-vivid); }
.customer-gallery-stars svg { width: 11px; height: 11px; fill: currentColor; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { padding: 160px 0; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 20px 0 36px;
  max-width: 460px;
  line-height: 1.5;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink-faint);
}
.contact-detail-value { font-size: 1.02rem; color: var(--ink); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: var(--shadow-m);
}

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-mist);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.optional-tag { color: var(--ink-faint); font-weight: 400; }

.btn-submit { width: 100%; margin-top: 6px; position: relative; }
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.loading .btn-label { opacity: 0.55; }
.btn.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 20px;
}
.form-status.success { color: var(--green-deep); }
.form-status.error { color: #C0392B; }

/* ==========================================================================
   Form pages (Register, Warranty, Sell With ALCO, Share Review)
   ========================================================================== */
.form-section { padding: 60px 0 160px; background: var(--bg); }
.form-section .eyebrow { display: block; }
.form-section .section-heading { margin-bottom: 44px; max-width: 640px; }

.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.form-aside-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 32px;
  margin-bottom: 20px;
}
.form-aside-card:last-child { margin-bottom: 0; }
.form-aside-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.form-aside-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: var(--shadow-m);
}

.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-row select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-mist);
}

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

/* ---------- Photo capture / upload field ---------- */
.photo-field-input { display: none; }

.photo-dropzone {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-s);
  background: var(--bg);
  padding: 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.photo-dropzone:hover,
.photo-dropzone:focus-within { border-color: var(--green); background: var(--green-mist); }

.photo-dropzone-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--radius-s);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint);
}
.photo-dropzone-icon svg { width: 20px; height: 20px; }

.photo-dropzone-text { flex: 1; min-width: 0; }
.photo-dropzone-text strong { display: block; font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.photo-dropzone-text span { font-size: 0.8rem; color: var(--ink-faint); }

.photo-dropzone-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.photo-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.photo-action-btn:hover { background: var(--bg-alt); border-color: var(--ink-faint); }
.photo-action-btn svg { width: 14px; height: 14px; }

.photo-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.photo-preview-item {
  position: relative;
  width: 84px; height: 84px;
  border-radius: var(--radius-s);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
}
.photo-preview-remove:hover { background: var(--ink); }
.photo-preview-remove svg { width: 11px; height: 11px; }

/* ---------- Review step (confirm entered data before submit) ---------- */
.form-card[data-step="review"] .form-card-fields { display: none; }
.form-card:not([data-step="review"]) .review-panel { display: none; }

.review-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-intro {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.review-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.review-row:last-of-type { border-bottom: 1px solid var(--line-soft); }
.review-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink-faint);
  flex-shrink: 0;
}
.review-value {
  font-size: 0.96rem;
  color: var(--ink);
  text-align: right;
  word-break: break-word;
}
.review-value--empty { color: var(--ink-faint); font-style: italic; }

.review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.review-photos img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
}

.review-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.review-actions .btn-edit {
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}
.review-actions .btn-edit:hover { background: var(--bg-alt); }
.review-actions .btn-submit { flex: 1; margin-top: 0; }

/* ---------- Status lookup + progress tracker ---------- */
.status-lookup {
  display: flex;
  gap: 10px;
  max-width: 460px;
}
.status-lookup input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  text-transform: uppercase;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.status-lookup input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-mist);
}
.status-lookup .btn { flex-shrink: 0; }

.status-result {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 36px;
  box-shadow: var(--shadow-m);
}
.status-result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.status-result-ref {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}
.status-result-type {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.status-badge {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  background: var(--green-mist);
  color: var(--green-deep);
  white-space: nowrap;
}
.status-badge--pending {
  background: #EFF1F4;
  color: #5B6472;
}
.status-badge--review {
  background: #FFF4E0;
  color: #B8730A;
}
.status-badge--accepted {
  background: var(--green-mist);
  color: var(--green-deep);
}
.status-badge--rejected {
  background: #FCE8E8;
  color: #C0392B;
}

.status-result-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.status-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}
.status-detail-row[hidden] {
  display: none;
}
.status-detail-label {
  color: var(--ink-faint);
}
.status-detail-value {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.status-message {
  font-size: 0.98rem;
  line-height: 1.55;
  padding: 16px 18px;
  border-radius: var(--radius-m);
  margin-bottom: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  color: var(--ink);
}
.status-message--pending {
  background: #EFF1F4;
  border-color: #DDE1E6;
  color: #4A525C;
}
.status-message--review {
  background: #FFF9EE;
  border-color: #F3DCA6;
  color: #8A5A08;
}
.status-message--accepted {
  background: var(--green-mist);
  border-color: #CDE9CF;
  color: var(--green-deep);
}
.status-message--rejected {
  background: #FDEEEE;
  border-color: #F3C6C3;
  color: #A5322A;
}

.status-track {
  display: flex;
  align-items: flex-start;
}
.status-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.status-step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0;
  z-index: 1;
}
.status-step-dot svg { width: 14px; height: 14px; }
.status-step-line {
  position: absolute;
  top: 15px; left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line-soft);
  z-index: 0;
  transition: background 0.3s var(--ease);
}
.status-step:last-child .status-step-line { display: none; }
.status-step-label {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-faint);
  transition: color 0.3s var(--ease);
}

.status-step.done .status-step-dot { background: var(--green); border-color: var(--green); color: #fff; }
.status-step.done .status-step-line { background: var(--green); }
.status-step.done .status-step-label { color: var(--ink); }
.status-step.current .status-step-dot { background: var(--surface); border-color: var(--green); color: var(--green); }
.status-step.current .status-step-label { color: var(--ink); font-weight: 700; }

.status-error {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 32px;
  text-align: center;
  color: var(--ink-soft);
}
.status-error strong { display: block; color: var(--ink); margin-bottom: 6px; }

/* ---------- Star rating input (share-review.html) ---------- */
.rating-picker {
  display: flex;
  gap: 6px;
}
.rating-star {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--line);
  transition: color 0.2s var(--ease), transform 0.15s var(--ease);
}
.rating-star svg { width: 100%; height: 100%; fill: currentColor; }
.rating-star:hover { transform: scale(1.1); }
.rating-star.filled { color: var(--green-vivid); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 100px 0 0; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.footer-logo { width: 120px; height: 120px; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; margin-bottom: 22px; line-height: 1.55; }

.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--green-vivid); border-color: var(--green-vivid); color: var(--ink); }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: #fff;
  margin-bottom: 6px;
}
.footer-col a, .footer-col span { font-size: 0.9rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--green-vivid); }

.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-tagline { font-family: var(--font-display); font-style: normal; font-weight: 500; color: var(--green-vivid); }

/* ==========================================================================
   Sub-page hero (About, eDukan, forms)
   ========================================================================== */
.page-hero {
  padding: 172px 0 84px;
  background: var(--bg);
  text-align: center;
}
.page-hero .eyebrow { display: block; }
.page-hero-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 860px;
  margin: 0 auto 20px;
}
.page-hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-s);
}
.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn-outline.on-dark:hover {
  border-color: #fff;
  box-shadow: none;
}

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

/* ==========================================================================
   Coverage / benefit grid — used on Warranty & Sell With ALCO pages
   ========================================================================== */
.coverage { padding: 20px 0 120px; background: var(--bg); }
.coverage .eyebrow { display: block; }
.coverage-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.coverage-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}
.coverage-icon {
  width: 40px; height: 40px;
  color: var(--green);
  margin-bottom: 18px;
}
.coverage-icon svg { width: 100%; height: 100%; }
.coverage-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.coverage-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }

/* ==========================================================================
   Interior CTA band
   ========================================================================== */
.interior-cta { padding: 100px 0; background: var(--ink); text-align: center; }
.interior-cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #fff;
  max-width: 620px;
  margin: 0 auto 28px;
  letter-spacing: -0.02em;
}
.interior-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   History / Timeline (About page)
   ========================================================================== */
.history { padding: 160px 0; background: var(--bg); }
.about-lede-block {
  max-width: 720px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-lede-block p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.6; }

.timeline {
  max-width: 720px;
  margin: 72px auto 0;
  padding-left: 40px;
  border-left: 2px solid var(--line-soft);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -46px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--green);
  margin-bottom: 8px;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.timeline-item p { color: var(--ink-soft); font-size: 1rem; max-width: 560px; line-height: 1.55; }

/* ==========================================================================
   Leadership / People
   ========================================================================== */
.people { padding: 130px 0; background: var(--bg); }
.people--alt { background: var(--bg-alt); }

.people-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.people-grid--wide { grid-template-columns: repeat(1, minmax(0, 340px)); justify-content: center; }
.people-grid--five { grid-template-columns: repeat(5, 1fr); }
.people-grid--single { grid-template-columns: minmax(0, 340px); justify-content: center; }

.person-card { text-align: center; }
.person-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-l);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: var(--shadow-s);
}
.person-card:hover .person-photo { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.person-card--compact .person-photo { margin-bottom: 14px; }
.person-photo--sm { border-radius: var(--radius-m); }

.person-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.person-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 10px;
}
.person-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.45; }
.person-card--compact .person-role { margin-bottom: 0; }

.people-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* ==========================================================================
   About / eDukan CTA band
   ========================================================================== */
.about-cta { padding: 110px 0; background: var(--ink); }
.about-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.about-cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #fff;
  max-width: 620px;
  letter-spacing: -0.02em;
}
.about-cta .hero-actions { justify-content: center; }
.about-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.28); }
.about-cta .btn-outline:hover { border-color: #fff; }

/* ==========================================================================
   eDukan page
   ========================================================================== */
.edukan-hero {
  position: relative;
  padding: 172px 0 120px;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
}
.burst-glow--light {
  position: absolute;
  top: 50%; left: 50%;
  width: 1000px; height: 1000px;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation: burst-rotate 140s linear infinite;
}
.burst-glow--light .burst-svg use {
  stroke: var(--green);
  stroke-width: 0.3;
}

.edukan-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.soon-tag--lg {
  font-size: 0.8rem;
  padding: 6px 16px;
  margin-bottom: 24px;
  display: inline-block;
}

.edukan-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.edukan-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-bottom: 38px;
  line-height: 1.5;
}

.notify-form { max-width: 460px; margin: 0 auto; }
.notify-input-row {
  display: flex;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  padding: 6px;
  box-shadow: var(--shadow-s);
}
.notify-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
}
.notify-input-row input:focus { outline: none; }
.notify-input-row .btn { flex-shrink: 0; padding: 12px 24px; }

.edukan-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.edukan-features { padding: 110px 0 140px; background: var(--bg-alt); }

/* ==========================================================================
   Find Nearest Store — geolocation widget (edukan.html)
   ========================================================================== */
.locate-widget { max-width: 480px; margin: 0 auto; }

.locate-idle .btn {
  width: 100%;
}
.locate-hint {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  line-height: 1.5;
}

.locate-result-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 32px 30px;
  box-shadow: var(--shadow-m);
  text-align: left;
}
.locate-result-card .branch-tag { margin-bottom: 14px; }
.locate-result-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.locate-distance {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.locate-result-card .branch-modal-address { margin-bottom: 24px; }

.locate-result-actions { flex-direction: row; }
.locate-result-actions .btn { flex: 1; }

.locate-other-branches {
  margin-top: 18px;
  text-align: left;
}
.locate-other-branches summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 4px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.locate-other-branches summary::-webkit-details-marker { display: none; }
.locate-other-branches summary::before {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: rotate(-45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.locate-other-branches[open] summary::before { transform: rotate(45deg); }

.locate-branch-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.locate-branch-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-s);
  font-size: 0.88rem;
}
.locate-branch-list .locate-li-name { color: var(--ink); font-weight: 600; }
.locate-branch-list .locate-li-distance { color: var(--ink-faint); flex-shrink: 0; white-space: nowrap; }

.locate-error {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 26px 28px;
  text-align: left;
}
.locate-error p:first-child {
  color: #B4433B;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.locate-error .locate-hint { margin-top: 6px; }

.locate-branch-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.locate-branch-grid .branch-card { margin: 0; }

@media (max-width: 620px) {
  .locate-branch-grid { grid-template-columns: 1fr; }
  .locate-result-actions { flex-direction: column; }
  .locate-result-card { padding: 26px 22px; }
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.85);
  backdrop-filter: blur(12px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-m);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease), visibility 0.35s;
  z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-deep); }
.back-to-top svg { width: 17px; height: 17px; }

/* ==========================================================================\n+   Floating chat button\n+   ========================================================================== */
.chat-alco {
  position: fixed;
  right: 28px;
  bottom: 84px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-m);
  animation: chat-alco-pulse 3s ease-in-out infinite;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  z-index: 500;
}
.chat-alco:hover {
  background: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-l);
}
.chat-alco svg { width: 18px; height: 18px; flex-shrink: 0; }
@keyframes chat-alco-pulse {
  0%, 70%, 100% { box-shadow: var(--shadow-m); }
  35% { box-shadow: 0 0 0 8px rgba(46, 125, 66, 0.14), var(--shadow-m); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  .nav.compact .nav-inner {
    max-width: 220px;
    padding: 8px 10px 8px 16px;
  }
  .nav.compact .nav-logo-img { width: 28px; height: 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual-card { left: 16px; bottom: -24px; }

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

  .mv-inner { grid-template-columns: 1fr; gap: 40px; }
  .mv-divider { display: none; }

  .branches-layout { grid-template-columns: 1fr; }
  .branch-map { min-height: 320px; }
  .branch-map iframe { min-height: 320px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }

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

  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid--wide { grid-template-columns: minmax(0, 340px); }
  .people-grid--five { grid-template-columns: repeat(3, 1fr); }

  .timeline { padding-left: 32px; }
  .timeline-marker { left: -38px; }

  .testimonial-track { grid-template-columns: repeat(2, 1fr); }
  .lang-toggle { display: none; }
}

@media (max-width: 620px) {
  .nav-inner { padding: 0 20px; }
  .nav.compact .nav-inner { padding: 7px 8px 7px 14px; }

  .section-inner { padding: 0 20px; }
  .about, .products, .why, .mv, .branches, .contact { padding: 90px 0; }
  .careers-empty-state { padding: 40px 24px; margin-top: 40px; }

  .hero { padding-top: 100px; }
  .hero-content { padding: 0 20px; }
  .hero-headline { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; }

  .section-heading { font-size: clamp(1.7rem, 7vw, 2.1rem); }

  .about-visual-card { padding: 16px 18px; bottom: -18px; }
  .about-visual-number { font-size: 1.9rem; }

  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card { padding: 28px 24px; }

  .why-grid { grid-template-columns: 1fr; gap: 34px; }

  .mv { padding: 76px 0; }
  .mv-text { font-size: 1.2rem; }

  .branch-card { padding: 20px; }

  .contact-form { padding: 28px 22px; }
  .contact-grid { gap: 40px; }

  .form-card { padding: 28px 22px; }
  .form-layout { gap: 40px; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
  .photo-dropzone { flex-wrap: wrap; }
  .photo-dropzone-actions { width: 100%; }
  .photo-action-btn { flex: 1; justify-content: center; }
  .review-row { flex-direction: column; gap: 4px; }
  .review-value { text-align: left; }
  .review-photos { justify-content: flex-start; }
  .review-actions { flex-direction: column; }
  .review-actions .btn-edit { width: 100%; }
  .status-lookup { flex-direction: column; max-width: none; }
  .status-result { padding: 28px 22px; }
  .status-result-header { flex-direction: column; }
  .status-track { flex-direction: column; align-items: flex-start; gap: 20px; }
  .status-step { flex-direction: row; text-align: left; gap: 14px; width: 100%; }
  .status-step-line { display: none; }
  .status-step-label { margin-top: 0; }
  .form-section { padding: 40px 0 110px; }
  .coverage { padding: 0 0 76px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 16px; }
  .coverage-card { padding: 28px 24px; }
  .interior-cta { padding: 64px 0; }
  .interior-cta-actions { flex-direction: column; width: 100%; }
  .interior-cta-actions .btn { width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 22px 0; }

  .burst-glow { width: 440px; height: 440px; right: -30%; opacity: 0.3; }

  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .chat-alco { right: 20px; bottom: 76px; padding: 11px 15px; }

  .page-hero { padding: 134px 0 64px; }
  .history, .people, .edukan-features { padding: 76px 0; }
  .people-grid--five { grid-template-columns: repeat(2, 1fr); }
  .about-cta { padding: 76px 0; }

  .testimonials { padding: 76px 0; }
  .testimonial-track { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 30px 26px; }

  .timeline { padding-left: 28px; }
  .timeline-marker { left: -34px; }
  .timeline-item { padding-bottom: 38px; }

  .edukan-hero { padding: 134px 0 84px; }
  .notify-input-row { flex-direction: column; border-radius: var(--radius-m); padding: 10px; }
  .notify-input-row input { padding: 10px 12px; text-align: center; }
  .notify-input-row .btn { width: 100%; }
}

@media (max-width: 380px) {
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-logo-img { width: 38px; height: 38px; }
  .nav-logo-text { font-size: 1.08rem; }

  .hero-headline { font-size: 1.9rem; }
  .hero-sub { font-size: 0.96rem; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }

  .eyebrow { font-size: 0.74rem; }

  .about-visual-card { left: 10px; padding: 14px 16px; }

  .product-card { padding: 24px 20px; }
  .product-icon { width: 36px; height: 36px; margin-bottom: 16px; }

  .contact-form { padding: 24px 18px; }
  .form-row input, .form-row textarea { padding: 11px 14px; font-size: 0.92rem; }

  .people-grid, .people-grid--wide, .people-grid--five { grid-template-columns: 1fr; }
  .person-photo { max-width: 220px; margin-left: auto; margin-right: auto; }

  .page-hero-heading { font-size: 1.9rem; }
}
/* ==========================================================================
   Executive Profiles (executives.html)
   ========================================================================== */
.person-card-link { display: block; text-decoration: none; color: inherit; }
.person-view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.person-view-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.person-card:hover .person-view-link svg { transform: translateX(3px); }

.exec-profiles { padding: 60px 0 130px; background: var(--bg); }
.exec-profiles--selection .exec-profile { display: none; }
.exec-profiles--selection .exec-profile.is-selected { display: grid; }
.exec-profile {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line-soft, rgba(0,0,0,0.08));
  scroll-margin-top: 120px;
}
.exec-profile:first-child { border-top: none; }
.exec-profile-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-l);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  box-shadow: var(--shadow-s);
}
.exec-profile-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.exec-profile-role {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
}
.exec-profile-bio { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; max-width: 620px; margin-bottom: 24px; }

.exec-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 12px;
}
.exec-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-m);
  background: var(--bg-alt);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.exec-contact-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-s); background: var(--green-mist); }
.exec-contact-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green);
  color: #fff;
}
.exec-contact-icon svg { width: 16px; height: 16px; }
.exec-contact-text { display: flex; flex-direction: column; min-width: 0; }
.exec-contact-text .exec-contact-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); }
.exec-contact-text .exec-contact-value { font-size: 0.9rem; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.exec-contact-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-style: italic;
}

@media (max-width: 720px) {
  .exec-profile { grid-template-columns: 1fr; gap: 20px; }
  .exec-profile-photo { max-width: 220px; margin: 0 auto; }
  .exec-profile-body { text-align: center; }
  .exec-contact-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ==========================================================================
   Downloads page
   ========================================================================== */
.downloads-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.download-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border-radius: var(--radius-m);
  padding: 28px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.download-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-s);
  background: var(--green-mist);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.download-icon svg { width: 20px; height: 20px; }
.download-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; letter-spacing: -0.015em; }
.download-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.download-meta { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 14px; }
.download-card .btn { align-self: flex-start; }

@media (max-width: 900px) {
  .downloads-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .downloads-grid { grid-template-columns: 1fr; }
}