/* =============================================
   TRADER RAIZ — TEMA INSTITUCIONAL
============================================= */
:root {
  --black:     #080808;
  --surface:   #0e0e0e;
  --surface2:  #141414;
  --surface3:  #1c1c1c;
  --border:    rgba(255,255,255,0.07);
  --gold:      #c9a227;
  --gold-lt:   #e8c04a;
  --gold-dk:   #9e7e1a;
  --cream:     #f0ebe0;
  --muted:     rgba(240,235,224,0.45);
  --white:     #f5f2ec;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--black); }

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

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.022;
}

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.gold { color: var(--gold); }
.gold-gradient {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   NAVBAR
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-logo span {
  background: linear-gradient(90deg, var(--gold-lt) 0%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold-lt);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 999;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold-lt); }
.mobile-menu .mob-cta {
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(201,162,39,0.07);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--black);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,162,39,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-lt);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--gold-lt);
  background: rgba(201,162,39,0.08);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-carousel-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 3px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold-lt) 50%, var(--gold-dk) 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface2);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,235,224,0.3);
  border: 1px solid rgba(201,162,39,0.3);
  transition: background var(--transition), transform var(--transition);
}

.carousel-dots .dot.active {
  background: var(--gold-lt);
  transform: scale(1.25);
}

/* =============================================
   SECTION COMMON
============================================= */
.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
}

.section-text {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(240,235,224,0.7);
  line-height: 1.8;
  margin-top: 1.5rem;
}
.section-text + .section-text { margin-top: 1rem; }

/* =============================================
   SOBRE / FELIPE
============================================= */
.about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
  color: var(--gold-lt);
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-lt);
  background: rgba(201,162,39,0.06);
}

.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   PRODUTOS
============================================= */
.products { background: var(--black); }

.products-intro {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.product-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.product-card.featured {
  background: var(--surface3);
  border-color: rgba(201,162,39,0.35);
}
.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
}

.featured-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  padding: 0.25rem 0.7rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.6rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(240,235,224,0.65);
}
.product-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.5;
}

.product-cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  margin-top: auto;
}
.product-cta.primary {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--black);
}
.product-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.35);
}
.product-cta.secondary {
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-lt);
}
.product-cta.secondary:hover {
  background: rgba(201,162,39,0.08);
  border-color: var(--gold-lt);
}

/* =============================================
   AVISO DE RISCO (box)
============================================= */
.risk-section { background: var(--surface); }

.risk-box {
  border: 1px solid rgba(201,162,39,0.25);
  background: rgba(201,162,39,0.05);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}
.risk-box p {
  font-size: 0.92rem;
  color: rgba(240,235,224,0.7);
  line-height: 1.85;
}
.risk-box p + p { margin-top: 1rem; }
.risk-box a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,39,0.3);
}
.risk-box a:hover { text-decoration-color: var(--gold-lt); }

/* =============================================
   CONTATO
============================================= */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.98rem;
  color: var(--cream);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-item a:hover .contact-value { color: var(--gold-lt); }

.legal-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.legal-card .footer-col-title { margin-bottom: 1.25rem; }
.legal-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.legal-card a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-card a:hover { color: var(--gold-lt); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo img {
  height: 34px;
  width: auto;
}
.footer-logo span {
  background: linear-gradient(90deg, var(--gold-lt) 0%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(240,235,224,0.4);
  line-height: 1.7;
}

.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(240,235,224,0.25);
  text-align: right;
  max-width: 420px;
  line-height: 1.7;
}

/* =============================================
   LEGAL PAGES (Termos / Privacidade / Aviso)
============================================= */
.legal-page {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
}

.legal-header {
  margin-bottom: 3rem;
}

.legal-header .section-label { margin-bottom: 1.25rem; }

.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(240,235,224,0.7);
  line-height: 1.85;
}

.legal-content p + p,
.legal-content ul,
.legal-content ol { margin-top: 1rem; }

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-content strong { color: var(--cream); font-weight: 600; }

.legal-content a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,39,0.3);
}
.legal-content a:hover { text-decoration-color: var(--gold-lt); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 2rem;
  transition: gap var(--transition);
}
.back-link:hover { gap: 0.85rem; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-inner { gap: 0.5rem; }
  .nav-logo { font-size: 1.15rem; gap: 0.5rem; }
  .nav-logo img { height: 30px; }

  .nav-right { gap: 0.5rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.65rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3.5rem 0 4rem;
    gap: 2.5rem;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-carousel-frame { max-width: 320px; margin: 0 auto; }

  .about-grid    { grid-template-columns: 1fr; }
  .about-photo   { order: -1; max-width: 320px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 480px) {
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .nav-inner { padding: 0 1rem; gap: 0.4rem; }
  .nav-logo { font-size: 1rem; gap: 0.4rem; }
  .nav-logo img { height: 26px; }
  .nav-cta { padding: 0.5rem 0.85rem; font-size: 0.65rem; }
}
