/* UnoImobi · Landing Page · estilos próprios
 * Tokens da Onda 2 já carregados via <link>: --primary, --accent, --ink, --bg, --muted, --space-*, --radius-*, --shadow-*, --ease-*
 */

:root {
  --display: 'Cabinet Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --container-max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration-fast, .15s) var(--ease-standard, cubic-bezier(.4,0,.2,1));
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary-200);
}
.btn-ghost:hover {
  background: var(--primary-50);
  border-color: var(--primary);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 18px; }
.btn-block { width: 100%; }

/* On dark sections, ghost button needs white text */
.section-dark .btn-ghost,
.hero .btn-ghost,
.section-cta .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,.25);
}
.section-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.section-cta .btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: white;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 20, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand-link {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: white;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  display: block;
  height: auto;
}
.brand-logo-sm { width: 130px; }     /* header da landing */
.brand-logo-md { width: 180px; }     /* footer da landing */
.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  transition: color var(--duration-fast, .15s) ease;
}
.site-nav a:hover { color: white; }

@media (max-width: 768px) {
  .site-nav { display: none; }
}

/* === HERO === */
.hero {
  background: var(--ink);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(94,58,238,.25), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,77,109,.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 24px;
}
.hero-copy h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-copy .subhead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.8);
  margin: 0 0 32px;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-fineprint {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* Hero device mockup */
.device-frame {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  transform: rotate(-1deg);
}
.device-chrome {
  background: rgba(255,255,255,.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.device-chrome .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.device-url {
  margin-left: 16px;
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.device-content {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.device-stat {
  background: rgba(255,255,255,.04);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
}
.device-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.device-num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 4px;
}
.device-trend {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .device-frame { transform: none; }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--ink);
  color: white;
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.trust-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}
.trust-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}
.trust-fineprint {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin: 0;
}
@media (max-width: 700px) {
  .trust-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* === SECTIONS === */
.section {
  padding: 96px 0;
}
.section-light {
  background: var(--bg);
  color: var(--ink);
}
.section-dark {
  background: var(--ink);
  color: white;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  max-width: 900px;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
}
.section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(0,0,0,.65);
  max-width: 720px;
  margin: 0 0 48px;
}
.section-dark .section-lede {
  color: rgba(255,255,255,.75);
}
.section-fineprint {
  font-size: 13px;
  color: var(--muted);
  margin: 24px 0 0;
}
.section-dark .section-fineprint {
  color: rgba(255,255,255,.5);
}

/* === PROBLEM GRID === */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.problem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px;
}
.problem-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: white;
  margin-bottom: 6px;
}
.problem-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.problem-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
}
.problem-total {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin: 24px 0 0;
}
.problem-total em {
  font-style: normal;
  font-family: var(--display);
  font-weight: 800;
  color: var(--accent);
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* === PILLAR GRID === */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.pillar-card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: all var(--duration-base, .25s) ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.pillar-card.pillar-roadmap {
  background: linear-gradient(135deg, var(--primary-50), white);
  border-color: var(--primary-200);
}
.pillar-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.pillar-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.pillar-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,.65);
  margin: 0;
}
.pillar-roadmap .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.step-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
  color: white;
}
.step-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0;
}
@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* === ROI CALCULATOR === */
.roi-calc {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 16px;
  box-shadow: var(--shadow-2);
}
.roi-input-block label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.roi-input-block input[type="range"] {
  width: 100%;
  margin-bottom: 12px;
  accent-color: var(--primary);
}
.roi-input-val {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
}
.roi-result-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.roi-result {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border-subtle);
}
.roi-result.roi-result-highlight {
  background: linear-gradient(135deg, var(--primary-50), white);
  border-color: var(--accent);
  border-left: 3px solid var(--accent);
}
.roi-result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.roi-result-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.roi-result-highlight .roi-result-num {
  color: var(--primary);
}
.roi-result-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 800px) {
  .roi-calc { grid-template-columns: 1fr; padding: 24px; }
}

/* === TIER GRID (pricing) === */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.tier-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card.tier-featured {
  background: linear-gradient(160deg, rgba(94,58,238,.18), rgba(255,77,109,.05));
  border-color: var(--accent);
  border-width: 2px;
  transform: translateY(-8px);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.tier-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: white;
  margin: 0 0 6px;
}
.tier-icp {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0 0 20px;
}
.tier-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  color: white;
  letter-spacing: -0.025em;
  margin: 0 0 4px;
}
.tier-price small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: 0;
}
.tier-setup {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0 0 20px;
}
.tier-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-feats li {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}
.tier-feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card.tier-featured { transform: none; }
}

/* === CASE === */
.case-card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 16px;
  box-shadow: var(--shadow-2);
  border-left: 4px solid var(--accent);
}
.case-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
  font-style: italic;
}
.case-byline strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.case-byline span {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 700px) {
  .case-card { padding: 28px; }
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin-top: 16px;
}
.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: background var(--duration-fast, .15s) ease;
}
.faq-item[open] {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,77,109,.3);
}
.faq-item summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: white;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform var(--duration-fast, .15s) ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-content {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}

/* === SECTION CTA (final) === */
.section-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  color: white;
  padding: 96px 0;
  text-align: center;
}
.cta-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.cta-title em {
  font-style: normal;
  color: var(--accent);
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin: 0 0 32px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-fineprint {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* === SIGNUP FORM === */
.signup-form {
  max-width: 760px;
  margin: 32px auto 16px;
  text-align: left;
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: 1 / -1; }
.form-field > span,
.form-field > legend {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.02em;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 11px 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,77,109,.25);
}
.form-field textarea { resize: vertical; min-height: 80px; font-family: var(--body); }

.form-field-radio {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field-radio legend { margin-bottom: 4px; padding: 0; }
.form-field-radio > label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  transition: all .15s;
}
.form-field-radio > label:has(input:checked) {
  background: rgba(94,58,238,.25);
  border-color: var(--accent);
}
.form-field-radio input[type="radio"] { accent-color: var(--accent); margin: 0; }

.form-field-checkboxes {
  border: none;
  padding: 0;
  margin: 0;
}
.form-field-checkboxes legend { margin-bottom: 8px; padding: 0; }
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.form-field-checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  transition: all .15s;
}
.form-field-checkboxes label:has(input:checked) {
  background: rgba(94,58,238,.2);
  border-color: var(--primary-300);
}
.form-field-checkboxes input[type="checkbox"] { accent-color: var(--accent); margin: 0; }

.form-submit { width: 100%; margin-top: 8px; }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-error {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.4);
  border-radius: var(--radius-md);
  color: #FCA5A5;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 700px) {
  .signup-form { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: white;
  margin: 0 0 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0;
  max-width: 280px;
}
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 16px;
}
.footer-grid a, .footer-grid span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
  transition: color var(--duration-fast, .15s) ease;
}
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
