
/* ============================================================
   GOLD MOHUR OVERSEAS — Enterprise Design System v2
   Apple-level spacing, cards, typography, footer
   Brand: #1d3d3e (teal) · #a6ff79 (lime) · Inter
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gmo-primary:    #1d3d3e;
  --gmo-accent:     #a6ff79;
  --gmo-accent-dk:  #8fef60;
  --gmo-text:       #1a2a2b;
  --gmo-muted:      #4a6b6c;
  --gmo-border:     rgba(29,61,62,.09);
  --gmo-bg-soft:    #f5f7f7;
  --gmo-white:      #ffffff;
  --gmo-trans:      all .22s cubic-bezier(.4,0,.2,1);
  --gmo-radius:     14px;
  --gmo-shadow-sm:  0 1px 3px rgba(29,61,62,.08);
  --gmo-shadow-md:  0 8px 24px rgba(29,61,62,.11);
  --gmo-shadow-lg:  0 18px 48px rgba(29,61,62,.14);
  --gmo-max-w:      1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
body { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* ── Container ──────────────────────────────────────────────── */
.gmo-container {
  max-width: var(--gmo-max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width:768px) { .gmo-container { padding: 0 20px; } }

/* ── Section spacing ────────────────────────────────────────── */
.gmo-section         { padding: 88px 0; }
.gmo-section--soft   { padding: 88px 0; background: var(--gmo-bg-soft); }
.gmo-section--dark   { padding: 80px 0; background: var(--gmo-primary); }
@media (max-width:768px) {
  .gmo-section, .gmo-section--soft, .gmo-section--dark { padding: 56px 0; }
}

/* ── Section header ─────────────────────────────────────────── */
.gmo-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.gmo-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gmo-muted);
  margin-bottom: 10px;
}
.gmo-section-head h2 {
  font-size: 38px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
  letter-spacing: -.025em !important;
  line-height: 1.18 !important;
  margin: 0 0 14px !important;
}
.gmo-section-head p {
  font-size: 17px !important;
  color: var(--gmo-muted) !important;
  max-width: 540px;
  margin: 0 auto !important;
  line-height: 1.65 !important;
}
@media (max-width:640px) { .gmo-section-head h2 { font-size: 28px !important; } }

/* ── Buttons ────────────────────────────────────────────────── */
.gmo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gmo-accent);
  color: var(--gmo-primary) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: var(--gmo-trans);
  border: none;
  cursor: pointer;
}
.gmo-btn:hover { background: var(--gmo-accent-dk); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(166,255,121,.28); }

.gmo-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--gmo-primary) !important;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  border: 1.5px solid var(--gmo-primary);
  text-decoration: none !important;
  transition: var(--gmo-trans);
}
.gmo-btn-outline:hover { background: var(--gmo-primary); color: #fff !important; }

.gmo-btn-center { display: flex; justify-content: center; margin-top: 48px; }

/* ── HERO SECTION ───────────────────────────────────────────── */
.gmo-hero {
  padding: 80px 0 72px;
  background: var(--gmo-white);
}
.gmo-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gmo-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gmo-muted);
  margin-bottom: 16px;
}
.gmo-hero h1 {
  font-size: 52px !important;
  font-weight: 900 !important;
  color: var(--gmo-primary) !important;
  line-height: 1.1 !important;
  letter-spacing: -.03em !important;
  margin: 0 0 20px !important;
}
.gmo-hero-desc {
  font-size: 17px;
  color: var(--gmo-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.gmo-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gmo-hero-trust {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(29,61,62,.5);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.gmo-hero-trust span::before { content: "·  "; }
.gmo-hero-trust span:first-child::before { content: ""; }
.gmo-hero-img {
  background: var(--gmo-bg-soft);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gmo-shadow-md);
}
.gmo-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .gmo-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .gmo-hero h1 { font-size: 38px !important; }
  .gmo-hero-img { display: none; }
}

/* ── STATS STRIP ────────────────────────────────────────────── */
.gmo-stats-strip {
  background: var(--gmo-primary);
  padding: 0;
}
.gmo-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--gmo-max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.gmo-stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.gmo-stat-item:last-child { border-right: none; }
.gmo-stat-number {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--gmo-accent);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.gmo-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}
@media (max-width:768px) {
  .gmo-stats-grid { grid-template-columns: repeat(2,1fr); padding: 0 20px; }
  .gmo-stat-item:nth-child(2) { border-right: none; }
  .gmo-stat-item { padding: 32px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .gmo-stat-item:last-child, .gmo-stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .gmo-stat-number { font-size: 36px; }
}

/* ── PRODUCTS GRID ─────────────────────────────────────────── */
.gmo-products-section {
  padding: 88px 0;
  background: var(--gmo-white);
}
.gmo-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}
.gmo-product-card {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: var(--gmo-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.gmo-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gmo-shadow-lg);
  border-color: transparent;
}
.gmo-product-figure {
  margin: 0;
  background: var(--gmo-bg-soft);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}
.gmo-product-figure img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.gmo-product-card:hover .gmo-product-figure img { transform: scale(1.06); }
.gmo-product-info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gmo-product-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gmo-muted);
  margin-bottom: 6px;
}
.gmo-product-name {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
}
.gmo-product-desc {
  font-size: 13px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.65 !important;
  margin: 0 0 16px !important;
  flex: 1;
}
.gmo-product-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: var(--gmo-primary) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 2px solid var(--gmo-accent) !important;
  padding-bottom: 1px !important;
  transition: var(--gmo-trans) !important;
  width: fit-content;
}
.gmo-product-link:hover { color: #0a1f20 !important; border-color: var(--gmo-accent-dk) !important; }
@media (max-width:900px)  { .gmo-products-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media (max-width:540px)  { .gmo-products-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── WHY CHOOSE SECTION ─────────────────────────────────────── */
.gmo-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.gmo-why-card {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: var(--gmo-radius);
  padding: 32px 28px;
  transition: var(--gmo-trans);
}
.gmo-why-card:hover { box-shadow: var(--gmo-shadow-md); transform: translateY(-3px); }
.gmo-why-icon {
  width: 48px;
  height: 48px;
  background: rgba(166,255,121,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.gmo-why-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 8px !important;
}
.gmo-why-card p {
  font-size: 14px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
@media (max-width:768px) { .gmo-why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px) { .gmo-why-grid { grid-template-columns: 1fr; } }

/* ── FACTORY SECTION ────────────────────────────────────────── */
.gmo-factory-section {
  padding: 0;
  background: var(--gmo-primary);
  overflow: hidden;
}
.gmo-factory-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.gmo-factory-img {
  position: relative;
  overflow: hidden;
}
.gmo-factory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gmo-factory-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gmo-factory-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.gmo-factory-content h2 {
  font-size: 34px !important;
  font-weight: 800 !important;
  color: var(--gmo-white) !important;
  letter-spacing: -.025em !important;
  line-height: 1.2 !important;
  margin: 0 0 16px !important;
}
.gmo-factory-content p {
  font-size: 15px !important;
  color: rgba(255,255,255,.7) !important;
  line-height: 1.7 !important;
  margin: 0 0 28px !important;
}
@media (max-width:768px) {
  .gmo-factory-inner { grid-template-columns: 1fr; }
  .gmo-factory-img { height: 220px; }
  .gmo-factory-content { padding: 40px 24px; }
  .gmo-factory-content h2 { font-size: 26px !important; }
}

/* ── EXPORT / GLOBAL SECTION ────────────────────────────────── */
.gmo-export-section { padding: 88px 0; background: var(--gmo-white); }
.gmo-export-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gmo-export-content h2 {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
  letter-spacing: -.025em !important;
  line-height: 1.2 !important;
  margin: 0 0 16px !important;
}
.gmo-export-content p {
  font-size: 15px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.7 !important;
  margin: 0 0 24px !important;
}
.gmo-country-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
}
.gmo-country-item {
  font-size: 14px;
  color: var(--gmo-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.gmo-country-item::before { content: "📍"; font-size: 12px; }
.gmo-export-map img { border-radius: 12px; box-shadow: var(--gmo-shadow-md); }
@media (max-width:768px) {
  .gmo-export-inner { grid-template-columns: 1fr; gap: 40px; }
  .gmo-export-map { display: none; }
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.gmo-cta-banner {
  background: var(--gmo-primary);
  padding: 72px 0;
  text-align: center;
}
.gmo-cta-banner h2 {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--gmo-white) !important;
  letter-spacing: -.02em !important;
  margin: 0 0 12px !important;
}
.gmo-cta-banner p {
  font-size: 17px !important;
  color: rgba(255,255,255,.7) !important;
  margin: 0 0 32px !important;
  line-height: 1.6 !important;
}
.gmo-cta-banner .gmo-btn { font-size: 16px; padding: 15px 32px; }
.gmo-cta-contact {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.gmo-footer-wrap {
  background: var(--gmo-primary);
  border-top: 1px solid rgba(255,255,255,.06);
}
.gmo-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 1.5fr;
  gap: 48px;
  max-width: var(--gmo-max-w);
  margin: 0 auto;
  padding: 72px 32px 56px;
}
.gmo-footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--gmo-white);
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.gmo-footer-about {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 268px;
}
.gmo-footer-cin {
  font-size: 10.5px;
  color: rgba(255,255,255,.3);
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.gmo-footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 22px;
  display: block;
}
.gmo-footer-nav { list-style: none; margin: 0; padding: 0; }
.gmo-footer-nav li { margin-bottom: 12px; }
.gmo-footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,.62) !important;
  text-decoration: none;
  transition: color .15s;
}
.gmo-footer-nav a:hover { color: var(--gmo-accent) !important; }
.gmo-footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  align-items: flex-start;
  line-height: 1.5;
}
.gmo-footer-contact-ico { flex-shrink: 0; margin-top: 1px; }
.gmo-footer-cta-btn {
  display: inline-block;
  margin-top: 22px;
  background: var(--gmo-accent);
  color: var(--gmo-primary) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: var(--gmo-trans);
}
.gmo-footer-cta-btn:hover { background: var(--gmo-accent-dk); transform: translateY(-1px); }

/* Footer divider */
.gmo-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0;
}
.gmo-footer-bottom {
  max-width: var(--gmo-max-w);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.gmo-footer-bottom a { color: rgba(255,255,255,.45) !important; text-decoration: none; }
.gmo-footer-bottom a:hover { color: var(--gmo-accent) !important; }

/* Override Astra footer widget styles */
footer.site-footer, #colophon,
.site-above-footer-wrap,
.site-below-footer-wrap,
.ast-builder-grid-row-has-sides,
.footer-adv-overlay { background: var(--gmo-primary) !important; }

.widget-title,
.footer-adv-widget .widget-title {
  color: rgba(255,255,255,.38) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  border: none !important;
  margin-bottom: 18px !important;
}

.footer-adv-widget *, .widget_text *,
.widget_custom_html * { color: inherit; }

/* Astra copyright bar */
.ast-footer-copyright,
.ast-small-footer,
.site-below-footer-wrap .ast-builder-grid-row {
  background: rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(255,255,255,.05) !important;
}
.ast-footer-copyright, .ast-footer-copyright p,
.ast-footer-copyright a {
  font-size: 12px !important;
  color: rgba(255,255,255,.4) !important;
}
.ast-footer-copyright a:hover { color: var(--gmo-accent) !important; }
.ast-footer-copyright a[href*="wpastra"] { display: none !important; }
.ast-footer-copyright a[href*="wordpress"] { display: none !important; }

/* ── HEADER ─────────────────────────────────────────────────── */
.main-header-bar, #masthead, .ast-primary-header-bar {
  background: var(--gmo-white) !important;
  border-bottom: 1px solid var(--gmo-border) !important;
  padding: 0 !important;
}
.ast-container { max-width: var(--gmo-max-w) !important; padding: 0 32px !important; }

/* Site title */
.ast-site-identity .site-title,
.ast-site-identity .site-title a,
.site-branding .site-title,
header .site-title {
  display: inline-block !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
  letter-spacing: -.015em !important;
  text-decoration: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.site-title a:hover { color: var(--gmo-accent) !important; }

/* Nav links */
.ast-builder-menu-1 .ast-nav-menu > li > a,
.main-navigation ul li a,
.ast-nav-menu li a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--gmo-primary) !important;
  letter-spacing: -.005em !important;
  padding: 4px 14px !important;
}
.ast-builder-menu-1 .ast-nav-menu > li > a:hover,
.main-navigation ul li a:hover,
.ast-nav-menu li.current-menu-item > a {
  color: var(--gmo-accent) !important;
}

/* Header CTA button */
.ast-header-button-1 .ast-custom-button-link { text-decoration: none !important; }
.ast-header-button-1 .ast-custom-button {
  background: var(--gmo-accent) !important;
  color: var(--gmo-primary) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  transition: var(--gmo-trans) !important;
  display: inline-block !important;
}
.ast-header-button-1 .ast-custom-button:hover {
  background: var(--gmo-accent-dk) !important;
  transform: translateY(-1px) !important;
}
.ast-header-button-1 .menu-link { display: none !important; }

/* Nav centered */
.ast-grid-center-col-layout .site-header-primary-section-center {
  flex: 1 1 auto !important;
  justify-content: center !important;
  display: flex !important;
}
.site-header-primary-section-center .ast-nav-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
}

/* ── GLOBAL PAGE CONTENT ─────────────────────────────────────── */
.entry-content, .page-content {
  padding: 0 !important;
}

/* Remove Astra page title banner */
.ast-archive-description, .ast-breadcrumbs-wrapper { display: none !important; }

/* ── SIDEBAR REMOVAL ─────────────────────────────────────────── */
.post-type-product .site-secondary,
.page-template-default .site-secondary,
.page .site-secondary { display: none !important; }
.post-type-product .content-area,
.page .content-area { width: 100% !important; max-width: 100% !important; }

/* ── PRODUCT SINGLE PAGE ─────────────────────────────────────── */
.single-product-wrap { padding: 56px 0; }

/* ── BLOG / ARCHIVE ──────────────────────────────────────────── */
.ast-article-post { border-radius: 12px !important; overflow: hidden !important; box-shadow: var(--gmo-shadow-sm) !important; }

/* ── CONTACT FORM 7 ──────────────────────────────────────────── */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100% !important;
  border: 1.5px solid var(--gmo-border) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  font-family: "Inter", sans-serif !important;
  background: var(--gmo-white) !important;
  transition: border-color .2s !important;
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
  border-color: var(--gmo-primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(29,61,62,.08) !important;
}
.wpcf7 input[type="submit"] {
  background: var(--gmo-accent) !important;
  color: var(--gmo-primary) !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 13px 28px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-size: 15px !important;
  transition: var(--gmo-trans) !important;
}
.wpcf7 input[type="submit"]:hover { background: var(--gmo-accent-dk) !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width:640px) {
  .gmo-hero-actions { flex-direction: column; align-items: flex-start; }
  .gmo-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 20px 40px; }
  .gmo-footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
}
@media (max-width:440px) {
  .gmo-footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .main-header-bar, footer.site-footer, .gmo-cta-banner { display: none !important; }
}



/* ═══════════════════════════════════════════════════════════════
   SUPPLEMENT — BEM aliases + new components
   Appended to Design System v2
   ═══════════════════════════════════════════════════════════════ */

/* ── Site wrapper (removes Astra default page padding) ──────── */
.gmo-site-wrapper { overflow-x: hidden; }

/* ── Section variants ────────────────────────────────────────── */
.gmo-section--light { background: var(--gmo-bg-soft); }
.gmo-section--teal  { background: var(--gmo-primary); }

/* ── Section header (BEM) aliases ───────────────────────────── */
.gmo-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.gmo-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gmo-muted);
  margin-bottom: 10px;
  display: block;
}
.gmo-section__title {
  font-size: 38px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
  letter-spacing: -.025em !important;
  line-height: 1.18 !important;
  margin: 0 0 14px !important;
}
.gmo-section__sub {
  font-size: 17px !important;
  color: var(--gmo-muted) !important;
  max-width: 560px;
  margin: 0 auto !important;
  line-height: 1.65 !important;
}
.gmo-section__footer {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .gmo-section__title { font-size: 28px !important; }
}

/* ── HERO (BEM aliases) ──────────────────────────────────────── */
.gmo-hero {
  padding: 80px 0 72px;
  background: var(--gmo-white);
}
.gmo-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gmo-hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gmo-muted);
  margin-bottom: 16px;
}
.gmo-hero__headline {
  font-size: 52px !important;
  font-weight: 900 !important;
  color: var(--gmo-primary) !important;
  line-height: 1.08 !important;
  letter-spacing: -.03em !important;
  margin: 0 0 22px !important;
}
.gmo-hero__sub {
  font-size: 17px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.65 !important;
  margin: 0 0 32px !important;
  max-width: 480px;
}
.gmo-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gmo-hero__visual {
  background: var(--gmo-bg-soft);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gmo-shadow-md);
}
.gmo-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .gmo-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .gmo-hero__headline { font-size: 36px !important; }
  .gmo-hero__visual { display: none; }
}

/* ── BUTTON VARIANTS ─────────────────────────────────────────── */
.gmo-btn--primary {
  background: var(--gmo-accent) !important;
  color: var(--gmo-primary) !important;
  font-weight: 700;
}
.gmo-btn--primary:hover {
  background: var(--gmo-accent-dk) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166,255,121,.28);
}
.gmo-btn--ghost {
  background: transparent !important;
  color: var(--gmo-primary) !important;
  border: 1.5px solid rgba(29,61,62,.3) !important;
  font-weight: 600;
}
.gmo-btn--ghost:hover {
  border-color: var(--gmo-primary) !important;
  background: rgba(29,61,62,.05) !important;
}
.gmo-btn--ghost-dark {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.4) !important;
  font-weight: 600;
}
.gmo-btn--ghost-dark:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,.1) !important;
}
.gmo-btn--outline {
  background: transparent !important;
  color: var(--gmo-primary) !important;
  border: 1.5px solid var(--gmo-primary) !important;
  font-weight: 600;
}
.gmo-btn--outline:hover {
  background: var(--gmo-primary) !important;
  color: #fff !important;
}
.gmo-btn--accent {
  background: var(--gmo-accent) !important;
  color: var(--gmo-primary) !important;
  font-weight: 700;
}
.gmo-btn--lg {
  font-size: 16px !important;
  padding: 15px 34px !important;
}

/* ── PRODUCT CARD (BEM aliases) ──────────────────────────────── */
.gmo-product-card__link {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gmo-product-card__figure {
  margin: 0;
  background: var(--gmo-bg-soft);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}
.gmo-product-card__figure img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.gmo-product-card:hover .gmo-product-card__figure img { transform: scale(1.06); }
.gmo-product-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gmo-product-card__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
}
.gmo-product-card__desc {
  font-size: 13px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.65 !important;
  margin: 0 0 16px !important;
  flex: 1;
}
.gmo-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gmo-primary) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gmo-accent);
  padding-bottom: 1px;
  width: fit-content;
  transition: var(--gmo-trans);
}
.gmo-product-card:hover .gmo-product-card__cta { border-color: var(--gmo-accent-dk); }

/* ── WHY CARDS (BEM aliases) ─────────────────────────────────── */
.gmo-why-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(166,255,121,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.gmo-why-card__icon svg { width: 24px; height: 24px; }
.gmo-why-card__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 8px !important;
}
.gmo-why-card__desc {
  font-size: 14px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ── FACTORY (BEM aliases) ───────────────────────────────────── */
.gmo-factory__image {
  position: relative;
  overflow: hidden;
}
.gmo-factory__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gmo-factory__content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gmo-factory__list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.gmo-factory__list li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.gmo-factory__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gmo-accent);
}
@media (max-width:768px) {
  .gmo-factory__content { padding: 40px 24px; }
}

/* ── EXPORT SECTION (BEM aliases) ────────────────────────────── */
.gmo-export__content h2 {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
}
.gmo-export__map { border-radius: 16px; overflow: hidden; box-shadow: var(--gmo-shadow-md); }
.gmo-export__map img { width: 100%; border-radius: 12px; }
.gmo-export-regions { margin: 24px 0 0; display: flex; flex-direction: column; gap: 16px; }
.gmo-export-region {
  background: var(--gmo-bg-soft);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gmo-export-region strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--gmo-primary);
}
.gmo-export-region span {
  font-size: 13px;
  color: var(--gmo-muted);
}
@media (max-width:768px) {
  .gmo-export-inner { grid-template-columns: 1fr; }
  .gmo-export__map { display: none; }
}

/* ── CTA BANNER (BEM) ────────────────────────────────────────── */
.gmo-cta-banner {
  background: var(--gmo-primary);
  padding: 72px 0;
}
.gmo-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.gmo-cta-banner__title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--gmo-white) !important;
  letter-spacing: -.025em !important;
  margin: 0 0 10px !important;
  line-height: 1.2 !important;
}
.gmo-cta-banner__sub {
  font-size: 15px !important;
  color: rgba(255,255,255,.7) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  max-width: 480px;
}
.gmo-cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width:768px) {
  .gmo-cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .gmo-cta-banner__title { font-size: 24px !important; }
}

/* ── FOOTER (Apple-level) ────────────────────────────────────── */
.gmo-footer-top {
  background: #0b1f20;
  padding: 0;
}
.gmo-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 1.5fr;
  gap: 48px;
  padding: 64px 32px 56px;
  max-width: var(--gmo-max-w);
  margin: 0 auto;
}
.gmo-footer-col { display: flex; flex-direction: column; }
.gmo-footer-brand { margin-bottom: 20px; }
.gmo-footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.015em;
  line-height: 1;
}
.gmo-footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0 0 14px;
}
.gmo-footer-cin {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin: 0 0 20px;
}
.gmo-footer-cin strong { color: rgba(255,255,255,.5); }
.gmo-footer-social { display: flex; gap: 12px; margin-top: 4px; }
.gmo-footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6) !important;
  text-decoration: none !important;
  transition: var(--gmo-trans);
}
.gmo-footer-social__link:hover {
  border-color: var(--gmo-accent);
  color: var(--gmo-accent) !important;
}
.gmo-footer-col__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 20px;
}
.gmo-footer-nav { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.gmo-footer-nav li { margin-bottom: 12px !important; }
.gmo-footer-nav a {
  font-size: 14px !important;
  color: rgba(255,255,255,.65) !important;
  text-decoration: none !important;
  transition: var(--gmo-trans);
}
.gmo-footer-nav a:hover { color: var(--gmo-accent) !important; }
.gmo-footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 20px;
}
.gmo-footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.5;
}
.gmo-footer-address p svg { flex-shrink: 0; margin-top: 2px; }
.gmo-footer-address a {
  color: rgba(255,255,255,.7) !important;
  text-decoration: none !important;
  transition: var(--gmo-trans);
}
.gmo-footer-address a:hover { color: var(--gmo-accent) !important; }
.gmo-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gmo-accent) !important;
  text-decoration: none !important;
  transition: var(--gmo-trans);
  border-bottom: 1px solid rgba(166,255,121,.3);
  padding-bottom: 2px;
  width: fit-content;
}
.gmo-footer-cta:hover { border-color: var(--gmo-accent); }
/* Astra footer widget area — remove padding */
footer.site-footer .widget-area,
footer.site-footer .footer-widget-area { padding: 0 !important; }
footer.site-footer .ast-footer-widget-area { padding: 0 !important; max-width: 100% !important; }
footer .gmo-footer-top { width: 100%; }
/* Footer copyright bar */
.ast-footer-copyright { background: #0b1f20; border-top: 1px solid rgba(255,255,255,.08); }
.ast-footer-copyright .ast-copyright-text { color: rgba(255,255,255,.35) !important; font-size: 12px; }
@media (max-width:1024px) { .gmo-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 20px 40px; } }
@media (max-width:480px)  { .gmo-footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; } }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.gmo-page-hero {
  padding: 72px 0 56px;
  background: var(--gmo-primary);
  text-align: center;
}
.gmo-page-hero .gmo-section__eyebrow { color: rgba(255,255,255,.5); }
.gmo-page-hero__title {
  font-size: 48px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: -.03em !important;
  line-height: 1.1 !important;
  margin: 8px 0 16px !important;
}
.gmo-page-hero__sub {
  font-size: 17px !important;
  color: rgba(255,255,255,.7) !important;
  line-height: 1.65 !important;
  max-width: 560px;
  margin: 0 auto !important;
}
@media (max-width:640px) {
  .gmo-page-hero__title { font-size: 32px !important; }
  .gmo-page-hero { padding: 56px 0 40px; }
}

/* ── CLIENTS / REGIONS GRID ──────────────────────────────────── */
.gmo-regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.gmo-region-card {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: var(--gmo-radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--gmo-trans);
}
.gmo-region-card:hover {
  box-shadow: var(--gmo-shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.gmo-region-card__flag {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.gmo-region-card__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 6px !important;
}
.gmo-region-card__desc {
  font-size: 13px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
@media (max-width:900px) { .gmo-regions-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:540px) { .gmo-regions-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.gmo-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gmo-testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--gmo-radius);
  padding: 32px 28px;
}
.gmo-testimonial-card__quote {
  font-size: 15px !important;
  color: rgba(255,255,255,.8) !important;
  line-height: 1.75 !important;
  margin: 0 0 24px !important;
  font-style: italic;
}
.gmo-testimonial-card__author { display: flex; flex-direction: column; gap: 3px; }
.gmo-testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.gmo-testimonial-card__location {
  font-size: 12px;
  color: var(--gmo-accent);
  font-weight: 500;
}
@media (max-width:900px) { .gmo-testimonials-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── Print / admin hide ──────────────────────────────────────── */
@media print { .gmo-hero__visual, .gmo-export__map { display: none !important; } }



/* ── FOOTER WIDTH FIXES ──────────────────────────────────────── */
/* Force Astra footer widget area to be full width */
footer.site-footer,
footer.site-footer .ast-footer-row,
footer.site-footer .ast-footer-above-row,
footer.site-footer .ast-footer-widget-area,
footer.site-footer .ast-footer-widget-area .widget,
footer.site-footer .footer-widget-area,
footer.site-footer .site-footer-inner,
footer.site-footer .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Override gmo-footer-grid gap and layout */
.gmo-footer-grid {
  gap: 24px !important;
  grid-template-columns: 1.8fr 1.1fr 1.2fr 1.4fr !important;
}
/* Fix footer nav product names - allow them to have proper width */
.gmo-footer-col:nth-child(3) .gmo-footer-nav a {
  white-space: nowrap;
}
/* Tighten footer column heading letter spacing */
.gmo-footer-col__heading {
  white-space: nowrap;
}
/* Footer top padding tweak */
.gmo-footer-top { display: block !important; width: 100% !important; }
.widget.widget_text { padding: 0 !important; margin: 0 !important; }
.footer-widget-area aside { padding: 0 !important; margin: 0 !important; }



/* ── FOOTER WIDTH FIXES ──────────────────────────────────────── */
/* Force Astra footer widget area to be full width */
footer.site-footer,
footer.site-footer .ast-footer-row,
footer.site-footer .ast-footer-above-row,
footer.site-footer .ast-footer-widget-area,
footer.site-footer .ast-footer-widget-area .widget,
footer.site-footer .footer-widget-area,
footer.site-footer .site-footer-inner,
footer.site-footer .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Override gmo-footer-grid gap and layout */
.gmo-footer-grid {
  gap: 24px !important;
  grid-template-columns: 1.8fr 1.1fr 1.2fr 1.4fr !important;
}
/* Fix footer nav product names - allow them to have proper width */
.gmo-footer-col:nth-child(3) .gmo-footer-nav a {
  white-space: nowrap;
}
/* Tighten footer column heading letter spacing */
.gmo-footer-col__heading {
  white-space: nowrap;
}
/* Footer top padding tweak */
.gmo-footer-top { display: block !important; width: 100% !important; }
.widget.widget_text { padding: 0 !important; margin: 0 !important; }
.footer-widget-area aside { padding: 0 !important; margin: 0 !important; }



/* ── FOOTER FULL-WIDTH OVERRIDE ─────────────────────────────── */
/* Force above-footer row to single full-width column */
.site-above-footer-wrap .site-above-footer-inner-wrap.ast-builder-grid-row,
.ast-builder-grid-row-2-equal .site-above-footer-inner-wrap {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
.site-above-footer-wrap .ast-builder-layout-element,
.site-above-footer-inner-wrap > div,
.site-above-footer-inner-wrap > aside {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* Ensure gmo-footer-grid gets proper space */
.site-above-footer-wrap { width: 100% !important; max-width: 100% !important; padding: 0 !important; }
.site-above-footer-wrap .ast-container { max-width: 100% !important; padding: 0 !important; }


/* Hide default WP page/post titles — we use .gmo-page-hero instead */
.ast-page-single-post-thumbnail .entry-title,
.ast-single-post .entry-title,
.page-template-default .entry-title,
.hfeed .page .entry-title,
.page .entry-title { display: none !important; }
/* Also hide entry-header on pages with gmo-page-hero */
.page .entry-header { display: none !important; }


/* ── HEADER SITE TITLE — white on dark teal ─────────────────── */
.ast-site-identity .site-title a,
.ast-site-identity .site-title,
.site-branding .site-title a,
.site-branding .site-title,
header .site-title a,
header .site-title {
  display: inline-block !important;
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-decoration: none !important;
  letter-spacing: -.015em !important;
}
/* Nav on dark header: white, lime hover */
.ast-builder-menu-1 .main-navigation a,
.ast-builder-menu-1 .ast-nav-menu > li > a {
  color: #ffffff !important;
}
.ast-builder-menu-1 .main-navigation a:hover,
.ast-builder-menu-1 .ast-nav-menu > li > a:hover,
.ast-builder-menu-1 .current-menu-item > a {
  color: #a6ff79 !important;
}



/* ═══════════════════════════════════════════════════════════════
   INNER PAGES CSS — Product detail, About, Contact, R&D, Export
   ═══════════════════════════════════════════════════════════════ */

/* ── Product Intro (2-col: image + description) ─────────────── */
.gmo-product-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.gmo-product-intro__image {
  background: var(--gmo-bg-soft);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.gmo-product-intro__image img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}
.gmo-product-intro__title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 14px !important;
}
.gmo-product-intro__desc {
  font-size: 1.0625rem !important;
  color: var(--gmo-muted) !important;
  line-height: 1.75 !important;
  margin: 0 0 28px !important;
}
.gmo-product-intro__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width:900px) {
  .gmo-product-intro { grid-template-columns: 1fr; gap: 32px; }
  .gmo-product-intro__image { aspect-ratio: 3/2; }
}

/* ── Feature Grid (6-card, 3 cols) ──────────────────────────── */
.gmo-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gmo-feat-card {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: var(--gmo-radius);
  padding: 28px 24px;
  transition: var(--gmo-trans);
}
.gmo-feat-card:hover { box-shadow: var(--gmo-shadow-md); transform: translateY(-3px); border-color: transparent; }
.gmo-feat-card__icon { font-size: 28px; margin-bottom: 14px; }
.gmo-feat-card__title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 8px !important;
}
.gmo-feat-card__desc {
  font-size: 13px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
@media (max-width:900px) { .gmo-feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px) { .gmo-feat-grid { grid-template-columns: 1fr; } }

/* ── Technical Specs Table ───────────────────────────────────── */
.gmo-spec-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--gmo-radius);
  overflow: hidden;
  border: 1px solid var(--gmo-border);
  box-shadow: var(--gmo-shadow-sm);
}
.gmo-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.gmo-spec-table thead th {
  background: var(--gmo-primary) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.gmo-spec-table tbody tr:nth-child(odd) { background: var(--gmo-bg-soft); }
.gmo-spec-table tbody tr:nth-child(even) { background: var(--gmo-white); }
.gmo-spec-table td { padding: 13px 20px; border-bottom: 1px solid var(--gmo-border); color: var(--gmo-text); }
.gmo-spec-label { font-weight: 600; color: var(--gmo-primary) !important; width: 40%; }

/* ── Product Page Bottom (Applications + CTA) ───────────────── */
.gmo-product-bottom {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.gmo-product-bottom__heading {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 20px !important;
}
.gmo-apps-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gmo-apps-list li {
  font-size: 15px;
  color: var(--gmo-text);
  line-height: 1.7;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--gmo-border);
  position: relative;
}
.gmo-apps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gmo-accent);
}
.gmo-product-cta-box {
  background: var(--gmo-primary);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gmo-product-cta-box__title {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 !important;
}
.gmo-product-cta-box__price {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
}
.gmo-product-cta-box__email {
  font-size: 13px;
  color: var(--gmo-accent) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(166,255,121,.3);
  padding-bottom: 2px;
  width: fit-content;
}
.gmo-product-cta-box__email:hover { border-color: var(--gmo-accent); }
@media (max-width:768px) {
  .gmo-product-bottom { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.gmo-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width:900px) { .gmo-about-intro { grid-template-columns: 1fr; } }

/* Timeline */
.gmo-timeline { display: flex; flex-direction: column; gap: 0; }
.gmo-timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 28px;
}
.gmo-timeline-item::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--gmo-border);
}
.gmo-timeline-item:last-child::before { display: none; }
.gmo-timeline-year {
  flex-shrink: 0;
  width: 64px;
  height: 32px;
  background: var(--gmo-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  margin-top: 2px;
}
.gmo-timeline-item--current .gmo-timeline-year { background: var(--gmo-accent); color: var(--gmo-primary); }
.gmo-timeline-body strong { font-size: 15px; color: var(--gmo-primary); display: block; margin-bottom: 4px; }
.gmo-timeline-body p { font-size: 13px; color: var(--gmo-muted); line-height: 1.6; margin: 0; }

/* Leadership */
.gmo-leadership-grid { display: flex; justify-content: center; }
.gmo-leader-card {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: var(--gmo-radius);
  padding: 36px 32px;
  max-width: 520px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--gmo-shadow-sm);
}
.gmo-leader-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gmo-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.gmo-leader-card__name {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 4px !important;
}
.gmo-leader-card__role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gmo-muted);
  margin-bottom: 10px;
}
.gmo-leader-card__bio { font-size: 14px !important; color: var(--gmo-muted) !important; line-height: 1.65 !important; margin: 0 !important; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.gmo-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width:900px) { .gmo-contact-grid { grid-template-columns: 1fr; } }
.gmo-contact-form-box {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--gmo-shadow-sm);
}
.gmo-contact-form-box__title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 8px !important;
}
.gmo-contact-form-box__sub { font-size: 14px !important; color: var(--gmo-muted) !important; margin: 0 0 24px !important; }
/* CF7 form styling */
.gmo-contact-form-box .wpcf7-form input[type="text"],
.gmo-contact-form-box .wpcf7-form input[type="email"],
.gmo-contact-form-box .wpcf7-form input[type="tel"],
.gmo-contact-form-box .wpcf7-form select,
.gmo-contact-form-box .wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gmo-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gmo-text);
  background: var(--gmo-white);
  margin-bottom: 14px;
  transition: border-color .2s;
  font-family: inherit;
}
.gmo-contact-form-box .wpcf7-form input:focus,
.gmo-contact-form-box .wpcf7-form select:focus,
.gmo-contact-form-box .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--gmo-primary);
}
.gmo-contact-form-box .wpcf7-form textarea { min-height: 120px; resize: vertical; }
.gmo-contact-form-box .wpcf7-form input[type="submit"] {
  background: var(--gmo-accent) !important;
  color: var(--gmo-primary) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 13px 28px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: var(--gmo-trans);
  width: auto !important;
  margin-bottom: 0 !important;
}
.gmo-contact-form-box .wpcf7-form input[type="submit"]:hover { background: var(--gmo-accent-dk) !important; transform: translateY(-2px); }

.gmo-contact-details-col { display: flex; flex-direction: column; gap: 16px; }
.gmo-contact-card {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: 12px;
  padding: 22px 20px;
}
.gmo-contact-card--accent { background: var(--gmo-accent); border-color: var(--gmo-accent); }
.gmo-contact-card__heading {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gmo-muted) !important;
  margin: 0 0 14px !important;
}
.gmo-contact-address-block p { font-size: 14px; color: var(--gmo-text); line-height: 1.65; margin: 0; }
.gmo-contact-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.gmo-contact-detail-row svg { flex-shrink: 0; color: var(--gmo-primary); }
.gmo-contact-detail-row a { font-size: 14px; color: var(--gmo-primary) !important; text-decoration: none !important; font-weight: 500; }
.gmo-contact-detail-row a:hover { color: var(--gmo-muted) !important; }
.gmo-contact-locations { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.gmo-contact-locations li { font-size: 14px; color: var(--gmo-text); padding: 8px 0; border-bottom: 1px solid var(--gmo-border); display: flex; align-items: center; gap: 10px; }
.gmo-contact-locations li:last-child { border-bottom: none; }
.gmo-loc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gmo-accent); flex-shrink: 0; }
.gmo-contact-card p { font-size: 14px; color: var(--gmo-text); line-height: 1.65; margin: 0; }

/* ── R&D PAGE ────────────────────────────────────────────────── */
.gmo-rd-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width:900px) { .gmo-rd-intro { grid-template-columns: 1fr; } }
.gmo-rd-intro__stats { display: flex; flex-direction: column; gap: 20px; }
.gmo-rd-stat {
  background: var(--gmo-bg-soft);
  border-radius: 12px;
  padding: 24px 20px;
  border-left: 4px solid var(--gmo-accent);
}
.gmo-rd-stat__num { display: block; font-size: 36px; font-weight: 900; color: var(--gmo-primary); line-height: 1; margin-bottom: 6px; }
.gmo-rd-stat__label { font-size: 13px; color: var(--gmo-muted); font-weight: 500; }
.gmo-rd-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gmo-rd-achievement {
  background: var(--gmo-white);
  border: 1px solid var(--gmo-border);
  border-radius: var(--gmo-radius);
  padding: 28px 24px;
  transition: var(--gmo-trans);
}
.gmo-rd-achievement:hover { box-shadow: var(--gmo-shadow-md); transform: translateY(-3px); border-color: transparent; }
.gmo-rd-achievement__num { font-size: 36px; font-weight: 900; color: var(--gmo-accent); line-height: 1; margin-bottom: 12px; }
.gmo-rd-achievement__title { font-size: 16px !important; font-weight: 700 !important; color: var(--gmo-primary) !important; margin: 0 0 8px !important; }
.gmo-rd-achievement__desc { font-size: 13px !important; color: var(--gmo-muted) !important; line-height: 1.65 !important; margin: 0 !important; }
@media (max-width:900px) { .gmo-rd-achievements { grid-template-columns: repeat(2,1fr); } }
@media (max-width:540px) { .gmo-rd-achievements { grid-template-columns: 1fr; } }

/* ── PROCESS STEPS (R&D + Export) ───────────────────────────── */
.gmo-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gmo-process-step {
  text-align: center;
  position: relative;
}
.gmo-process-step::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 18px;
  font-size: 20px;
  color: rgba(255,255,255,.3);
}
.gmo-process-step:last-child::after { display: none; }
.gmo-process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(166,255,121,.15);
  color: var(--gmo-accent);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.gmo-process-step__title { font-size: 15px !important; font-weight: 700 !important; color: #fff !important; margin: 0 0 8px !important; }
.gmo-process-step__desc { font-size: 13px !important; color: rgba(255,255,255,.65) !important; line-height: 1.6 !important; margin: 0 !important; }
.gmo-process-step--light::after { color: rgba(29,61,62,.2); }
.gmo-process-step--light .gmo-process-step__num { background: rgba(29,61,62,.08); }
@media (max-width:900px) { .gmo-process-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px) { .gmo-process-steps { grid-template-columns: 1fr; } .gmo-process-step::after { display: none; } }


/* ============================================================
   BLOG & ARCHIVE CARDS v2 — match homepage .gmo-product-card
   ============================================================ */

/* Card shell */
.ast-article-post {
  background: #ffffff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
  margin-bottom: 0 !important;
  border: none !important;
  padding: 0 !important;
}

.ast-article-post:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.12) !important;
}

/* Flex column so body fills remaining height */
.ast-article-post .ast-article-inner {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Featured image — 4:3 grey container, cover-fit */
.ast-article-post .post-thumb-img-content {
  background: #f5f5f0 !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 0 !important;
  flex-shrink: 0 !important;
}

.ast-article-post .post-thumb-img-content a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.ast-article-post .post-thumb-img-content img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  padding: 0 !important;
}

/* Text section */
.ast-article-post .ast-blog-content-section {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Category / taxonomy pill tags */
.ast-article-post .ast-terms-element {
  margin-bottom: 10px !important;
  display: block !important;
  order: -1 !important;
}

.ast-article-post .ast-terms-element a {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  color: #1d3d3e !important;
  background: rgba(29,61,62,.08) !important;
  padding: 3px 10px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  margin-right: 4px !important;
  display: inline-block !important;
}

.ast-article-post .ast-terms-element a:hover {
  background: rgba(29,61,62,.18) !important;
}

/* Hide author / date meta entirely */
.ast-article-post .entry-meta,
.ast-article-post .posted-on,
.ast-article-post .byline,
.ast-article-post .ast-post-date,
.ast-article-post .ast-footer-post-meta,
.ast-article-post .ast-blog-single-element.entry-meta {
  display: none !important;
}

/* Post title */
.ast-article-post .entry-title,
.ast-article-post .entry-title.ast-blog-single-element {
  font-family: "Inter", sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1d3d3e !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
}

.ast-article-post .entry-title a {
  color: #1d3d3e !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
}

.ast-article-post .entry-title a:hover {
  color: #a6ff79 !important;
}

/* Excerpt text */
.ast-article-post .entry-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.ast-article-post .entry-content > p,
.ast-article-post .entry-content p {
  font-size: 14px !important;
  color: #5a6472 !important;
  line-height: 1.65 !important;
  margin: 0 0 16px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Read More / Continue Reading CTA link */
.ast-article-post .read-more,
.ast-article-post a.more-link,
.ast-article-post .entry-content a.more-link {
  display: inline-block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  color: #1d3d3e !important;
  text-decoration: none !important;
  border-bottom: 2px solid #a6ff79 !important;
  padding-bottom: 2px !important;
  transition: color .2s ease !important;
  margin-top: auto !important;
  align-self: flex-start !important;
}

.ast-article-post .read-more:hover,
.ast-article-post a.more-link:hover {
  color: #a6ff79 !important;
}

/* Astra blog archive grid — row gap between card rows */
.blog .ast-row,
.archive .ast-row {
  row-gap: 32px;
}

/* Product CPT archive — image contain (not cover), with padding */
.post-type-archive-product .ast-article-post .post-thumb-img-content img {
  object-fit: contain !important;
  padding: 20px !important;
  width: calc(100% - 40px) !important;
  height: calc(100% - 40px) !important;
}

/* Remove Astra default list padding/bullets on archive */
.blog ul.ast-posts-list,
.archive ul.ast-posts-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Blog archive pagination */
.ast-pagination .page-numbers {
  background: #f5f5f0;
  color: #1d3d3e;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 8px 14px;
  text-decoration: none;
  transition: background .2s;
}

.ast-pagination .page-numbers.current,
.ast-pagination .page-numbers:hover {
  background: #1d3d3e;
  color: #a6ff79;
}

/* Responsive */
@media (max-width: 768px) {
  .ast-article-post .ast-blog-content-section {
    padding: 18px !important;
  }
  .ast-article-post .entry-title {
    font-size: 16px !important;
  }
  .blog .ast-row,
  .archive .ast-row {
    row-gap: 20px;
  }
}

/* ── WHAT WE DO SECTION ─────────────────────────────────────────── */
.gmo-whatwedo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gmo-whatwedo__visual {
  border-radius: var(--gmo-radius);
  overflow: hidden;
  box-shadow: var(--gmo-shadow-md);
}
.gmo-whatwedo__visual img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .gmo-whatwedo__inner { grid-template-columns: 1fr; gap: 40px; }
  .gmo-whatwedo__visual { display: none; }
}

/* ── STATS GRID — 6 ITEMS ───────────────────────────────────────── */
.gmo-stats-grid--6 {
  grid-template-columns: repeat(6, 1fr) !important;
}
@media (max-width: 1100px) {
  .gmo-stats-grid--6 { grid-template-columns: repeat(3, 1fr) !important; }
  .gmo-stats-grid--6 .gmo-stat-item:nth-child(3) { border-right: none; }
}
@media (max-width: 768px) {
  .gmo-stats-grid--6 { grid-template-columns: repeat(2, 1fr) !important; }
  .gmo-stats-grid--6 .gmo-stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .gmo-stats-grid--6 .gmo-stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── BENEFITS NUMBERED LIST ─────────────────────────────────────── */
.gmo-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gmo-border);
}
.gmo-benefit-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--gmo-border);
  transition: background var(--gmo-trans);
}
.gmo-benefit-item:hover { background: rgba(166,255,121,.04); margin: 0 -32px; padding-left: 32px; padding-right: 32px; }
.gmo-benefit-item__num {
  font-size: 56px;
  font-weight: 900;
  color: var(--gmo-accent);
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.gmo-benefit-item__title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--gmo-primary) !important;
  margin: 0 0 10px !important;
  line-height: 1.2 !important;
}
.gmo-benefit-item__desc {
  font-size: 15px !important;
  color: var(--gmo-muted) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  max-width: 620px;
}
@media (max-width: 640px) {
  .gmo-benefit-item { grid-template-columns: 52px 1fr; gap: 20px; }
  .gmo-benefit-item__num { font-size: 40px; }
  .gmo-benefit-item__title { font-size: 18px !important; }
  .gmo-benefit-item:hover { margin: 0; padding-left: 0; padding-right: 0; }
}

/* ── NITRILE QUOTE ──────────────────────────────────────────────── */
.gmo-nitrile-quote {
  background: var(--gmo-primary);
  padding: 72px 0;
  text-align: center;
}
.gmo-nitrile-quote__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.gmo-nitrile-quote__mark {
  font-size: 80px;
  line-height: 1;
  color: var(--gmo-accent);
  font-family: Georgia, serif;
  margin-bottom: -20px;
}
.gmo-nitrile-quote__text {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--gmo-white) !important;
  line-height: 1.55 !important;
  letter-spacing: -.01em !important;
  margin: 0 !important;
  font-style: italic;
}
@media (max-width: 640px) {
  .gmo-nitrile-quote__text { font-size: 18px !important; }
  .gmo-nitrile-quote__mark { font-size: 60px; }
}

/* ── OUR RESOLVE GRID ───────────────────────────────────────────── */
.gmo-resolve__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.gmo-resolve__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--gmo-radius);
  padding: 36px 32px;
  transition: background var(--gmo-trans);
}
.gmo-resolve__card:hover { background: rgba(255,255,255,.1); }
.gmo-resolve__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.gmo-resolve__icon svg { width: 100%; height: 100%; }
.gmo-resolve__title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--gmo-white) !important;
  margin: 0 0 12px !important;
  line-height: 1.2 !important;
}
.gmo-resolve__desc {
  font-size: 14px !important;
  color: rgba(255,255,255,.72) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .gmo-resolve__grid { grid-template-columns: 1fr; }
}

/* ── FOOTER — contact links + responsive ───────────────────────── */
.gmo-footer-contact-row a {
  color: rgba(255,255,255,.6) !important;
  text-decoration: none !important;
  transition: color .15s !important;
}
.gmo-footer-contact-row a:hover { color: var(--gmo-accent) !important; }

@media (max-width: 1024px) {
  .gmo-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    padding: 56px 24px 40px !important;
  }
}
@media (max-width: 600px) {
  .gmo-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 48px 20px 36px !important;
  }
  .gmo-footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
    padding: 20px !important;
  }
}

/* Footer CTA btn — constrain width */
.gmo-footer-cta-btn { display: inline-block !important; width: auto !important; align-self: flex-start !important; }
.gmo-footer-col { display: flex; flex-direction: column; align-items: flex-start; }
