/* G3 Expresso — Static Site Styles */

/* Tokens */
:root {
  --bg: #ffffff;
  --fg: #141414;
  --graphite: #141414;
  --graphite-fg: #ffffff;
  --primary: #F15A24;
  --primary-2: #d94c1a;
  --primary-fg: #ffffff;
  --muted: #f5f5f5;
  --muted-fg: #7C7C7C;
  --border: #eaeaea;
  --card: #ffffff;
  --radius: 0.875rem;
  --shadow-glass: 0 8px 32px -8px rgba(20,20,20,0.12), 0 2px 8px -2px rgba(20,20,20,0.06);
  --shadow-coral: 0 12px 40px -12px rgba(241,90,36,0.45);
  --shadow-elevate: 0 20px 60px -20px rgba(20,20,20,0.25);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea, button { font: inherit; }
h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.1; font-weight: 800; }
ul { list-style: none; }

/* Layout helpers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }

.grid { display: grid; gap: 24px; }
.text-center { text-align: center; }

/* Eyebrow / headings */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); }
.h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.05; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; color: var(--graphite); margin-top: 16px; }
.lead { font-size: 1.125rem; color: var(--muted-fg); margin-top: 20px; max-width: 640px; }

.eyebrow + .h2 { margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: 9999px;
  font-size: 0.9rem; font-weight: 600; transition: all .2s ease;
  white-space: nowrap;
}
.btn-lg { height: 56px; padding: 0 32px; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: var(--shadow-coral); }
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn svg { width: 20px; height: 20px; }

/* Glass */
.glass-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-glass);
}
.glass-dark {
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(234,234,234,0.6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 12px 20px;
}
@media (min-width: 768px) { .header-inner { padding: 12px 32px; } }
.logo img { height: 40px; width: auto; }
@media (min-width: 768px) { .logo img { height: 48px; } }
.nav-desktop { display: none; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } .btn-header-wrap { display: block; } .menu-toggle { display: none; } }
.nav-desktop a { font-size: 0.875rem; font-weight: 500; color: rgba(20,20,20,0.85); transition: color .2s; }
.nav-desktop a:hover { color: var(--primary); }
.btn-header-wrap { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; width: 40px; border-radius: 9999px;
  background: rgba(255,255,255,0.65); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
}
.menu-toggle svg { width: 20px; height: 20px; }
.nav-mobile { display: none; border-top: 1px solid rgba(234,234,234,0.6); background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); }
.nav-mobile.open { display: block; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px; }
.nav-mobile a { padding: 12px; border-radius: 10px; font-size: 0.9rem; font-weight: 500; color: rgba(20,20,20,0.85); }
.nav-mobile a:hover { background: #f5f5f5; }
.nav-mobile .btn { margin-top: 8px; height: 44px; }
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }

/* HERO */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 128px 0 64px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--graphite), rgba(20,20,20,0.3) 60%, transparent 100%),
    linear-gradient(135deg, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.55) 50%, rgba(20,20,20,0.85) 100%);
}
.hero-content { position: relative; max-width: 720px; color: #fff; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff;
}
.chip .dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--primary); }
.hero h1 { margin-top: 24px; font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; }
.hero h1 .accent { color: var(--primary); }
.hero p.lead { margin-top: 24px; color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 640px; }
.hero .values-line { margin-top: 16px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(241,90,36,0.9); }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }

/* Simple hero (non-image) */
.hero-simple {
  position: relative; overflow: hidden;
  background: var(--graphite); color: #fff;
  padding: 160px 0 96px; text-align: center;
}
@media (min-width: 768px) { .hero-simple { padding: 192px 0 128px; } }
.hero-simple::before, .hero-simple::after {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  filter: blur(80px); z-index: 0;
}
.hero-simple::before { left: -160px; top: 80px; background: rgba(241,90,36,0.3); }
.hero-simple::after { right: 0; bottom: 0; background: rgba(241,90,36,0.15); }
.hero-simple .container { position: relative; z-index: 1; }
.hero-simple h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); margin-top: 24px; }
.hero-simple h1 .accent { color: var(--primary); }
.hero-simple p { margin: 24px auto 0; max-width: 640px; color: rgba(255,255,255,0.8); font-size: 1.125rem; }

/* Sections shared */
.section-alt { background: rgba(245,245,245,0.5); }
.section-dark { background: var(--graphite); color: #fff; position: relative; overflow: hidden; }
.section-dark::before, .section-dark::after {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(80px); z-index: 0;
}
.section-dark::before { left: -160px; top: 80px; background: rgba(241,90,36,0.25); }
.section-dark::after { right: -160px; bottom: 80px; background: rgba(241,90,36,0.15); }
.section-dark .container { position: relative; z-index: 1; }
.section-dark .h2 { color: #fff; }

/* Two-col intro */
.intro-grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .intro-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.intro-grid .text-block p { color: var(--muted-fg); font-size: 1.125rem; line-height: 1.6; margin-bottom: 20px; }
.intro-grid .text-block strong { color: var(--graphite); font-weight: 600; }

/* Stat cards */
.stats-grid { margin-top: 80px; display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { padding: 24px; border-radius: 24px; }
.stat-card svg { width: 24px; height: 24px; color: var(--primary); }
.stat-card .k { margin-top: 16px; font-size: 1.5rem; font-weight: 700; color: var(--graphite); }
.stat-card .v { margin-top: 4px; font-size: 0.875rem; color: var(--muted-fg); }

/* Cards grid — services */
.services-grid { margin-top: 56px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative; padding: 32px; border-radius: 24px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevate); }
.service-card::before {
  content: ""; position: absolute; right: -24px; top: -24px; width: 128px; height: 128px;
  border-radius: 50%; background: rgba(241,90,36,0.1); filter: blur(30px);
}
.service-card .icon-lg {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  height: 56px; width: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #f37344, #e04a1c); box-shadow: var(--shadow-coral);
}
.service-card .icon-lg svg { width: 28px; height: 28px; color: #fff; }
.service-card h3 { position: relative; margin-top: 24px; font-size: 1.5rem; color: var(--graphite); }
.service-card p { position: relative; margin-top: 12px; color: var(--muted-fg); }

/* Segments grid */
.segments-grid { margin-top: 56px; display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .segments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .segments-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .segments-grid { grid-template-columns: repeat(4, 1fr); } }
.segment-card {
  padding: 24px; border-radius: 16px; background: var(--card);
  border: 1px solid var(--border); transition: all .2s ease;
}
.segment-card:hover { border-color: rgba(241,90,36,0.4); box-shadow: var(--shadow-glass); }
.segment-card .icon-sm {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; width: 44px; border-radius: 12px; background: rgba(241,90,36,0.1);
}
.segment-card .icon-sm svg { width: 20px; height: 20px; color: var(--primary); }
.segment-card h3 { margin-top: 16px; font-size: 1rem; font-weight: 600; color: var(--graphite); }
.segment-card p { margin-top: 6px; font-size: 0.875rem; color: var(--muted-fg); }

/* Differentiators (dark) */
.diff-grid { margin-top: 56px; display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .diff-grid { grid-template-columns: repeat(5, 1fr); } }
.diff-card { padding: 24px; border-radius: 16px; transition: background .2s; }
.diff-card:hover { background: rgba(255,255,255,0.1); }
.diff-card svg { width: 24px; height: 24px; color: var(--primary); }
.diff-card h3 { margin-top: 16px; font-size: 1rem; font-weight: 600; }
.diff-card p { margin-top: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* Tech grid */
.tech-grid { margin-top: 56px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
.tech-card { padding: 32px; border-radius: 24px; }
.tech-card-wide { grid-column: 1 / -1; }
.tech-card .row { display: flex; align-items: flex-start; gap: 16px; }
.tech-card .icon-md {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  height: 48px; width: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #f37344, #e04a1c); box-shadow: var(--shadow-coral);
}
.tech-card .icon-md svg { width: 24px; height: 24px; color: #fff; }
.tech-card h3 { font-size: 1.25rem; color: var(--graphite); }
.tech-card p { margin-top: 8px; color: var(--muted-fg); }

/* Values */
.values-grid { margin-top: 56px; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(5, 1fr); } }
.value-card {
  position: relative; padding: 28px; border-radius: 24px; background: var(--card);
  box-shadow: var(--shadow-glass); transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevate); }
.value-card .num { font-size: 3rem; font-weight: 900; color: rgba(241,90,36,0.2); line-height: 1; }
.value-card h3 { margin-top: 12px; font-size: 1.25rem; color: var(--graphite); }
.value-card p { margin-top: 8px; font-size: 0.875rem; color: var(--muted-fg); }

/* CTA banner */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--graphite); color: #fff;
  padding: 40px; border-radius: 32px;
}
@media (min-width: 768px) { .cta-banner { padding: 64px; } }
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(80px);
}
.cta-banner::before { right: -80px; top: -80px; background: rgba(241,90,36,0.3); }
.cta-banner::after { left: -64px; bottom: 0; background: rgba(241,90,36,0.2); }
.cta-banner-inner { position: relative; display: grid; gap: 40px; }
@media (min-width: 1024px) { .cta-banner-inner { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.1; }
.cta-banner p { margin-top: 20px; color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 480px; }
.cta-banner .side { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 1024px) { .cta-banner .side { align-items: flex-end; } }
.cta-banner .side small { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* FAQ / Accordion */
.faq-wrap { margin: 48px auto 0; max-width: 800px; padding: 24px; border-radius: 24px; }
.faq-item { border-bottom: 1px solid rgba(234,234,234,0.6); }
.faq-item:last-child { border-bottom: 0; }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 0; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--graphite);
}
.faq-trigger .chev { transition: transform .2s; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted-fg); }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-inner { padding: 0 0 20px; line-height: 1.6; }

/* Contact section */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: flex-start; } }
.contact-info { padding: 32px; border-radius: 24px; }
.contact-info .row { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.contact-info .row + .row { border-top: 1px solid rgba(234,234,234,0.6); }
.contact-info .icon-md {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; width: 48px; border-radius: 12px; background: rgba(241,90,36,0.1); flex-shrink: 0;
}
.contact-info .icon-md svg { width: 20px; height: 20px; color: var(--primary); }
.contact-info .lbl { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-fg); }
.contact-info .val { margin-top: 2px; font-size: 1.05rem; font-weight: 600; color: var(--graphite); }
.contact-info a.row:hover { opacity: 0.8; }

.form-card { padding: 24px; border-radius: 24px; }
@media (min-width: 768px) { .form-card { padding: 32px; } }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: block; margin-bottom: 16px; }
.form-field label, .form-lbl { display: block; font-size: 0.875rem; font-weight: 500; color: var(--graphite); margin-bottom: 6px; }
.form-lbl .req { color: var(--primary); }
.form-input, .form-select, .form-textarea {
  display: block; width: 100%;
  padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: 0.9rem; color: var(--graphite);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(241,90,36,0.2);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-file-wrap {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px;
  border: 1px dashed var(--border); background: var(--bg);
  font-size: 0.875rem; color: var(--muted-fg);
}
.form-file-wrap:hover { border-color: rgba(241,90,36,0.5); }
.form-file-wrap svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.form-file-wrap input[type=file] {
  flex: 1; font-size: 0.85rem; color: var(--graphite); border: none; background: transparent; padding: 0;
}
.form-file-wrap input[type=file]::file-selector-button {
  margin-right: 12px; padding: 6px 12px; border-radius: 8px;
  border: 0; background: rgba(241,90,36,0.1); color: var(--primary);
  font-size: 0.75rem; font-weight: 500; cursor: pointer;
}
.form-note { text-align: center; font-size: 0.75rem; color: var(--muted-fg); margin-top: 8px; }
.submit-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 24px; }
.fieldset-block { margin-top: 40px; }
.fieldset-block:first-child { margin-top: 0; }
.fieldset-block > h3 { font-size: 1.125rem; color: var(--graphite); margin-bottom: 20px; }

/* Benefits (parceiros) */
.benefits-grid { margin-top: 56px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { padding: 32px; border-radius: 24px; transition: transform .2s, box-shadow .2s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevate); }
.benefit-card .icon-md {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; width: 48px; border-radius: 16px;
  background: linear-gradient(135deg, #f37344, #e04a1c); box-shadow: var(--shadow-coral);
}
.benefit-card .icon-md svg { width: 24px; height: 24px; color: #fff; }
.benefit-card h3 { margin-top: 20px; font-size: 1.25rem; color: var(--graphite); }
.benefit-card p { margin-top: 8px; color: var(--muted-fg); }

/* Social buttons */
.social-buttons {
  margin-top: 56px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
}
@media (min-width: 640px) { .social-buttons { flex-direction: row; } }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 64px; width: 100%; max-width: 380px; padding: 0 32px;
  border-radius: 16px; color: #fff; font-weight: 600; font-size: 1rem;
  box-shadow: 0 8px 24px -8px rgba(20,20,20,0.2);
  transition: transform .2s, box-shadow .2s;
}
@media (min-width: 640px) { .social-btn { width: auto; } }
.social-btn:hover { transform: scale(1.05); box-shadow: 0 16px 40px -8px rgba(20,20,20,0.3); }
.social-btn svg { width: 24px; height: 24px; }
.social-instagram { background: #E1306C; }
.social-facebook { background: #1877F2; }

/* FOOTER */
.site-footer { position: relative; overflow: hidden; background: var(--graphite); color: #fff; }
.site-footer::before {
  content: ""; position: absolute; top: -96px; right: -96px;
  width: 384px; height: 384px; border-radius: 50%; background: rgba(241,90,36,0.2); filter: blur(80px);
}
.footer-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 64px 20px; }
@media (min-width: 768px) { .footer-inner { padding: 64px 32px; } }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 56px; width: auto; background: #fff; padding: 8px; border-radius: 12px; display: inline-block; }
.footer-brand .tag { margin-top: 20px; font-size: 1.125rem; font-weight: 500; color: rgba(255,255,255,0.9); max-width: 480px; }
.footer-brand .sub { margin-top: 16px; font-size: 0.875rem; color: rgba(255,255,255,0.6); max-width: 480px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: var(--primary); }
.footer-contact-list { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-list svg { width: 16px; height: 16px; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-social { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; width: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  transition: all .2s ease;
}
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a.ig:hover { background: #E1306C; transform: scale(1.1); }
.footer-social a.fb:hover { background: #1877F2; transform: scale(1.1); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .7s cubic-bezier(0.2,0.8,0.2,1) both; }

/* Toast */
.toast-wrap { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 100; pointer-events: none; }
.toast {
  min-width: 280px; max-width: 480px;
  padding: 14px 18px; border-radius: 12px;
  background: #fff; color: var(--graphite);
  box-shadow: 0 12px 32px -8px rgba(20,20,20,0.25);
  border-left: 4px solid #16a34a;
  transform: translateY(-20px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .t { font-weight: 600; font-size: 0.9rem; }
.toast .d { font-size: 0.85rem; color: var(--muted-fg); margin-top: 2px; }

/* Utility */
.hero-h1-wrap { }
.text-primary { color: var(--primary); }
