/* ─────────────────────────────────────────────
   AVARRA · Homepage Stylesheet
   Design system: premium, enterprise, restrained
   ───────────────────────────────────────────── */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }

:root {
  /* Core palette */
  --ink:        #0D0D0D;
  --body:       #404040;
  --muted:      #737373;
  --faint:      #A3A3A3;
  --surface:    #F5F5F3;
  --panel:      #FAFAF8;
  --white:      #FFFFFF;
  --border:     rgba(0,0,0,0.09);
  --border-med: rgba(0,0,0,0.13);

  /* Accent */
  --accent:     #0052E0;
  --accent-dim: rgba(0,82,224,0.08);
  --accent-mid: rgba(0,82,224,0.15);

  /* Typography scale */
  --text-xs:   0.72rem;
  --text-sm:   0.84rem;
  --text-base: 0.925rem;
  --text-md:   1rem;
  --text-lg:   1.15rem;

  /* Spacing */
  --section-pad: 6rem 5rem;
  --wrap-max:    1200px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, .brand { font-family: 'Raleway', sans-serif; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: #d4d4d4; border-radius: 3px; }

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

/* ── Typography utilities ─────────────────── */
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: var(--text-md);
  color: var(--body);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
}

/* ── Layout ───────────────────────────────── */
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: var(--section-pad);
}

/* ── Navigation ───────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.04em;
}
.brand em { font-style: normal; color: var(--ink); }
.brand em:last-child { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: var(--text-sm) !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: #003ec4 !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* ── Buttons ──────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: var(--text-base);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #003ec4;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  border: 1.5px solid var(--border-med);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

button.btn-primary { font-family: 'Raleway', sans-serif; }

/* ── Hero ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 5rem;
  padding: 9rem 5rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,5,25,0.58) 0%, rgba(0,10,40,0.45) 60%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.5s ease both;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.5s 0.08s ease both;
  max-width: 640px;
}

.hero h1 .accent {
  color: #7eb8ff;
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.5s 0.16s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.5s 0.24s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.32s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-trust-item::before {
  content: '✓';
  color: #7eb8ff;
  font-weight: 700;
  font-size: 0.78rem;
}

/* Hero metric cards (right column) */
.hero-sidebar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeLeft 0.6s 0.2s ease both;
}

.metric-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(10px);
}
.metric-card + .metric-card {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.metric-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.metric-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  min-width: 70px;
}

.metric-text-block {}
.metric-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.metric-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-guarantee {
  background: rgba(0,82,224,0.18);
  border: 1px solid rgba(0,82,224,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.hero-guarantee-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.hero-guarantee-text strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.hero-guarantee-text p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ── Dot grid texture (light sections) ───── */
.dot-grid {
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(0,82,224,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.dot-grid-surface {
  background-color: var(--surface);
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Problem section ──────────────────────── */
.problem-section {
  background: #080E1E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,82,224,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.problem-section .section-label { color: #7eb8ff; }
.problem-section .section-title { color: var(--white); }
.problem-section .section-sub   { color: rgba(255,255,255,0.6); }

.problem-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: start;
}

.problem-sticky {
  position: sticky;
  top: 90px;
}

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:first-child { padding-top: 0; }
.problem-item:last-child { border-bottom: none; padding-bottom: 0; }

.problem-item {
  border-bottom-color: rgba(255,255,255,0.08) !important;
}

.problem-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,82,224,0.15);
  border: 1px solid rgba(0,82,224,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  color: #7eb8ff;
  margin-top: 2px;
}

.problem-item h4 {
  font-size: var(--text-md);
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.problem-item p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── Solution / Process section ───────────── */
.process-section {
  background-color: #F7F7F5;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  border-bottom: 1px solid var(--border);
}

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.process-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(0,82,224,0.10);
}

.process-card {
  position: relative;
  overflow: hidden;
}
.process-card::before {
  content: attr(data-step);
  position: absolute;
  top: -0.5rem; right: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0,82,224,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-step-num {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.process-card h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.process-card p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.7;
}

.process-connector {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border-med);
  font-size: 1.2rem;
  z-index: 1;
  pointer-events: none;
}

/* ── Differentiators ──────────────────────── */
.diff-section {
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(0,82,224,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  border-bottom: 1px solid var(--border);
}

.diff-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}

.diff-sticky {
  position: sticky;
  top: 90px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 1.65rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.diff-card:hover {
  border-color: var(--border);
  border-top-color: var(--accent);
  box-shadow: 0 12px 36px rgba(0,82,224,0.10);
  transform: translateY(-3px);
}

.diff-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.diff-card h4 {
  font-size: var(--text-md);
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.diff-card p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.68;
}

/* ── Outcomes strip ───────────────────────── */
.outcomes-strip {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.outcomes-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 4.5rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.outcome-item {
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.outcome-item:first-child { padding-left: 0; }
.outcome-item:last-child { border-right: none; }

.outcome-num {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.outcome-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.2rem;
}

.outcome-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.outcomes-footnote {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  padding: 0 5rem 1.5rem;
  max-width: var(--wrap-max);
  margin: 0 auto;
}

/* ── Proof / Testimonials ─────────────────── */
.proof-section {
  background: #080E1E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.proof-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,82,224,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.proof-section .section-label { color: #7eb8ff; }
.proof-section .section-title { color: var(--white); }

.proof-header {
  text-align: left;
  margin-bottom: 3rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.proof-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.proof-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,82,224,0.5);
  box-shadow: 0 0 30px rgba(0,82,224,0.12);
}
.proof-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem; right: 1.25rem;
  font-family: 'Raleway', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,82,224,0.2);
  line-height: 1;
  pointer-events: none;
}

.proof-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #F59E0B;
  font-size: 0.85rem;
}

.proof-quote {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.proof-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}

.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,82,224,0.25);
  border: 1px solid rgba(0,82,224,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: #7eb8ff;
  flex-shrink: 0;
}

.proof-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
}
.proof-title {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}

/* ── Services / Roles — see below ────────── */

.roles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0;
}

.roles-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.75rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-med);
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.role-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.role-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.role-tag-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.role-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
}
.rt-sales    { background: var(--accent-dim); color: var(--accent); }
.rt-mgmt     { background: rgba(245,158,11,0.10); color: #B45309; }
.rt-ops      { background: rgba(0,82,224,0.08); color: var(--accent); }
.rt-support  { background: rgba(34,197,94,0.10); color: #16a34a; }
.rt-hot      { background: rgba(239,68,68,0.08); color: #DC2626; }

.role-card h3 {
  font-size: var(--text-base);
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.role-card p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.role-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.role-cta:hover { gap: 0.6rem; }

/* ── Services / Roles ─────────────────────── */
.roles-section {
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(0,82,224,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Pricing ──────────────────────────────── */
.pricing-section {
  background: #0D1117;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,82,224,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-section .section-label { color: #7eb8ff; }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-sub   { color: rgba(255,255,255,0.55); }

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.p-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.p-card.featured {
  border-color: rgba(0,82,224,0.6);
  background: rgba(0,82,224,0.08);
}
.p-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.2);
}
.p-card.featured:hover {
  border-color: rgba(0,82,224,0.8);
  box-shadow: 0 20px 50px rgba(0,82,224,0.2);
}

.p-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  white-space: nowrap;
}

.p-tier {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.p-highlight {
  font-size: 0.72rem;
  color: #7eb8ff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.p-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.p-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}
.p-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.p-cta {
  display: block;
  text-align: center;
  margin-top: 1.75rem;
  padding: 0.78rem;
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: var(--text-base);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.p-cta.solid { background: var(--accent); color: var(--white); }
.p-cta.solid:hover { background: #003ec4; }
.p-cta.ghost { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); background: transparent; }
.p-cta.ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.07); color: var(--white); }

/* ── FAQ ──────────────────────────────────── */
.faq-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 6rem;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 90px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: 'Raleway', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-item button:hover { color: var(--accent); }

.faq-plus {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }

.faq-ans {
  display: none;
  padding-bottom: 1.2rem;
}
.faq-ans p {
  font-size: var(--text-sm);
  color: var(--body);
  line-height: 1.75;
}

/* ── Final CTA ────────────────────────────── */
.cta-section {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta-left {}

.cta-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.1rem;
}

.cta-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 300;
  max-width: 440px;
}

.cta-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.cta-bullets li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cta-bullets li::before {
  content: '→';
  color: #7eb8ff;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-right {}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cta-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--accent);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: var(--text-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn-primary:hover {
  background: #e8eeff;
  transform: translateY(-2px);
}

.cta-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: var(--text-md);
  border: 1.5px solid rgba(255,255,255,0.22);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.cta-btn-outline:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────── */
footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 5rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-brand { display: block; margin-bottom: 0.85rem; }
.footer-brand .brand { color: rgba(255,255,255,0.9); }
.footer-brand .brand em:last-child { color: #7eb8ff; }

.footer-brand-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.footer-brand-tag {
  font-size: var(--text-xs);
  color: #7eb8ff;
  font-weight: 700;
  margin-top: 0.5rem;
}

.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }

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

.footer-address {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.footer-social {
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer-social:hover { color: rgba(255,255,255,0.75); }

.footer-policy-links {
  display: flex;
  gap: 1.5rem;
}
.footer-policy-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy-links a:hover { color: rgba(255,255,255,0.65); }

/* ── Candidate Modal ──────────────────────── */
#candidate-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  position: relative;
}

.modal-inner {
  padding: 2.25rem;
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--faint);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--ink); }

.modal-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.modal-subtitle {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--border-med);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: var(--text-md);
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background 0.2s;
}
.form-submit:hover { background: #003ec4; }

.form-note {
  font-size: 0.73rem;
  color: var(--faint);
  text-align: center;
  margin-top: 0.6rem;
}

.form-success {
  display: none;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}
.form-success p { color: var(--accent); font-weight: 700; font-size: var(--text-base); }

/* ── Role modal ───────────────────────────── */
#modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.role-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.role-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.role-modal-close:hover { color: var(--ink); }

.role-modal-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: var(--text-base);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.role-modal-cta:hover { background: #003ec4; }

/* ── Cookie banner ────────────────────────── */
#av-cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Inter', sans-serif;
}

.cookie-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  line-height: 1.6;
}
.cookie-text a { color: var(--accent); text-decoration: underline; font-weight: 600; }

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-decline {
  padding: 0.48rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }

.cookie-accept {
  padding: 0.48rem 1.25rem;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.cookie-accept:hover { background: #003ec4; }

/* ── Button sweep effect ──────────────────── */
@keyframes av-sweep {
  0%   { left: -100%; opacity: 1; }
  100% { left: 150%; opacity: 0.5; }
}
.av-sweep-host { position: relative !important; overflow: hidden !important; }
.av-sweep-beam {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: av-sweep 0.55s ease-out forwards;
  pointer-events: none; border-radius: inherit; z-index: 10;
}

/* ── Animations ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(14px);
}

/* ── Mobile nav ───────────────────────────── */
.mob-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 9999;
}
.mob-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mob-open-body .mob-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-open-body .mob-toggle span:nth-child(2) { opacity: 0; }
.mob-open-body .mob-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav dropdown ─────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-arrow {
  font-size: 0.6rem; margin-left: 3px; display: inline-block;
  transition: transform 0.2s; vertical-align: middle;
}
.nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem; min-width: 540px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999; pointer-events: none;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown::after { content:''; position:absolute; top:-18px; left:0; right:0; height:18px; }
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; background: var(--white);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.nav-dd-col-head {
  font-family: 'Raleway', sans-serif; font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent);
  margin-bottom: 0.6rem; padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--accent-mid);
}
.nav-dropdown a {
  display: block; font-size: 0.8rem; color: var(--body); padding: 0.25rem 0;
  font-weight: 400; transition: color 0.15s, padding-left 0.15s;
  white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--accent); padding-left: 4px; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1200px) {
  nav { padding: 0 1.25rem !important; overflow: visible !important; }
  .mob-toggle { display: flex !important; }
  .nav-dropdown { display: none !important; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; width: 100%;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1.5rem;
    z-index: 9998;
    list-style: none;
    gap: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .nav-links.mob-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 0.5rem; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--body);
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-links .nav-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  :root { --section-pad: 4rem 1.75rem; }

  .hero {
    grid-template-columns: 1fr;
    padding: 8rem 1.75rem 4.5rem;
    min-height: auto;
  }
  .hero-sidebar { display: none; }

  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-sticky { position: static; }

  .process-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .process-connector { display: none; }

  .diff-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .diff-sticky { position: static; }
  .diff-grid { grid-template-columns: 1fr 1fr; }

  .outcomes-inner { grid-template-columns: 1fr 1fr; padding: 3.5rem 1.75rem; }
  .outcome-item { padding: 1.5rem 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .outcome-item:nth-child(2n) { border-right: none; }
  .outcomes-footnote { padding: 0 1.75rem 1.25rem; }

  .proof-grid { grid-template-columns: 1fr 1fr; }

  .roles-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .roles-grid { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }

  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-sticky { position: static; }

  .cta-inner { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.75rem; }

  footer { padding: 3rem 1.75rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }

  .diff-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr 1fr; padding: 3rem 1.25rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
