/* ═══════════════════════════════════════════
   FINE METALS — REDESIGNED STYLESHEET
   ═══════════════════════════════════════════ */

:root {
  --dark:        #1E293B;
  --dark-2:      #0F172A;
  --gold:        #2563EB;
  --gold-light:  #60A5FA;
  --gold-bg:     #EFF6FF;
  --steel:       #2563EB;
  --white:       #FFFFFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --gray-900:    #111827;
  --red:         #DC2626;
  --green:       #16A34A;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.18);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --t:           0.22s ease;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── Utilities ─────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 560px;
}
.section-sub--light { color: rgba(255,255,255,0.6); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 1.5px solid var(--gray-200);
  color: var(--gray-900);
  background: var(--white);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 14px;
  border-right: 1.5px solid rgba(255,255,255,0.15);
  margin-right: 2px;
  transition: border-color var(--t);
}
.header.scrolled .logo__mark { border-color: var(--gray-200); }
.header:not(.scrolled) .logo__mark svg { color: var(--gold); }
.header.scrolled .logo__mark svg { color: var(--gold); }
.footer .logo__mark { border-color: rgba(255,255,255,0.1); }
.footer .logo__mark svg { color: var(--gold); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--t);
}
.logo__sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--t);
}

.header:not(.scrolled) .logo__name { color: var(--white); }
.header:not(.scrolled) .logo__sub { color: rgba(255,255,255,0.55); }
.header.scrolled .logo__name { color: var(--gray-900); }
.header.scrolled .logo__sub { color: var(--gray-400); }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 2px; }
.nav__link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-xs);
  transition: all var(--t);
}
.header:not(.scrolled) .nav__link { color: rgba(255,255,255,0.8); }
.header:not(.scrolled) .nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header.scrolled .nav__link { color: var(--gray-600); }
.header.scrolled .nav__link:hover { color: var(--gray-900); background: var(--gray-100); }
.header.scrolled .nav__link.active { color: var(--gold); }

.header__cta { margin-left: 4px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  transition: all var(--t);
}
.header:not(.scrolled) .hamburger span { background: var(--white); }
.header.scrolled .hamburger span { background: var(--gray-900); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1697698532634-ea59b636ccea?w=1800&q=80&auto=format&fit=crop')
    center/cover no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,18,28,0.88) 0%,
    rgba(10,18,28,0.65) 55%,
    rgba(10,18,28,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
}

.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll i { font-size: 0.95rem; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.65; }
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: background var(--t);
}
.trust__item:last-child { border-right: none; }
.trust__item:hover { background: var(--gray-50); }
.trust__num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gray-900);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.trust__num sup {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--gold);
  margin-left: 2px;
}
.trust__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════ */
.products { background: var(--gray-50); }
.products__header { margin-bottom: 56px; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.pcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: background var(--t);
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pcard:hover::before { background: var(--gold); }

.pcard--featured {
  background: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-10px);
}
.pcard--featured::before { background: var(--gold); }
.pcard--featured:hover { transform: translateY(-16px); }

.pcard__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.pcard__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.pcard:not(.pcard--featured) .pcard__icon {
  background: var(--gold-bg);
  color: var(--gold);
}
.pcard--featured .pcard__icon {
  background: rgba(37,99,235,0.15);
  color: var(--gold-light);
}

.pcard__name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.2;
}
.pcard--featured .pcard__name { color: var(--white); }

.pcard__desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: -8px;
}
.pcard--featured .pcard__desc { color: rgba(255,255,255,0.55); }

.pcard__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-100);
}
.pcard--featured .pcard__items { border-color: rgba(255,255,255,0.08); }
.pcard__items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}
.pcard--featured .pcard__items li { color: rgba(255,255,255,0.75); }
.pcard__items li i {
  width: 18px; height: 18px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  flex-shrink: 0;
}
.pcard--featured .pcard__items li i {
  background: rgba(37,99,235,0.15);
  color: var(--gold-light);
}

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why { background: var(--white); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__left { display: flex; flex-direction: column; gap: 16px; }
.why__intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 4px;
  margin-bottom: 12px;
}
.why__features { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--t);
}
.feat:hover {
  border-color: var(--gold-bg);
  background: var(--gold-bg);
  transform: translateX(4px);
}
.feat__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-xs);
  background: var(--gold-bg);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feat__title { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.feat__desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }

.why__right { position: relative; }
.why__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.why__img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--gray-200);
  background-image: url('https://images.unsplash.com/photo-1565515636339-9c87985b56e7?w=900&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.why__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,35,0.7) 0%, transparent 60%);
}
.why__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
}
.why__badge-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.why__badge strong { display: block; font-size: 1rem; font-weight: 800; color: var(--gray-900); }
.why__badge span { font-size: 0.78rem; color: var(--gray-400); }

.why__tag {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  line-height: 1.4;
  text-align: center;
  max-width: 140px;
}

/* ══════════════════════════════════════════
   LOCATIONS
══════════════════════════════════════════ */
.locations { background: var(--gray-50); }
.locations__grid {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
}
.loccard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.loccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.loccard__top {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.loccard__top::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
}
.loccard__top::before {
  content: '';
  position: absolute;
  right: 20px; top: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(37,99,235,0.06);
}
.loccard__icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  position: relative;
}
.loccard__city {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  position: relative;
}
.loccard__state {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  position: relative;
}

.loccard__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loccard__addr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.loccard__addr i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.loccard__hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-xs);
}
.loccard__hours i { color: var(--gold); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { background: var(--dark); padding: 96px 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__left { padding-top: 8px; }
.contact__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 16px 0 36px;
}
.contact__channels { display: flex; flex-direction: column; gap: 12px; }
.cch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: all var(--t);
}
.cch:hover {
  border-color: rgba(37,99,235,0.3);
  background: rgba(37,99,235,0.05);
  transform: translateX(4px);
}
.cch--wa:hover {
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.05);
}
.cch__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: rgba(37,99,235,0.12);
  color: var(--gold-light);
}
.cch--wa .cch__icon { background: rgba(37,211,102,0.1); color: #4ADE80; }
.cch__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 2px; }
.cch__val { font-size: 0.93rem; font-weight: 600; color: var(--white); }

.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.form__title { font-size: 1.2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 28px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.fg:last-of-type { margin-bottom: 0; }
.fg label { font-size: 0.8rem; font-weight: 700; color: var(--gray-600); letter-spacing: 0.04em; }
.fg input, .fg select, .fg textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  font: 0.9rem/1.5 var(--font);
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 11px;
  padding-right: 32px;
}
.form__note { font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 10px; }
.form__msg { display: none; padding: 11px 14px; border-radius: var(--radius-xs); font-size: 0.85rem; font-weight: 500; margin-top: 12px; }
.form__msg--ok { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.form__msg--err { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #070E14;
  padding: 64px 0 0;
  border-top: 1px solid rgba(37,99,235,0.1);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand .logo__name { color: var(--white); }
.footer__brand .logo__sub { color: rgba(255,255,255,0.4); }
.footer__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 260px;
}
.footer__head {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--white); }
.footer__contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer__contact-list i { color: var(--gold); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.footer__contact-list a:hover { color: var(--white); }

.footer__bottom { padding: 18px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.22); }
.footer__domain { font-size: 0.8rem; color: rgba(37,99,235,0.4); font-weight: 600; }

/* ══════════════════════════════════════════
   WhatsApp Float
══════════════════════════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 99;
  transition: all var(--t);
  animation: waPop 0.4s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
.wa-btn:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
@keyframes waPop {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why__grid { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .products__grid,
  .locations__grid,
  .why__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .products__grid { max-width: 460px; margin: 0 auto; }
  .pcard--featured { transform: none; }
  .why__right { display: none; }
  .locations__grid { max-width: 460px; margin: 0 auto; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(3) { border-top: 1px solid var(--gray-200); }
  .trust__item:nth-child(4) { border-top: 1px solid var(--gray-200); border-right: none; }

  .hamburger { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 0 -100% 0 auto;
    width: min(300px, 80vw);
    background: var(--white);
    padding: 80px 28px 28px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right var(--t);
    z-index: 99;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { color: var(--gray-700) !important; background: transparent !important; padding: 12px 14px; font-size: 1rem; display: block; }
  .nav__link:hover { background: var(--gray-50) !important; }
}

@media (max-width: 600px) {
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .contact__form { padding: 28px 20px; }
  .form__grid { grid-template-columns: 1fr; }
}