/* ===== VIJAY — Landing Page Styles ===== */

:root {
  --bg: #000000;
  --bg-alt: #060606;
  --accent: #E85D20;
  --accent-light: #FF7A3D;
  --text: #FFFFFF;
  --text-secondary: #999999;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(232, 93, 32, 0.5);
  --glow: rgba(232, 93, 32, 0.16);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --container-w: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* subtle film-grain texture for depth on pure black */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header, main, .site-footer, .mobile-fixed-cta { position: relative; z-index: 1; }

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

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* ---------- Typography ---------- */

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow.center { text-align: center; }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(32px, 5vw, 56px);
}

.section-title { margin-bottom: 16px; }
.section-title.center { text-align: center; }

.section-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 56px;
}

.section-subtitle.center { text-align: center; }

.body-text {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 46ch;
}

.center { text-align: center; }

.closing-line {
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  text-align: center;
  margin-top: 56px;
  line-height: 1.5;
}

.closing-line.small { font-size: 17px; color: var(--text); font-weight: 400; margin-top: 48px; }

.text-link { color: var(--accent); font-weight: 700; }
.text-link:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 0 rgba(232, 93, 32, 0);
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 10px 30px rgba(232, 93, 32, 0.35);
}

.btn-dark {
  background: #000000;
  color: #FFFFFF;
  padding: 20px 48px;
  font-size: 17px;
}

.btn-dark:hover { opacity: 0.85; }

.btn-link {
  color: var(--text);
  text-decoration: underline;
  font-weight: 400;
  margin-left: 24px;
}

.hero-ctas { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: flex; align-items: center; }

.brand-logo { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--text); }
.main-nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--glow) 0%, rgba(232, 93, 32, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sub-headline { font-size: 20px; font-weight: 600; margin: 20px 0 16px; }

/* ---------- Cards grid (generic) ---------- */

.cards-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow);
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.card-icon svg { width: 100%; height: 100%; }

.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* ---------- Problema section ---------- */

.problema { background: var(--bg); }

.differentiators { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.differentiators li { font-size: 16px; font-weight: 600; }
.differentiators .arrow { color: var(--accent); margin-right: 8px; }

/* ---------- A VIJAY (diferenciação) ---------- */

.vijay-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.vijay-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.vijay-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.vijay-highlight {
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.big-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
}

.big-number-caption {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 8px;
}

.vijay-highlight .quote-block { text-align: left; margin-top: 32px; margin-bottom: 0; }

/* ---------- Quote block & authority tags ---------- */

.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  font-style: italic;
  color: #CCCCCC;
  font-size: 17px;
  line-height: 1.6;
  margin: 28px 0;
}

.quote-block cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
}

.authority-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.authority-tags.center { justify-content: center; }

.authority-tag {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Founder sections (Victor / Jacimara) ---------- */

.founder-section { background: var(--bg); }
.founder-section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.founder-grid-reverse { grid-template-columns: 1.2fr 0.8fr; }
.founder-grid-reverse .founder-photo { order: 2; }

.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.founder-name { margin: 8px 0 12px; }

.authority-line {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

/* ---------- Como a VIJAY trabalha ---------- */

.como-trabalha { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.como-trabalha-photo {
  max-width: 720px;
  margin: 0 auto 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.como-trabalha-photo img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }

.metric-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 48px;
  text-align: center;
}

.metric-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}

.metric-label {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
}

/* ---------- Time Viçosa ---------- */

.time-section { background: var(--bg); }

.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.time-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ---------- Unidade JF ---------- */

.unidade-jf { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.unidade-jf-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}

.unidade-jf-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.unidade-jf-detail {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.unidade-jf-detail .body-text { max-width: none; text-align: left; }
.unidade-jf-detail .authority-line { text-align: center; }

/* ---------- Serviços ---------- */

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tab-btn:hover { border-color: var(--border-hover); color: var(--text); }

.tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.category-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  font-style: italic;
  margin-top: 20px;
}

.servicos-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card { display: flex; flex-direction: column; position: relative; }

.tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(232, 93, 32, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tag-outline {
  background: transparent;
  border: 1px solid var(--accent);
}

.pitch {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.includes li {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.includes-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 14px 0 8px;
}

.includes-label:first-of-type { margin-top: 4px; }

.card-note {
  color: var(--text-secondary);
  font-size: 13px;
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.card-destaque {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(232,93,32,0.1) 0%, var(--bg-alt) 60%);
  padding-top: 40px;
}

.ribbon {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.servicos-cta {
  max-width: 560px;
  margin: 72px auto 0;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(232,93,32,0.06) 0%, rgba(255,255,255,0.01) 100%);
}

.servicos-cta .display { margin-bottom: 12px; }
.servicos-cta .btn { margin-top: 8px; }

.micro-copy-dark {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 16px;
}

/* ---------- Métodos ---------- */

.metodos { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.cards-method {
  grid-template-columns: repeat(4, 1fr);
}

.method-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.method-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow);
}

.method-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.method-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.method-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* ---------- Resultados / Cases ---------- */

.cases-grid {
  grid-template-columns: repeat(4, 1fr);
}

.case-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow);
}

.case-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(232,93,32,0.1) 0%, var(--bg-alt) 60%);
}

.case-icon { width: 32px; height: 32px; color: var(--accent); margin-bottom: 16px; }
.case-icon svg { width: 100%; height: 100%; }

.case-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.case-segment { font-weight: 700; font-size: 15px; margin-bottom: 14px; }

.case-services { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.case-services .tag { margin-bottom: 0; font-size: 10px; }

.case-result { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 12px; }

.case-impact {
  color: var(--accent);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.number-bar {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.number-bar-item {
  text-align: center;
  padding: 0 40px;
  border-left: 1px solid var(--border);
}

.number-bar-item:first-child { border-left: none; }

/* ---------- Unidades ---------- */

.unidades { background: var(--bg-alt); border-top: 1px solid var(--border); }

.unit-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.unit-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow);
}

.pin { width: 32px; height: 32px; color: var(--accent); margin-bottom: 16px; }
.pin svg { width: 100%; height: 100%; }

.unit-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.unit-card .tag { margin-bottom: 12px; }
.unit-card p { color: var(--text-secondary); font-size: 15px; }

/* ---------- CTA Final ---------- */

.cta-final {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #0A0A0A;
}

.cta-final .display { color: #0A0A0A; }

.cta-subtitle {
  max-width: 560px;
  margin: 24px auto 40px;
  font-size: 17px;
  color: rgba(10,10,10,0.75);
  line-height: 1.6;
}

.cta-final .btn-dark { margin-top: 8px; }

.micro-copy {
  font-size: 13px;
  color: rgba(10,10,10,0.65);
  margin-top: 20px;
}

.cta-footer-line {
  font-size: 13px;
  color: rgba(10,10,10,0.65);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,10,10,0.15);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo { height: 48px; width: auto; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--text-secondary); font-size: 14px; }
.footer-nav a:hover { color: var(--accent); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; text-align: right; }
.footer-contact a { color: var(--text-secondary); font-size: 14px; }
.footer-contact a:hover { color: var(--accent); }
.copyright { color: #555; font-size: 12px; margin-top: 8px; }

/* ---------- Mobile fixed CTA ---------- */

.mobile-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--accent);
  padding: 14px 20px;
  text-align: center;
}

.mobile-fixed-cta a {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .cards-method { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .footer-contact { text-align: left; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .cards-3 { grid-template-columns: 1fr; }

  .vijay-grid { grid-template-columns: 1fr; }
  .founder-grid, .founder-grid-reverse { grid-template-columns: 1fr; }
  .founder-grid-reverse .founder-photo { order: 0; }
  .founder-photo img { max-width: 360px; height: auto; margin: 0 auto; aspect-ratio: 1 / 1; }

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

  .unidade-jf-photos { grid-template-columns: 1fr; }

  .metric-row { gap: 32px; flex-wrap: wrap; }

  .number-bar { flex-wrap: wrap; gap: 24px; }
  .number-bar-item { border-left: none; padding: 0 20px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav a { font-size: 18px; width: 100%; }
  .nav-cta { text-align: center; }

  .hamburger { display: flex; }

  .cards-method { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }

  .btn-link { margin-left: 0; display: block; margin-top: 12px; }

  .mobile-fixed-cta { display: block; }
  body { padding-bottom: 64px; }
}
