:root {
  --blue: #0470bd;
  --yellow: #f9b702;
  --white: #fbfbfb;
  --graphite: #2d2d2d;
  --muted: #6b7280;
  --line: rgba(45,45,45,0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--graphite);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.container { width: min(1160px, 92vw); margin: 0 auto; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 4vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(4,112,189,0.25);
  backdrop-filter: blur(14px);
  background: rgba(4,112,189,0.92);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-logo-dark { display: none; }
.nav-logo-white { display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; opacity: 0.7; transition: opacity 0.2s, color 0.3s;
  color: var(--white);
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--yellow); color: var(--graphite) !important;
  padding: 10px 22px; opacity: 1 !important;
  font-size: 0.78rem !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s !important;
  border-radius: 2px;
}
.nav-cta:hover { background: #e5a800; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: background 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Anel decorativo atrás da foto */
.hero-deco-ring {
  position: absolute;
  width: clamp(400px, 55vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  right: -10vw; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-deco-ring::before {
  content: '';
  position: absolute; inset: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.hero-deco-dots {
  position: absolute;
  left: 3vw; bottom: 80px;
  width: 120px; height: 80px;
  background-image: radial-gradient(circle, rgba(249,183,2,0.35) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(40px, 6vh, 64px);
  padding: clamp(48px, 8vh, 100px) 4vw clamp(32px, 5vh, 60px);
  position: relative; z-index: 2;
}

/* ── Conteúdo ── */
.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--yellow);
  margin-bottom: 20px;
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero-h1-outline {
  display: block;
  -webkit-text-stroke: 2px rgba(251,251,251,0.55);
  color: transparent;
}

.hero-desc {
  max-width: 42ch;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(251,251,251,0.68);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--graphite);
  padding: 14px 28px; font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s, gap 0.2s;
  border-radius: 3px;
}
.btn-primary:hover { background: #e8aa00; transform: translateY(-2px); gap: 12px; }
.btn-arrow { font-size: 1rem; line-height: 1; }
.btn-outline-hero {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(251,251,251,0.28); color: var(--white);
  padding: 14px 24px; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 3px;
}
.btn-outline-hero:hover {
  border-color: rgba(251,251,251,0.7);
  background: rgba(251,251,251,0.07);
}

/* Stats block */
.hero-stats-block {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(251,251,251,0.14);
}
.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1;
  color: var(--yellow);
}
.hero-stat span {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(251,251,251,0.5);
  line-height: 1.4; display: block; margin-top: 2px;
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(251,251,251,0.15);
  flex-shrink: 0;
}

/* Barra inferior */
.hero-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4vw;
  border-top: 1px solid rgba(251,251,251,0.08);
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(251,251,251,0.3);
  position: relative; z-index: 2;
}
.hero-scroll-icon {
  width: 26px; height: 42px;
  border: 1.5px solid rgba(251,251,251,0.2);
  border-radius: 20px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll-icon span {
  display: block; width: 4px; height: 8px;
  background: rgba(251,251,251,0.4);
  border-radius: 4px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── SOBRE O PROF ─── */
.about-prof {
  background: var(--white);
  padding: clamp(72px, 10vw, 140px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -6px -6px 16px 16px;
  background: var(--blue);
  border-radius: 4px;
  z-index: 0;
}
.about-photo img {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  border-radius: 4px;
  display: block;
}
.about-label {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue); margin-bottom: 16px;
}
.about-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  line-height: 1.02; margin-bottom: 24px;
}
.about-desc {
  font-size: 1rem; line-height: 1.8;
  color: var(--muted); margin-bottom: 16px;
}
.about-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.about-chips span {
  background: rgba(4,112,189,0.08);
  color: var(--blue);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 40px;
  border: 1px solid rgba(4,112,189,0.18);
}
.about-cta { display: inline-flex; }

/* ─── DIVISOR MÉTODO → VESTIBULAR ─── */
.section-divider {
  background: var(--yellow);
  padding: 28px 0;
}
.divider-inner {
  display: flex; align-items: center; gap: 24px;
}
.divider-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.1em;
  color: var(--graphite);
  white-space: nowrap;
}
.divider-line {
  flex: 1;
  height: 2px;
  background: rgba(45,45,45,0.2);
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--blue);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.06em;
  color: #fff; white-space: nowrap;
}
.marquee-track .dot {
  color: var(--yellow); font-size: 1.4rem; line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── MÉTODO ─── */
.method {
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--white);
}
.method-top { margin-bottom: 12px; }
.method-label {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue);
  margin-bottom: 16px;
}
.method-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
}
.method-intro {
  max-width: 62ch;
  font-size: 1.05rem; line-height: 1.8;
  color: var(--muted); margin-bottom: 48px;
}
.method-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.method-step-card {
  background: var(--blue); color: var(--white);
  padding: clamp(24px, 3vw, 40px);
  position: relative;
  transition: transform 0.3s;
}
.method-step-card:hover { transform: translateY(-4px); }
.method-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem; color: var(--yellow);
  line-height: 1; margin-bottom: 16px;
}
.method-step-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.02em;
  margin-bottom: 8px; line-height: 1.1;
}
.method-step-card p {
  font-size: 0.87rem; color: rgba(251,251,251,0.7); line-height: 1.6;
}

/* ─── VESTIBULAR UERJ ─── */
.vestibular {
  background: var(--white); color: var(--graphite);
  padding: clamp(72px, 10vw, 140px) 0;
}
.vest-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.vest-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1;
}
.vest-sub {
  max-width: 36ch; font-size: 0.92rem;
  color: var(--muted); line-height: 1.6;
}
.vest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vest-card {
  background: var(--blue);
  border: 1px solid rgba(4,112,189,0.15);
  padding: clamp(28px, 3vw, 44px);
  color: var(--white);
  transition: background 0.3s;
}
.vest-card:hover { background: #0360a8; }
.vest-card-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  color: var(--graphite);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; margin-bottom: 20px;
  border-radius: 2px;
}
.vest-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem; letter-spacing: 0.02em;
  margin-bottom: 10px; line-height: 1.1;
}
.vest-card p {
  font-size: 0.88rem; color: rgba(251,251,251,0.72); line-height: 1.7;
}

/* ─── PULLQUOTE ─── */
.pullquote {
  background: var(--yellow);
  color: var(--graphite);
  padding: clamp(48px, 7vw, 88px) 0;
  text-align: center;
}
.pullquote blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.1;
  max-width: 20ch;
  margin: 0 auto 16px;
}
.pq-author {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.6;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--graphite); color: var(--graphite);
  padding: 12px 28px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 24px; transition: background 0.2s, color 0.2s;
  border-radius: 2px;
}
.btn-ghost:hover { background: var(--graphite); color: var(--yellow); }
.btn-ghost .arrow { transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ─── PROJECTS ─── */
.projects {
  background: var(--blue); color: var(--white);
  padding: clamp(72px, 10vw, 140px) 0;
}
.projects-label {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 16px;
}
.projects-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: 1;
  margin-bottom: 48px; max-width: 16ch;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.project-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(251,251,251,0.12);
  padding: clamp(28px, 3vw, 44px);
  position: relative; transition: background 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.project-card:not(.featured):hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(251,251,251,0.25);
}
.project-card.featured {
  background: var(--yellow); color: var(--graphite);
  border-color: var(--yellow);
}
.project-card.featured .project-name { color: var(--graphite); }
.project-card.featured .project-items li { color: var(--graphite); }
.project-badge {
  display: inline-block; background: var(--yellow); color: var(--graphite);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 12px; margin-bottom: 16px;
  align-self: flex-start; border-radius: 2px;
}
.project-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 0.04em; margin-bottom: 12px; line-height: 1.1;
}
.project-desc {
  font-size: 0.88rem; line-height: 1.6;
  color: rgba(251,251,251,0.62); margin-bottom: 20px;
}
.project-card.featured .project-desc { color: rgba(45,45,45,0.7); }
.project-items {
  list-style: none; display: grid; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.project-items li {
  font-size: 0.88rem; display: flex; align-items: center; gap: 10px;
}
.project-items li::before {
  content: '✓'; font-weight: 800; color: var(--yellow); flex-shrink: 0;
}
.project-card.featured .project-items li::before { color: var(--blue); }
.btn-project {
  display: block; text-align: center; width: 100%;
  padding: 13px; font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1.5px solid currentColor; transition: background 0.2s, color 0.2s;
  border-radius: 2px; margin-top: auto;
}
.project-card:not(.featured) .btn-project { color: var(--white); }
.project-card:not(.featured) .btn-project:hover {
  background: var(--white); color: var(--graphite);
}
.project-card.featured .btn-project {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
}
.project-card.featured .btn-project:hover {
  background: var(--graphite); color: var(--white); border-color: var(--graphite);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--white);
}
.test-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.test-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem); line-height: 1;
}
.test-sub {
  max-width: 30ch; font-size: 0.92rem;
  color: var(--muted); line-height: 1.6;
}
.test-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.test-card {
  background: var(--blue); color: var(--white);
  padding: clamp(20px, 2.5vw, 32px);
  position: relative;
  transition: transform 0.3s, background 0.3s;
}
.test-card:hover { transform: translateY(-4px); background: #0360a8; }
.test-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--yellow); line-height: 0.8;
  margin-bottom: 12px;
}
.test-text {
  font-size: 0.9rem; line-height: 1.65;
  color: rgba(251,251,251,0.82); margin-bottom: 16px;
  font-style: italic;
}
.test-author {
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--yellow);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--white);
  padding: clamp(72px, 10vw, 140px) 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact-label {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue); margin-bottom: 16px;
}
.contact-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; margin-bottom: 20px;
}
.contact-desc { font-size: 1rem; line-height: 1.75; color: var(--muted); }
.contact-info { margin-top: 32px; display: grid; gap: 14px; }
.contact-info a {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 600; transition: color 0.2s;
}
.contact-info a:hover { color: var(--blue); }
.contact-info .icon {
  width: 40px; height: 40px; background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 2px;
}

form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; display: block; margin-bottom: 5px;
}
input, textarea, select {
  width: 100%; background: var(--blue); color: var(--white);
  border: none; padding: 14px 16px;
  font-family: inherit; font-size: 0.9rem;
  outline: none; transition: box-shadow 0.2s;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23fbfbfb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
input:focus, textarea:focus, select:focus {
  border-bottom-color: var(--yellow);
}
textarea { resize: vertical; min-height: 110px; }
::placeholder { color: rgba(251,251,251,0.3); }
.btn-submit {
  background: var(--yellow); color: var(--graphite);
  padding: 14px 32px; font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.2s;
  font-family: inherit; width: 100%; border-radius: 2px;
}
.btn-submit:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }
.form-feedback { font-size: 0.85rem; font-weight: 700; min-height: 1.2em; }
.form-feedback.ok { color: #1a7a4a; }
.form-feedback.err { color: #c0392b; }

/* ─── FOOTER ─── */
footer {
  background: var(--blue); color: var(--white);
  padding: clamp(40px, 6vw, 60px) 0 20px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(251,251,251,0.15);
  margin-bottom: 20px;
}
.footer-brand { margin-bottom: 12px; }
.footer-logo-img { height: 48px; width: auto; display: block; }
.footer-tagline {
  font-size: 0.86rem; color: rgba(251,251,251,0.4);
  line-height: 1.6; max-width: 28ch;
}
.footer-col h5 {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--yellow); margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.86rem;
  color: rgba(251,251,251,0.5); margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: rgba(251,251,251,0.25);
}
.footer-credit {
  color: rgba(251,251,251,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.footer-credit:hover { color: var(--yellow); }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
}
.reveal.on { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--blue); z-index: 99; padding: 40px 4vw;
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  color: var(--white); letter-spacing: 0.04em;
  padding: 12px 0; border-bottom: 1px solid rgba(251,251,251,0.15);
}
.mobile-nav .m-cta {
  background: var(--yellow); color: var(--graphite) !important;
  text-align: center; padding: 16px !important;
  border: none !important; margin-top: 16px;
  border-radius: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .method-steps-grid { grid-template-columns: 1fr 1fr; }
  .vest-grid { grid-template-columns: 1fr; max-width: 560px; }
  .projects-grid { grid-template-columns: 1fr; max-width: 480px; }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-h1 { font-size: clamp(3rem, 12vw, 6rem); }
  .hero-deco-ring { display: none; }
  .hero-deco-dots { display: none; }
  .hero-stats-block { gap: 16px; }
  .hero-stat-divider { display: none; }
  .hero-stats-block { flex-wrap: wrap; gap: 20px 32px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
  .about-photo::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .vest-top { flex-direction: column; align-items: flex-start; }
  .divider-inner { gap: 16px; }
}
@media (max-width: 640px) {
  .method-steps-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
