@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

:root {
  --navy: #0A1A3F;
  --navyDeep: #050E26;
  --navyMid: #13265C;
  --blue: #0000FE;
  --blueLight: #4D4DFF;
  --white: #FFFFFF;
  --offWhite: #F5F6FA;
  --ink: #0A1428;
  --inkMuted: #5B6478;
  --border: #E6E8EF;
  --textOnDark: #E8ECF7;
  --textOnDarkMuted: #A0ABCC;
  --paper: #FBFCFF;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Archivo', system-ui, sans-serif;
  background: var(--navyDeep);
  color: var(--textOnDark);
  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  text-wrap: pretty;
}

.site-body {
  min-height: 100dvh;
  position: relative;
  font-size: 17px;
  line-height: 1.625;
}
@media (min-width: 1024px) {
  .site-body {
    font-size: 18px;
  }
}

.stack-section {
  position: relative;
}

/* Desktop-only stacking for all stack sections */
@media (min-width: 1024px) {
  .stack-section {
    position: sticky;
    /* top is calculated dynamically by JS (updateStickyTops) */
  }
}

/* Hero headline lines: start hidden, GSAP reveals */
.hero-headline-line {
  display: block;
  overflow: hidden;
}




/* ================================
   FOUNDATION & LAYOUT
   ================================ */

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.surface-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.surface-badge--box {
  padding: 1rem;
  border-radius: 0.5rem;
}

a {
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid rgba(77, 77, 255, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1200;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s var(--easing);
}

.skip-link:focus {
  transform: translateY(0);
}

.text-accent {
  color: var(--blue);
}

.section-desc--muted {
  color: var(--inkMuted);
}

.section-desc--ink {
  color: var(--ink);
  font-weight: 500;
}

/* ================================
   HEADER
   ================================ */

.site-header {
  position: sticky;
  top: 0.75rem;
  margin: 0 auto;
  width: 92%;
  max-width: 1120px;
  z-index: 1000;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 14, 38, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s var(--easing);
}

@media (min-width: 1024px) {
  .site-header {
    top: 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.75rem 1.5rem;
  }
}

.site-header:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(5, 14, 38, 0.8);
}

.logo-link {
  display: block;
}

.logo-img {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .logo-img {
    height: 1.75rem;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 14px;
  color: var(--textOnDarkMuted);
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .main-nav {
    gap: 1.75rem;
  }
}

.nav-link {
  color: inherit;
  transition: color 0.25s var(--easing);
}
.nav-link:hover {
  color: var(--white);
}
.nav-link[aria-current="page"] {
  color: var(--white);
}

.btn-small {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s var(--easing);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn-small {
    font-size: 13px;
    padding: 0.5rem 1.125rem;
  }
}
.btn-small:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
  transform: scale(1.02);
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--navyDeep);
  text-align: center;
  mask-image: linear-gradient(to bottom, transparent, black 24px, black);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 24px, black);
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  opacity: 0.6;
  background: radial-gradient(circle at center, rgba(0, 153, 255, 0.25) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 0;
}

.hero-container {
  position: relative;
  padding-top: 4.25rem;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  justify-items: center;
  z-index: 10;
}
@media (min-width: 1024px) {
  .hero-container {
    padding-top: 5.5rem;
    gap: 3rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 58rem;
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;
}
@media (max-width: 1023px) {
  .hero-content {
    max-width: 48rem;
  }
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 1rem 0.375rem 0.375rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--textOnDark);
}
.hero-badge-icon {
  width: 14px;
  height: 14px;
  color: var(--blue);
}
.hero-top-badge .tag {
  background: var(--blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-headline {
  font-size: 3rem;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  color: var(--white);
  max-width: 56rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .hero-headline {
    font-size: 4.35rem;
  }
}
@media (min-width: 1280px) {
  .hero-headline {
    font-size: 5.2rem;
  }
}

.block { display: block; }

.hero-description {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 0 2rem;
  color: var(--textOnDark);
  font-weight: 400;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-desc-primary {
  margin-bottom: 0.75rem;
}

.hero-desc-secondary {
  margin-bottom: 2rem;
  color: var(--textOnDarkMuted);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .hero-cta-wrapper {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--ink);
  padding: 1.125rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.28s var(--easing);
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1) inset;
}
@media (max-width: 420px) {
  .hero-cta-btn,
  .cta-btn {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    white-space: normal;
  }
}
.hero-cta-btn svg,
.cta-btn svg {
  width: 2rem;
  height: 2rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(10, 20, 40, 0.08);
  transition: transform 0.28s var(--easing), background 0.28s var(--easing);
}
.hero-cta-btn:hover {
  background: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15), 0 1px 0 rgba(0,0,0,0.1) inset;
}
.hero-cta-btn:hover svg,
.cta-btn:hover svg {
  transform: translateX(3px);
  background: rgba(0, 0, 254, 0.1);
}

/* HERO MOCK */
.hero-mock-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  align-self: center;
}

.hero-mock-glow {
  display: none; /* Unified with hero-glow */
}

.wide-mock {
  border-radius: 1.75rem 1.75rem 0 0;
  padding: 1.25rem;
  background: rgba(8, 18, 45, 0.88);
  border: 1px solid rgba(255,255,255,0.11);
  border-bottom: none;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 -24px 90px rgba(0,0,254,0.14),
    0 40px 120px rgba(0, 0, 0, 0.26);
  text-align: left;
}
@media (min-width: 768px) {
  .wide-mock { padding: 1.75rem; }
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 1rem;
}
.mock-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mock-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mock-dot.active { background: var(--blue); }

.mock-title {
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--textOnDarkMuted);
}

.mock-body-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .mock-body-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
  }
}

.mock-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 520px) {
  .mock-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.mock-stat-box {
  border-radius: 0.75rem;
  padding: 0.9rem;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.mock-stat-label {
  font-size: 11px;
  text-transform: lowercase;
  margin-bottom: 0.375rem;
  color: var(--textOnDarkMuted);
}
.mock-stat-value {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.mock-pipeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mock-pipe-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 0.375rem;
  text-transform: lowercase;
  color: var(--textOnDarkMuted);
}
.mock-pipe-val { color: var(--white); }
.mock-pipe-track {
  height: 0.375rem;
  border-radius: 9999px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.mock-pipe-bar {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--blue), var(--blueLight));
  transform-origin: left center;
}

.bar-29 { width: 29%; }
.bar-46 { width: 46%; }
.bar-63 { width: 63%; }
.bar-65 { width: 65%; }
.bar-70 { width: 70%; }
.bar-72 { width: 72%; }
.bar-73 { width: 73%; }
.bar-74 { width: 74%; }
.bar-80 { width: 80%; }
.bar-88 { width: 88%; }
.bar-90 { width: 90%; }
.bar-92 { width: 92%; }
.bar-95 { width: 95%; }

/* ================================
   SECTIONS
   ================================ */

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 7rem;
}
@media (min-width: 1024px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 8.5rem;
  }
}

.section-title {
  font-size: 2.45rem;
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3.25rem;
  }
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 3.95rem;
  }
}

.section-desc {
  font-size: 1.125rem;
  line-height: 1.625;
}
@media (min-width: 1024px) {
  .section-desc {
    font-size: 1.25rem;
  }
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
}

.section-split {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .section-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.75fr);
    gap: 5rem;
    margin-bottom: 4rem;
  }
}

.section-copy {
  max-width: 54rem;
}

.section-copy--support {
  color: var(--textOnDarkMuted);
}

/* AUTORIDADE */
.autoridade-section {
  z-index: 10;
  margin-top: -2.5rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background:
    linear-gradient(180deg, var(--white), var(--paper));
  color: var(--ink);
}
@media (min-width: 1024px) {
  .autoridade-section {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }
}

.autoridade-grid {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .autoridade-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 5rem;
  }
  .autoridade-content { grid-column: span 6; padding-top: 1rem; }
  .autoridade-form {
    grid-column: span 6;
    position: sticky;
    top: 2.5rem;
  }
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
.autoridade-intro {
  margin-bottom: 2.5rem;
}
.autoridade-emphasis {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(10, 20, 40, 0.08);
}
.feature-icon-wrapper {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(43,91,255,0.15);
}
.feature-icon { width: 0.875rem; height: 0.875rem; color: var(--blue); }
.feature-text { font-size: 1rem; color: var(--ink); }
@media (min-width: 1024px) { .feature-text { font-size: 1.125rem; } }

.form-card {
  border-radius: 0.875rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, var(--offWhite), var(--white));
  border: 1px solid rgba(10, 20, 40, 0.08);
  position: relative;
  min-height: 500px; /* Placeholder height */
  box-shadow: 0 18px 55px rgba(10, 20, 40, 0.08), inset 0 1px 0 rgba(255,255,255,0.85);
}
@media (min-width: 1024px) { .form-card { padding: 1.5rem; } }

.form-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0;
  color: var(--blue);
}
.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  color: var(--ink);
}
@media (min-width: 1024px) { .form-title { font-size: 1.875rem; } }
.form-desc {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
  color: var(--inkMuted);
}

.form-iframe {
  width: 100%;
  border-radius: 0.625rem;
  display: block;
  opacity: 1;
  transition: opacity 0.5s var(--easing), height 0.3s var(--easing);
  border: 0;
  background: var(--white);
  min-height: 400px;
}

.form-loader {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.25s var(--easing), visibility 0.25s var(--easing);
}

.form-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(0, 0, 254, 0.1);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: form-spinner 0.8s linear infinite;
}

@keyframes form-spinner {
  to { transform: rotate(360deg); }
}

/* CANONICAL BRAND STORY SECTIONS */
.cost-section,
.structure-section,
.company-section,
.outcomes-section,
.fit-section {
  margin-top: -2.5rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .cost-section,
  .structure-section,
  .company-section,
  .outcomes-section,
  .fit-section {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }
}

.cost-section {
  z-index: 11;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(0, 0, 254, 0.22), transparent 46%),
    linear-gradient(180deg, var(--navy), var(--navyDeep));
  color: var(--textOnDark);
}

.cost-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .cost-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cost-card {
  min-height: 15rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.35s var(--easing), background 0.35s var(--easing), border-color 0.35s var(--easing);
}

.cost-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.14);
}

.cost-card span,
.company-card span {
  display: inline-flex;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--blueLight);
}

.cost-card h3,
.company-card h3,
.outcome-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.cost-card p,
.company-card p,
.outcome-card p {
  margin: 0;
  color: var(--textOnDarkMuted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.cost-card--emphasis {
  background: rgba(0, 0, 254, 0.16);
  border-color: rgba(77, 77, 255, 0.28);
}

.structure-section {
  z-index: 12;
  background:
    linear-gradient(135deg, var(--white) 0%, var(--paper) 48%, #EEF2FF 100%);
  color: var(--ink);
}

.structure-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .structure-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 5rem;
  }
}

.structure-copy {
  max-width: 44rem;
}

.structure-copy .section-desc {
  color: var(--inkMuted);
}

.structure-system {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.structure-system::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  bottom: 1.75rem;
  left: 1.15rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(0,0,254,0), rgba(0,0,254,0.42), rgba(0,0,254,0));
}

.system-layer {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(10,20,40,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 12px 34px rgba(10,20,40,0.045);
}

.system-layer > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,254,0.14);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.system-layer h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--ink);
}

.system-layer p {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--inkMuted);
}

.system-layer--result {
  background: var(--blue);
  border-color: rgba(0,0,254,0.2);
  box-shadow: 0 22px 70px rgba(0,0,254,0.2);
}

.system-layer--result > span {
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
}

.system-layer--result h3,
.system-layer--result p {
  color: var(--white);
}

.system-layer--result p {
  opacity: 0.78;
}

.company-section {
  z-index: 13;
  background: var(--navyDeep);
  color: var(--textOnDark);
}

.company-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .company-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 5rem;
  }
}

.company-statement {
  max-width: 44rem;
}

.company-statement .section-desc {
  color: var(--textOnDarkMuted);
}

.company-proof {
  display: grid;
  gap: 0.85rem;
}

.company-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.company-card--strong {
  background: rgba(0, 0, 254, 0.14);
  border-color: rgba(77, 77, 255, 0.25);
}

.scope-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .scope-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 4rem;
  }
}

.scope-grid div {
  padding: 0.9rem 1rem;
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
  color: var(--textOnDark);
  font-size: 0.9rem;
  line-height: 1.35;
  text-transform: lowercase;
}

/* Hero Arc Visual */
.hero-visual-arc {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 250%; 
  max-width: 3000px;
  height: 1200px; 
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.hero-visual-arc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, transparent 35%, rgba(0, 153, 255, 0.6) 60%, transparent 85%);
  filter: blur(90px);
  mask-image: radial-gradient(circle at 50% 0%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, black 25%, transparent 100%);
}

.hero-visual-arc::after {
  content: '';
  position: absolute;
  top: 5%;
  left: 10%;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(50, 180, 255, 1), transparent);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(0, 153, 255, 1), 0 0 20px rgba(255,255,255,0.4);
  filter: blur(1px);
  transform: perspective(1000px) rotateX(70deg);
}

/* Secondary hero description */
.hero-desc-secondary {
  font-size: 1rem;
  opacity: 0.8;
}

/* ================================
   PILLAR SECTIONS
   ================================ */

/* --- Base Pillar Styles --- */
.pillar-section {
  margin-top: -2.5rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .pillar-section {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }
}

.pillar-header {
  max-width: 56rem;
  margin-bottom: 3.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pillar-badge-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.pillar-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}

.pillar-title {
  text-align: center;
}

.pillar-accent {
  color: var(--blueLight);
}

.pillar-sub {
  text-align: center;
  color: var(--textOnDarkMuted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* --- Pillar Grid Layouts --- */
.pillar-grid {
  display: grid;
  gap: 1.25rem;
}

.pillar-grid--3x2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pillar-grid--3x2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillar-grid--3x2 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .pillar-grid--3x2 .pillar-card:nth-child(-n + 4) { grid-column: span 3; }
  .pillar-grid--3x2 .pillar-card:nth-child(n + 5) { grid-column: span 4; }
}

.pillar-grid--2x2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pillar-grid--2x2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillar-grid--2x2 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .pillar-grid--2x2 .pillar-card:nth-child(-n + 4) { grid-column: span 3; }
  .pillar-grid--2x2 .pillar-card:nth-child(n + 5) { grid-column: span 4; }
}

.pillar-grid--mkt {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pillar-grid--mkt { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillar-grid--mkt {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .pillar-grid--mkt .pillar-card:nth-child(-n + 4) { grid-column: span 3; }
  .pillar-grid--mkt .pillar-card:nth-child(n + 5) { grid-column: span 4; }
}

/* --- Pillar Cards (Dark sections — default) --- */
.pillar-card {
  position: relative;
  padding: 2.35rem 2rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    rgba(0, 0, 254, 0.08) 0 0 0 1px;
  transition: transform 0.5s var(--easing),
              box-shadow 0.5s var(--easing),
              background 0.5s var(--easing);
}

.pillar-card:hover {
  transform: translateY(-4px) scale(1.01);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    rgba(0, 0, 254, 0.18) 0 0 0 1px,
    rgba(1, 8, 28, 0.36) 0 18px 60px;
}

/* Full-width card */
@media (min-width: 640px) {
  .pillar-card--wide {
    grid-column: 1 / -1;
  }
}

/* --- Pillar Card Icon --- */
.pillar-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 254, 0.1);
  border: 1px solid rgba(0, 0, 254, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(0, 0, 254, 0.15);
}

.pillar-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blueLight);
}

/* --- Pillar Card Content --- */
.pillar-card-title {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.pillar-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--textOnDarkMuted);
}

/* --- Pillar Card List (IA block) --- */
.pillar-card-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--textOnDarkMuted);
}

.pillar-list-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: var(--blueLight);
}

/* --- Pillar Closing Statement --- */
.pillar-closing {
  margin-top: 4rem;
  text-align: center;
}


.pillar-closing-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--textOnDarkMuted);
}
@media (min-width: 1024px) {
  .pillar-closing-text {
    font-size: 1.375rem;
  }
}

.pillar-closing-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ===================================
   LIGHT-MODE PILLAR MODIFIER
   =================================== */
.pillar-section--light {
  background: var(--offWhite) !important;
  color: var(--ink) !important;
}

.pillar-section--light .pillar-badge {
  background: rgba(0, 0, 254, 0.08);
  color: var(--blue);
  border-color: rgba(0, 0, 254, 0.15);
}

.pillar-section--light .pillar-title,
.pillar-section--light .section-title {
  color: var(--ink);
}

.pillar-section--light .pillar-accent {
  color: var(--blue);
}

.pillar-section--light .pillar-sub,
.pillar-section--light .section-desc {
  color: var(--inkMuted);
}

/* Light-mode cards */
.pillar-section--light .pillar-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    rgba(10, 20, 40, 0.04) 0 12px 35px;
  transition: transform 0.5s var(--easing),
              box-shadow 0.5s var(--easing),
              background 0.5s var(--easing);
}

.pillar-section--light .pillar-card:hover {
  transform: translateY(-4px) scale(1.01);
  background: var(--white);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    rgba(10, 20, 40, 0.1) 0 18px 60px;
}

/* Light-mode card icon */
.pillar-section--light .pillar-card-icon {
  background: rgba(0, 0, 254, 0.06);
  border-color: rgba(0, 0, 254, 0.1);
}

.pillar-section--light .pillar-card:hover .pillar-card-icon {
  box-shadow: 0 0 20px rgba(0, 0, 254, 0.1);
}

.pillar-section--light .pillar-icon {
  color: var(--blue);
}

/* Light-mode card content */
.pillar-section--light .pillar-card-title {
  color: var(--ink);
}

.pillar-section--light .pillar-card-desc,
.pillar-section--light .pillar-card-list li {
  color: var(--inkMuted);
}

.pillar-section--light .pillar-list-icon {
  color: var(--blue);
}

/* Light-mode closing */
.pillar-section--light .pillar-closing-text {
  color: var(--inkMuted);
}

.pillar-section--light .pillar-closing-text strong {
  color: var(--ink);
}

/* --- Section Backgrounds & Z-index --- */
.pillar-operacao {
  z-index: 20;
  background: radial-gradient(ellipse at 50% 30%, var(--navyMid) 0%, var(--navy) 50%, var(--navyDeep) 100%);
  color: var(--textOnDark);
}

.pillar-saas {
  z-index: 22;
  /* Light background — overridden by .pillar-section--light */
  background: var(--offWhite);
  color: var(--ink);
}

.pillar-marketing {
  z-index: 24;
  background: radial-gradient(ellipse at 40% 40%, var(--navyMid) 0%, var(--navy) 50%, var(--navyDeep) 100%);
  color: var(--textOnDark);
}

.method-section {
  z-index: 30;
  margin-top: -2.5rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--white) 0%, var(--paper) 46%, #EEF2FF 100%);
  color: var(--ink);
}
@media (min-width: 1024px) {
  .method-section {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }
}

.method-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .method-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 5rem;
  }
}

.method-copy {
  max-width: 40rem;
}
@media (min-width: 1024px) {
  .method-copy {
    position: sticky;
    top: 4rem;
  }
}

.method-copy .section-desc {
  color: var(--inkMuted);
}

.method-kicker {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
}

.method-steps {
  display: grid;
  gap: 0.85rem;
}

.method-step {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 20, 40, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 14px 42px rgba(10, 20, 40, 0.055);
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing), border-color 0.4s var(--easing);
}

.method-step:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 254, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 18px 54px rgba(10, 20, 40, 0.08);
}

.method-step-number {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--blue);
}

.method-step h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
}

.method-step p {
  margin: 0 0 1rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--inkMuted);
}

.method-step strong {
  display: block;
  font-size: 0.925rem;
  line-height: 1.45;
  color: var(--ink);
}

.pain-icon { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--blueLight); }

/* CRM SECTION */
.crm-section {
  z-index: 40;
  margin-top: -2.5rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--offWhite), var(--paper));
  color: var(--ink);
}
@media (min-width: 1024px) {
  .crm-section {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }
}

.crm-header {
  max-width: 54rem;
  margin-bottom: 4rem;
}

.crm-desc {
  margin-top: 1.5rem;
}

.crm-mock {
  position: relative;
  border-radius: 0.875rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 70px rgba(10, 20, 40, 0.08);
}
@media (min-width: 1024px) { .crm-mock { padding: 2.5rem; } }

.crm-mock-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .crm-mock-grid { grid-template-columns: 1.1fr 1fr 0.9fr; } }

.crm-stat-box {
  border-radius: 0.625rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, var(--offWhite), #FFFFFF);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.crm-stat-label {
  font-size: 12px;
  text-transform: lowercase;
  margin-bottom: 0.5rem;
  color: var(--inkMuted);
}

.crm-stat-value {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.crm-chart-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.crm-chart-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crm-chart-label {
  font-size: 10px;
  width: 1.5rem;
  color: var(--inkMuted);
}

.crm-chart-track {
  flex: 1;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.07);
}

.crm-chart-bar {
  height: 100%;
  border-radius: 9999px;
  background: var(--blue);
  transform-origin: left center;
  transition: transform 1.4s var(--easing);
}

.crm-pipeline-item {
  margin-bottom: 0.75rem;
}

.crm-pipeline-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 0.25rem;
  text-transform: lowercase;
  color: var(--inkMuted);
}

.crm-pipeline-bar {
  background: linear-gradient(90deg, var(--blueLight), var(--blue));
}

.crm-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 254, 0.04);
  border: 1px solid rgba(0, 0, 254, 0.1);
  margin-bottom: 0.5rem;
}

.crm-action-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crm-action-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--blue);
}

.crm-action-title { font-size: 12px; color: var(--ink); }
.crm-action-time { font-size: 11px; color: var(--inkMuted); }

.crm-features-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .crm-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .crm-features-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* CRM light-mode overrides for surface badges */
.crm-section .surface-badge--box {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.07);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.crm-section .pain-icon {
  color: var(--blue);
}

/* OUTCOMES + FIT */
.outcomes-section {
  z-index: 50;
  background: linear-gradient(180deg, var(--white), var(--paper));
  color: var(--ink);
}

.outcomes-header {
  max-width: 58rem;
  margin-bottom: 3.5rem;
}

.outcomes-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.outcome-card {
  min-height: 14rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(10, 20, 40, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 14px 42px rgba(10, 20, 40, 0.055);
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing), border-color 0.35s var(--easing);
}

.outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 254, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 18px 54px rgba(10, 20, 40, 0.08);
}

.outcome-card svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.outcome-card h3,
.outcome-card p {
  color: var(--ink);
}

.outcome-card p {
  color: var(--inkMuted);
}

.outcome-card--strong {
  background: var(--blue);
  color: var(--white);
  border-color: rgba(0, 0, 254, 0.18);
  box-shadow: 0 22px 70px rgba(0,0,254,0.2);
}

.outcome-card--strong svg,
.outcome-card--strong h3,
.outcome-card--strong p {
  color: var(--white);
}

.outcome-card--strong p {
  opacity: 0.78;
}

.fit-section {
  z-index: 60;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(0, 0, 254, 0.18), transparent 42%),
    linear-gradient(180deg, var(--navy), var(--navyDeep));
  color: var(--textOnDark);
}

.fit-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .fit-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 5rem;
  }
}

.fit-copy {
  max-width: 44rem;
}
@media (min-width: 1024px) {
  .fit-copy {
    position: sticky;
    top: 4rem;
  }
}

.fit-copy .section-desc {
  color: var(--textOnDarkMuted);
}

.fit-list {
  display: grid;
  gap: 0.75rem;
}

.fit-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--textOnDark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.fit-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--blueLight);
}

.fit-item span {
  line-height: 1.45;
}

.fit-item--strong {
  background: rgba(0, 0, 254, 0.16);
  border-color: rgba(77, 77, 255, 0.28);
}

/* CTA FINAL */
.cta-section {
  z-index: 90;
  margin-top: -2.5rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: radial-gradient(ellipse at 50% 30%, var(--navyMid) 0%, var(--navy) 50%, var(--navyDeep) 100%);
  color: var(--textOnDark);
}
@media (min-width: 1024px) {
  .cta-section {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }
}

.cta-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .cta-container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.cta-desc {
  font-size: 1.125rem;
  margin: 0 auto 3rem auto;
  max-width: 42rem;
  color: var(--textOnDarkMuted);
}

.cta-title {
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .cta-desc {
    font-size: 1.25rem;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.28s var(--easing);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1) inset;
}
.cta-btn:hover { 
  transform: translateY(-2px) scale(1.02); 
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15), 0 1px 0 rgba(0,0,0,0.1) inset;
}
.cta-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.25s var(--easing);
}
.cta-btn:hover .cta-icon { transform: translateX(0.375rem); }

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 100;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  background: var(--white);
  color: var(--inkMuted);
  border-top: 1px solid var(--border);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-links a {
  color: var(--inkMuted);
  transition: color 0.25s var(--easing);
}

.footer-links a:hover {
  color: var(--ink);
}


/* ================================
   FLOATING ACTIONS
   ================================ */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.floating-top-btn {
  background: var(--white);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  color: var(--blue);
}

.floating-wa-btn {
  background: #25D366; /* Real WhatsApp Green */
  color: white;
}

.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  background: #20BD5A;
}

.floating-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
