/* ============================================
   MONTEIRO AGENCY — style.css
   Paleta: Preto #141414 + Laranja #FF8C00
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

/* ─── VARIÁVEIS ─────────────────────────────── */
:root {
  --accent:          #FF8C00;
  --accent-light:    #FFA833;
  --accent-dark:     #C84A00;
  --accent-red:      #C83010;
  --gradient:        linear-gradient(135deg, #FFB020 0%, #FF6B00 55%, #C83010 100%);
  --gradient-glow:   rgba(255, 140, 0, 0.18);
  --gradient-dim:    rgba(255, 140, 0, 0.10);

  --bg:              #141414;
  --bg2:             #1a1a1a;
  --bg3:             #1f1f1f;
  --bg4:             #242424;

  --text:            #F5EFE6;
  --text-muted:      #7a736a;
  --text-faint:      #3a3530;

  --border:          rgba(255, 140, 0, 0.18);
  --border-dim:      rgba(255, 255, 255, 0.06);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ──────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}


/* ─── NAV ────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(20,20,20,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

#navbar.scrolled {
  background: rgba(14,14,14,0.97);
  padding: 14px 64px;
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .dot {
  width: 7px;
  height: 7px;
  background: var(--gradient);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
   
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gradient);
  padding: 11px 26px;
  text-decoration: none;
   
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,107,0,0.35);
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
   
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFC040 0%, #FF8500 55%, #D84020 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255,107,0,0.4);
}

.btn-primary span,
.btn-primary .arrow {
  position: relative;
  z-index: 1;
}

.btn-primary .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-primary:hover .arrow { transform: translateX(5px); }

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  border: 1px solid rgba(255,140,0,0.3);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
   
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-dim);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn-outline:hover::before { transform: scaleX(1); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline span {
  position: relative;
  z-index: 1;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 64px 0;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 65%);
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,48,16,0.08) 0%, transparent 65%);
  bottom: 10%;
  right: 10%;
  pointer-events: none;
}

.hero-line-v {
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--border);
  top: 0;
}
.hero-line-v.left  { left: 64px; }
.hero-line-v.right { right: 64px; }

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gradient);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8.5vw, 124px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line2 {
  display: block;
  padding-left: 140px;
}

.hero-sub {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease infinite 1.5s;
}

@keyframes scrollPulse {
  0%   { height: 0;    opacity: 1; }
  100% { height: 64px; opacity: 0; }
}

/* Hero badge */
.hero-badge {
  position: absolute;
  right: 130px;
  top: 50%;
  transform: translateY(-50%);
  width: 148px;
  height: 148px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  animation: badgeIn 1s ease 1.4s forwards;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg, transparent 90deg, transparent 360deg);
  opacity: 0.25;
  animation: rotateSlow 12s linear infinite;
}

.hero-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero-badge .label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes badgeIn {
  to { opacity: 1; }
}

/* ─── MARQUEE ────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 17px 0;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.3s;
}

.marquee-item:hover { color: var(--accent); }

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--gradient);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION SHARED ─────────────────────────── */
section {
  padding: 120px 64px;
  position: relative;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gradient);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SERVICES ───────────────────────────────── */
.services {
  background: var(--bg2);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 32px;
}

.services-intro {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.75;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg3);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  background: var(--bg);
  border-color: var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  z-index: 2;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient);
  transition: width 0.45s ease;
}

.service-card:hover::after { width: 100%; }

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 28px;
  transition: color 0.4s;
}

.service-card:hover .card-num {
  color: rgba(255, 140, 0, 0.15);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 18px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
}

.card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dim);
  gap: 16px;
}

.card-items li:last-child { border-bottom: none; }

.item-name { color: var(--text); font-weight: 400; }

.item-price {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.card-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
}

/* ─── TABLE BANNER ───────────────────────────── */
.table-banner {
  padding: 72px 64px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.table-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gradient);
}

.table-banner-text .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.table-banner-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.15;
}

.table-banner-text h3 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.table-banner-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 300;
}

.table-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── PROCESS ────────────────────────────────── */
.process {
  background: var(--bg);
}

.process-header {
  margin-bottom: 72px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step {
  padding: 40px 32px;
  background: var(--bg3);
  position: relative;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s, border-color 0.3s;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:hover {
  background: var(--bg2);
  border-color: var(--border);
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step:hover::before { transform: scaleX(1); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── ABOUT ──────────────────────────────────── */
.about-section {
  background: var(--bg2);
  padding: 120px 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 480px;
}

.about-rect {
  position: absolute;
  border: 1px solid var(--border);
}

.about-rect.r1 {
  inset: 0;
  background: var(--bg3);
}

.about-rect.r2 {
  width: 55%;
  height: 55%;
  bottom: -24px;
  right: -24px;
  background: var(--gradient-dim);
  border-color: rgba(255,140,0,0.3);
}

.about-rect.r3 {
  width: 38%;
  height: 28%;
  top: -18px;
  left: -18px;
  background: var(--bg2);
}

.about-inner {
  position: absolute;
  inset: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  z-index: 2;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 28px;
  font-weight: 300;
}

.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border: 1px solid var(--border-dim);
  transition: border-color 0.3s, background 0.3s;
   
}

.pillar:hover {
  border-color: rgba(255,140,0,0.35);
  background: var(--gradient-dim);
}

.pillar-icon {
  font-size: 18px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-text {
  font-size: 14px;
  font-weight: 400;
}

/* ─── CTA ────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 148px 64px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
}

.cta-title em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  padding: 56px 64px;
  border-top: 1px solid var(--border-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--bg);
  position: relative; /* ensure stays in document flow */
}

footer nav {
  position: static; /* never fixed */
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.footer-brand {}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
   
}

.footer-link:hover { color: var(--accent); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ─── REVEAL ANIMATION ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── KEYFRAMES ──────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  #navbar, #navbar.scrolled { padding-left: 32px; padding-right: 32px; }
  .hero { padding: 0 32px; }
  .hero-line-v.left { left: 32px; }
  .hero-line-v.right { right: 32px; }
  .hero-badge { display: none; }
  section { padding: 80px 32px; }
  .about-section { padding: 80px 32px; }
  .table-banner { padding: 56px 32px; }
  footer { padding: 48px 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-visual { height: 320px; }
  .hero-title .line2 { padding-left: 40px; }
}

@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-logo-text { display: none; }
  .nav-logo .dot { display: none; }
  .nav-logo img { height: 40px; }
  #navbar, #navbar.scrolled { padding: 12px 20px; }
  .nav-cta { font-size: 11px; padding: 9px 16px; letter-spacing: 0.08em; }

  /* Hero */
  .hero { padding: 100px 24px 60px; }
  .hero-line-v { display: none; }
  .hero-title .line2 { padding-left: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .scroll-indicator { display: none; }

  /* Sections */
  section { padding: 64px 24px; }
  .about-section { padding: 64px 24px; }
  .table-banner { padding: 48px 24px; flex-direction: column; }
  .page-cta { padding: 64px 24px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }

  /* Buttons */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline { width: 100%; justify-content: center; }
  .table-banner-buttons { flex-direction: column; width: 100%; }
  .table-banner-buttons .btn-primary,
  .table-banner-buttons .btn-outline { width: 100%; justify-content: center; }

  /* Footer */
  footer { flex-direction: column; align-items: flex-start; gap: 28px; padding: 40px 24px; }
  .footer-links { gap: 20px; }
}