/* ===================================================
   Empirewireless — base
=================================================== */
:root {
  --navy: #0b1830;
  --navy-2: #101f3d;
  --charcoal: #1c2433;
  --ink: #10151f;
  --paper: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #e2e5eb;
  --gray-400: #9aa2b1;
  --gray-500: #6b7280;
  --gray-600: #4b5361;

  --blue: #2f5fe0;
  --blue-dark: #1f47b8;
  --blue-light: #eaf0ff;

  --gold: #c9a13b;
  --gold-light: #e8cf8a;
  --gold-dark: #96731f;
  --gold-soft: #f7f0dc;

  --green: #25d366;
  --green-dark: #1da851;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(16, 21, 31, 0.06), 0 1px 1px rgba(16, 21, 31, 0.04);
  --shadow-md: 0 8px 24px rgba(16, 21, 31, 0.08);
  --shadow-lg: 0 20px 48px rgba(16, 21, 31, 0.14);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

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

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--gray-600); }

ul { list-style: none; margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ===================================================
   Buttons
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--green-dark); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ===================================================
   Header
=================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(16, 21, 31, 0.08);
  border-bottom-color: var(--gray-200);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--navy);
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-accent { color: var(--gold-dark); }

.main-nav ul {
  display: flex;
  gap: 6px;
}
.nav-quote-btn { display: none; }
.nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-link:hover { color: var(--navy); background: var(--gray-100); }

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.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); }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 24, 48, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-nav-backdrop.active { opacity: 1; pointer-events: auto; }

/* ===================================================
   Section base
=================================================== */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark h2, .section-dark h3 { color: #fff; }

#wholesale { position: relative; overflow: hidden; }
#wholesale::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gray-200) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: 0.7;
  z-index: 0;
}
#wholesale .container { position: relative; z-index: 1; }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
}
.eyebrow-light { color: #7fa3ff; }

h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--navy); }

.section-cta { margin-top: 48px; text-align: center; }

/* ===================================================
   Hero
=================================================== */
.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(47, 95, 224, 0.08), transparent 60%),
    radial-gradient(800px 420px at -5% 100%, rgba(201, 161, 59, 0.08), transparent 60%),
    var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gray-200) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 75%);
  mask-image: linear-gradient(180deg, black, transparent 75%);
  opacity: 0.7;
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  color: var(--navy);
  margin-bottom: 0.45em;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.trust-row li {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 400px;
}
.hero-emblem-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  background: linear-gradient(155deg, #f4f7fc 0%, #fbf8ee 55%, #f4f7fc 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gray-400) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(circle at center, black 25%, transparent 68%);
  mask-image: radial-gradient(circle at center, black 25%, transparent 68%);
}
.emblem-rings {
  position: absolute;
  width: 320px;
  height: 320px;
  color: var(--gold);
}
.emblem-rings circle { fill: none; stroke: currentColor; stroke-width: 1; }
.emblem-rings .ring-1 { opacity: 0.3; }
.emblem-rings .ring-2 { opacity: 0.22; color: var(--blue); }
.emblem-rings .ring-3 { opacity: 0.28; stroke-dasharray: 2 7; }
.emblem-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, 0.22), rgba(47, 95, 224, 0.1) 60%, transparent 76%);
}
.emblem-logo {
  position: relative;
  width: 44%;
  max-width: 210px;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(11, 24, 48, 0.18));
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-badge-num { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.hero-badge-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-500); }

.hero-chip {
  position: absolute;
  top: 20px;
  right: -14px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.hero-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}

/* ===================================================
   About
=================================================== */
#about { position: relative; overflow: hidden; }
#about::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -130px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 42px solid var(--gold-soft);
  z-index: 0;
}
#about .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.4;
  z-index: 0;
}
.about-media img {
  position: relative;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.about-content p { font-size: 1.02rem; }
.founder-note {
  padding: 16px 20px;
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.98rem;
  color: var(--navy-2);
}
.founder-note strong { color: var(--navy); }

/* ===================================================
   Cards / offer
=================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 20px;
}
.card h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 0.4em; }
.card p { font-size: 0.94rem; margin-bottom: 0; }

/* ===================================================
   Product grid
=================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--gray-100); }
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-body { padding: 20px; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 0.2em; color: var(--navy); }
.product-tag { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 10px; }
.badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.product-link {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  transition: color 0.15s ease;
}
.product-link:hover { color: var(--blue); }

/* ===================================================
   Why / dark section
=================================================== */
.section-why { position: relative; overflow: hidden; }
.section-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(201, 161, 59, 0.07) 0px, rgba(201, 161, 59, 0.07) 1px, transparent 1px, transparent 44px);
  z-index: 0;
}
.section-why::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -160px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, 0.16), transparent 72%);
  z-index: 0;
}
.section-why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item { position: relative; z-index: 1; border-top: 1px solid rgba(201, 161, 59, 0.28); padding-top: 24px; }
.why-num { display: block; font-size: 0.85rem; font-weight: 800; color: var(--gold-light); margin-bottom: 12px; letter-spacing: 0.05em; }
.why-item h3 { font-size: 1.08rem; margin-bottom: 0.4em; }
.why-item p { font-size: 0.94rem; margin-bottom: 0; }

/* ===================================================
   Who we serve
=================================================== */
.section-serve { position: relative; overflow: hidden; }
.section-serve::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -150px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 95, 224, 0.08), transparent 72%);
  z-index: 0;
}
.section-serve::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, 0.12), transparent 72%);
  z-index: 0;
}
.section-serve .container { position: relative; z-index: 1; }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.serve-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.serve-card:hover { border-color: var(--blue); background: #fff; }
.serve-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35em; }
.serve-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ===================================================
   Export section
=================================================== */
.section-export {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.section-export::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}
.export-grid { position: relative; z-index: 1; }
.export-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.export-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.export-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.export-content p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 56ch; }
.export-content h2 { color: #fff; }

/* ===================================================
   How it works
=================================================== */
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 12%, var(--gray-200) 88%, transparent);
  z-index: 0;
}
.step { position: relative; z-index: 1; padding-left: 4px; }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.4em; }
.step p { font-size: 0.92rem; margin-bottom: 0; }

/* ===================================================
   Quote form
=================================================== */
#quote { position: relative; overflow: hidden; }
#quote::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -170px;
  bottom: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, 0.12), transparent 72%);
  z-index: 0;
}
#quote .container { position: relative; z-index: 1; }

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.quote-intro p { font-size: 1.02rem; }
.quote-points { margin-top: 20px; }
.quote-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--navy-2);
  font-size: 0.95rem;
}
.quote-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 2px;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field label span { color: var(--blue); }
.form-field input,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--ink);
  transition: border-color 0.15s ease, background-color 0.15s ease;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #d9483f;
  background: #fff5f4;
}
.form-error {
  display: block;
  min-height: 1em;
  font-size: 0.8rem;
  color: #d9483f;
  margin-top: 6px;
}
.form-success {
  margin-top: 18px;
  padding: 14px 18px;
  background: #e9f9ef;
  border: 1px solid #b7e6c6;
  color: #1c7c3f;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
}

/* ===================================================
   Contact
=================================================== */
#contact { position: relative; overflow: hidden; }
#contact::before {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid var(--gold-soft);
  z-index: 0;
}
#contact .container { position: relative; z-index: 1; }

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 44px;
  overflow: hidden;
}
.contact-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.3em; }
.contact-founder { font-weight: 600; color: var(--gray-600); margin-bottom: 20px; }
.contact-list li { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.contact-label { font-size: 0.82rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; width: 60px; flex-shrink: 0; }
.contact-list a { font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.contact-list a:hover { color: var(--blue); }
.contact-actions { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.contact-actions .btn-outline { background: #fff; border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.contact-actions .btn-outline:hover { border-color: var(--blue); }

/* ===================================================
   Footer
=================================================== */
.site-footer { position: relative; overflow: hidden; background: var(--ink); color: rgba(255,255,255,0.8); padding: 56px 0 0; }
.site-footer::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, 0.12), transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.footer-inner, .footer-bottom { position: relative; z-index: 1; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col { min-width: 0; }
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; }
.footer-mark { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.footer-brand-col .brand-text { font-size: 1.2rem; font-weight: 800; color: #fff; }
.footer-accent { color: var(--gold-light); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 10px; margin-bottom: 0; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 0;
  max-width: 40ch;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  cursor: default;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-icon:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-contact a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.footer-contact a:hover { color: #fff; }
.footer-founder { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 6px 0 0; }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.45); text-align: center; }

/* ===================================================
   WhatsApp floating button
=================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55); }

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ===================================================
   Scroll reveal
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   Responsive
=================================================== */
@media (max-width: 1080px) {
  .cards-grid,
  .product-grid,
  .why-grid,
  .serve-grid,
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .header-actions .btn-sm { display: none; }

  .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    right: 0;
    height: calc(100vh - var(--header-h));
    width: min(320px, 82vw);
    background: #fff;
    box-shadow: -12px 0 32px rgba(16,21,31,0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 28px 20px;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; width: 100%; gap: 2px; }
  .main-nav .nav-link { display: block; padding: 14px 20px; font-size: 1.02rem; border-radius: var(--radius-sm); }
  .nav-quote-btn { display: flex; margin-top: auto; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-media { order: 1; margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .trust-row { justify-content: center; }
  .hero-badge { left: 16px; }
  .hero-chip { right: 12px; }

  .about-grid,
  .export-grid,
  .quote-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-media img { height: 320px; }
  .export-media img { height: 320px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .cards-grid,
  .product-grid,
  .why-grid,
  .serve-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; }
  .contact-grid { padding: 28px; }
  .hero-emblem-card { height: 380px; }
  .emblem-rings { width: 250px; height: 250px; }
  .emblem-glow { width: 200px; height: 200px; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-tooltip { display: none; }
}
