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

:root {
  --black: #080808;
  --deep: #0d0d0d;
  --surface: #111111;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #7a6230;
  --white: #f0ece4;
  --muted: #6b6560;
  --accent: #ff4d1a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  cursor: none;
  overflow-x: hidden;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* NOISE TEXTURE 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

/* Animated grid background */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,77,26,0.08) 0%, transparent 70%);
  bottom: 100px; left: 10%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before {
  content: '//';
  margin-right: 10px;
  color: var(--accent);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.88;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-title .line-stroke {
  display: block;
  -webkit-text-stroke: 1px rgba(240,236,228,0.3);
  color: transparent;
}
.hero-title .line-accent { color: var(--accent); display: block; }

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: normal;
  font-weight: 300;
  color: rgba(240,236,228,0.6);
  max-width: 520px;
  margin-top: 40px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::before {
  content: '';
  width: 30px; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.btn-ghost:hover::before { width: 50px; }

/* MARQUEE */
.marquee-section {
  padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  background: rgba(201,168,76,0.03);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.marquee-item .dot { color: var(--accent); font-size: 20px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* STATS */
.stats-section {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.stat-item {
  background: var(--black);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.stat-item:hover { background: var(--surface); }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}
.stat-desc {
  font-size: 16px;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  color: rgba(240,236,228,0.4);
  margin-top: 16px;
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 140px 60px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.manifesto::before {
  content: '"';
  position: absolute;
  top: 80px; left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 300px;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
}
.manifesto-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}
.manifesto-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
}
.manifesto-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}
.manifesto-text strong {
  font-weight: 400;
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
}

/* PILLARS */
.pillars {
  padding: 100px 60px;
  background: var(--deep);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  color: var(--white);
  line-height: 0.9;
}
.section-title span { color: var(--gold); }
.section-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
}
.pillar-card {
  background: var(--deep);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.pillar-card:hover {
  background: var(--surface);
  transform: translateY(-4px);
}
.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  position: absolute;
  top: 10px; right: 20px;
  transition: color 0.5s;
}
.pillar-card:hover .pillar-num { color: rgba(201,168,76,0.15); }
.pillar-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  font-size: 20px;
  transition: all 0.3s;
  color: var(--gold);
}
.pillar-card:hover .pillar-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.pillar-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}
.pillar-desc {
  font-size: 16px;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  color: rgba(240,236,228,0.5);
  line-height: 1.7;
}
.pillar-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: left;
}
.pillar-card:hover .pillar-line { transform: scaleX(1); }

/* TESTIMONIAL CAROUSEL */
.testimony {
  padding: 160px 60px;
  position: relative;
  overflow: hidden;
}
.testimony::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.testimony-header {
  max-width: 800px;
  margin: 0 auto 80px;
}
.carousel-wrapper {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimony-card {
  background: var(--surface);
  padding: 56px 60px;
  width: 860px;
  min-width: 860px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.12);
  border-left: 3px solid var(--gold);
  transition: border-color 0.4s;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.testimony-card.active { border-color: rgba(201,168,76,0.25); border-left-color: var(--gold); }
.testimony-stars {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 28px;
}
.testimony-text {
  font-size: 18px;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: rgba(240,236,228,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}
.testimony-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--black);
}
.author-info strong {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}
.author-info span {
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s;
}
.carousel-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* CTA SECTION */
.cta-section {
  padding: 160px 60px;
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'VÓRTEX';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(150px, 25vw, 380px);
  color: rgba(201,168,76,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}
.cta-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 130px);
  line-height: 0.9;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.cta-title .gold { color: var(--gold); }
.cta-subtitle {
  font-size: 18px;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: rgba(240,236,228,0.5);
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
.cta-btn-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  padding: 60px;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 6px;
  color: var(--gold);
}
.footer-logo span { color: var(--accent); }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 24px;
}
.footer-social a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
}
.footer-social a:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* DIAGONAL DIVIDER */
.diagonal {
  height: 80px;
  background: var(--deep);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  margin-top: -2px;
}

/* LINE DECORATION */
.line-decoration {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.line-short {
  width: 40px; height: 1px;
  background: var(--gold);
}

/* SOBRE */
.sobre {
  padding: 140px 60px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.03) 100%);
  pointer-events: none;
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sobre-visual {
  position: relative;
}
.sobre-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.sobre-frame-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.02) 40px,
      rgba(201,168,76,0.02) 41px
    );
}
.sobre-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  color: rgba(201,168,76,0.08);
  letter-spacing: -5px;
  line-height: 1;
  user-select: none;
}
.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px; height: 120px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.sobre-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
}
.sobre-badge-label {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
}
.sobre-corner {
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.sobre-content {}
.sobre-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.sobre-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 10px;
}
.sobre-name span { color: var(--gold); }
.sobre-role {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}
.sobre-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}
.sobre-historia {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(240,236,228,0.65);
  line-height: 1.85;
  margin-bottom: 20px;
}
.sobre-historia strong {
  color: var(--white);
  font-weight: 500;
}
.sobre-historia .destaque {
  color: var(--gold);
  font-weight: 400;
}
.sobre-numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  margin-top: 50px;
}
.sobre-num-item {
  background: var(--deep);
  padding: 24px 20px;
  text-align: center;
}
.sobre-num-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.sobre-num-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 60px; }
  .sobre-frame { aspect-ratio: 1/1; }
  .hero { padding: 100px 24px 60px; }
  .stats-section { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimony-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pillars, .testimony, .manifesto, .cta-section { padding-left: 24px; padding-right: 24px; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
}
