/* ============================================
   3w2 — Sistema de diseño corporativo tecnológico
   Light + dark contrast sections
   ============================================ */

:root {
  /* Fondos claros */
  --bg: #f6f8fc;
  --bg-alt: #ffffff;
  --bg-tint: #eef3f9;

  /* Secciones premium oscuras */
  --dark: #0b1f33;
  --dark-2: #0f2a44;
  --dark-3: #07182a;

  /* Texto */
  --text: #0d2236;
  --text-soft: #2a3f54;
  --muted: #5a6b7e;
  --muted-2: #8395a7;
  --text-on-dark: #eaf3fb;
  --muted-on-dark: rgba(234, 243, 251, 0.72);

  /* Acentos */
  --cyan: #0aa6b5;
  --cyan-2: #12c6d2;
  --cyan-soft: rgba(10, 166, 181, 0.1);
  --blue: #2e5bff;
  --blue-soft: rgba(46, 91, 255, 0.08);
  --mint: #4ecdc4;
  --mint-soft: rgba(78, 205, 196, 0.12);

  /* Líneas y sombras */
  --line: rgba(13, 34, 54, 0.08);
  --line-2: rgba(13, 34, 54, 0.14);
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-dark-2: rgba(255, 255, 255, 0.14);

  --shadow-xs: 0 1px 2px rgba(13, 34, 54, 0.04);
  --shadow-sm: 0 2px 8px rgba(13, 34, 54, 0.06), 0 1px 2px rgba(13, 34, 54, 0.04);
  --shadow-md: 0 12px 30px rgba(13, 34, 54, 0.08), 0 2px 6px rgba(13, 34, 54, 0.04);
  --shadow-lg: 0 24px 60px rgba(13, 34, 54, 0.12), 0 4px 12px rgba(13, 34, 54, 0.06);
  --shadow-glow: 0 12px 40px rgba(10, 166, 181, 0.18);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.35);

  /* Tipografía */
  --headline-font: "Space Grotesk", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Inter, system-ui, sans-serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(18, 198, 210, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.section {
  padding: clamp(64px, 7vw, 116px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: var(--headline-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker-cyan {
  color: var(--cyan-2);
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

h1, h2 {
  font-family: var(--headline-font);
  font-weight: 700;
  color: var(--text);
  line-height: 1.12;
}

h3 {
  font-family: var(--headline-font);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.dark-section h1,
.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section .section-kicker {
  color: var(--cyan-2);
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.18;
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

.dark-section p {
  color: var(--muted-on-dark);
}

/* Section heading */
.section-heading {
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 1080px;
}

.section-heading.narrow {
  max-width: 880px;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-center.section-heading {
  display: block;
}

.section-heading p {
  margin-top: 18px;
  max-width: 720px;
  font-size: 1.08rem;
}

.section-heading-center p {
  margin-left: auto;
  margin-right: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(246, 248, 252, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10, 166, 181, 0.08), rgba(46, 91, 255, 0.06));
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--headline-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(10, 166, 181, 0.08);
}

.site-nav a.nav-cta {
  margin-left: 8px;
  padding: 10px 18px;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  background: var(--cyan);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: var(--bg-alt);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button svg {
  transition: transform 220ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan-2) 0%, var(--cyan) 55%, #078aa0 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 166, 181, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(10, 166, 181, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-secondary {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--line-2);
  box-shadow: var(--shadow-xs);
}

.button-secondary:hover {
  background: #fff;
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-block {
  width: 100%;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: clamp(32px, 4vw, 56px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 91, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 91, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-glow-1 {
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(10, 166, 181, 0.45), transparent 65%);
}

.hero-glow-2 {
  bottom: -160px;
  left: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(46, 91, 255, 0.35), transparent 65%);
}

.hero-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 5vw, 80px) 0 clamp(56px, 6vw, 96px);
}

.hero-copy {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 24px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  box-shadow: var(--shadow-xs);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-2);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--cyan-2);
  content: "";
  opacity: 0.45;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero-lead {
  margin-top: 22px;
  max-width: 580px;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  box-shadow:
    0 30px 80px rgba(13, 34, 54, 0.18),
    0 10px 24px rgba(13, 34, 54, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.hero-visual-frame::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(18, 198, 210, 0.5), rgba(46, 91, 255, 0.3) 50%, transparent 80%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  content: "";
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  max-height: 620px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.visual-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(11, 31, 51, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-tag {
  color: var(--cyan-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-caption strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
}

.visual-badges {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: 70%;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11, 31, 51, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-cyan {
  background: rgba(18, 198, 210, 0.85);
  border-color: rgba(18, 198, 210, 0.6);
  color: #032027;
}

.badge-mint {
  background: rgba(78, 205, 196, 0.85);
  border-color: rgba(78, 205, 196, 0.6);
  color: #04221f;
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  display: none;
}

.hero-scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  transform: translateX(-50%);
  animation: scrollHint 1.6s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 12px); opacity: 0; }
  61% { transform: translate(-50%, 0); opacity: 0; }
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 2.5vw, 32px) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: var(--cyan);
}

.trust-item strong {
  color: var(--text);
  font-weight: 700;
}

/* ============================================
   INTRO SECTION
   ============================================ */

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

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.intro-layout p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

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

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Generic card */
.card {
  position: relative;
  padding: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 260ms ease, border-color 260ms ease;
  overflow: hidden;
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
  content: "";
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan-soft);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan-soft), var(--blue-soft));
  color: var(--cyan);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ============================================
   DARK SECTION (shared)
   ============================================ */

.dark-section {
  position: relative;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dark-section-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(10, 166, 181, 0.18), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(46, 91, 255, 0.16), transparent 40%);
  opacity: 0.9;
}

.dark-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================
   SITO SECTION (PRODUCTO ESTRELLA)
   ============================================ */

.sito-section {
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 50%, var(--dark-2) 100%);
}

.sito-section::after {
  position: absolute;
  top: 40px;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(10, 166, 181, 0.12);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.sito-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.feature-image {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  min-height: 480px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 50%, rgba(10, 166, 181, 0.1), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 24px;
}

.feature-image-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.sito-content {
  display: grid;
  gap: 20px;
  align-content: start;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.version-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.version-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(18, 198, 210, 0.3);
}

.version-card-ai {
  background: linear-gradient(140deg, rgba(18, 198, 210, 0.12), rgba(46, 91, 255, 0.1));
  border-color: rgba(18, 198, 210, 0.28);
}

.version-num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--headline-font);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan-2);
}

.version-body h3 {
  margin-bottom: 8px;
  color: #fff;
}

.version-body p {
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.deployment-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.deployment-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: background 220ms ease, border-color 220ms ease;
}

.deployment-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(18, 198, 210, 0.25);
}

.deployment-card svg {
  width: 22px;
  height: 22px;
  color: var(--cyan-2);
}

.deployment-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.deployment-card span {
  color: var(--muted-on-dark);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ============================================
   PRODUCT SECTION
   ============================================ */

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

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.product-copy p {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-image {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(46, 91, 255, 0.04), rgba(10, 166, 181, 0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-height: 380px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
}

/* ============================================
   AI SECTION
   ============================================ */

.ai-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
}

.ai-glow {
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 198, 210, 0.22), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(46, 91, 255, 0.18), transparent 40%);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ai-card {
  position: relative;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.ai-card:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(18, 198, 210, 0.3);
}

.ai-card::before {
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan-2), var(--blue));
  content: "";
  transform: scaleY(0.4);
  transform-origin: center;
  transition: transform 320ms ease;
}

.ai-card:hover::before {
  transform: scaleY(1);
}

.ai-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(18, 198, 210, 0.14);
  border: 1px solid rgba(18, 198, 210, 0.3);
  color: var(--cyan-2);
  font-family: var(--headline-font);
  font-size: 0.86rem;
  font-weight: 700;
}

.ai-card h3 {
  color: #fff;
  font-size: 1.12rem;
}

.ai-card p {
  margin: 0;
  padding-left: 52px;
  color: var(--muted-on-dark);
  font-size: 0.96rem;
  line-height: 1.55;
}

.portrait-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  min-height: 480px;
}

.portrait-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

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

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-height: 460px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-photo:hover img {
  transform: scale(1.04);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease;
}

.service-link svg {
  width: 26px;
  height: 26px;
  color: var(--cyan);
  transition: color 220ms ease, transform 220ms ease;
}

.service-link:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  color: var(--cyan);
}

.service-link:hover svg {
  transform: scale(1.1);
}

/* ============================================
   SECURITY SECTION (SOC)
   ============================================ */

.security-section {
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%);
}

.soc-glow {
  background:
    radial-gradient(circle at 30% 30%, rgba(239, 106, 103, 0.1), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(10, 166, 181, 0.18), transparent 40%);
}

.security-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.security-panel h2 {
  color: #fff;
}

.security-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.65fr);
  gap: 20px;
  align-items: stretch;
}

.security-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  min-height: 380px;
}

.security-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.security-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.security-chip svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-2);
}

.security-chip:hover {
  background: rgba(18, 198, 210, 0.14);
  border-color: rgba(18, 198, 210, 0.32);
  transform: translateY(-2px);
}

/* ============================================
   LABS SECTION
   ============================================ */

.labs-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.labs-section::before {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.18), transparent 70%);
  pointer-events: none;
  content: "";
}

.labs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.labs-copy {
  position: sticky;
  top: 100px;
}

.labs-copy p {
  margin-top: 16px;
  font-size: 1.06rem;
  line-height: 1.65;
}

.project-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.poster-card {
  position: relative;
  margin: 0;
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-height: 280px;
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.poster-card:hover img {
  transform: scale(1.03);
}

.poster-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.project-feature {
  position: relative;
  margin: 0;
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 240px;
}

.project-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.project-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================
   METHOD SECTION
   ============================================ */

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

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.method-visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-height: 460px;
}

.method-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-copy h2 {
  margin-bottom: 28px;
}

.method-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease;
}

.method-list li:last-child {
  border-bottom: none;
}

.method-list li:hover {
  padding-left: 6px;
}

.method-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan-soft), var(--blue-soft));
  color: var(--cyan);
  font-family: var(--headline-font);
  font-size: 0.92rem;
  font-weight: 700;
}

.method-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--headline-font);
  font-size: 1.08rem;
  font-weight: 600;
}

.method-list span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ============================================
   WHY SECTION
   ============================================ */

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: clamp(64px, 7vw, 116px) 0;
}

.contact-glow {
  background:
    radial-gradient(circle at 30% 50%, rgba(10, 166, 181, 0.18), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(46, 91, 255, 0.16), transparent 40%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.contact-copy h2 {
  color: #fff;
  max-width: 560px;
}

.contact-copy p {
  margin-top: 18px;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-meta div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-on-dark);
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-cta-meta svg {
  width: 18px;
  height: 18px;
  color: var(--cyan-2);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-dark);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(234, 243, 251, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(11, 31, 51, 0.5);
  color: #fff;
  font-size: 0.96rem;
  transition: border-color 200ms ease, background 200ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(234, 243, 251, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan-2);
  background: rgba(11, 31, 51, 0.7);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2312c6d2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.contact-form select option {
  background: var(--dark);
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--cyan-2);
}

.privacy-check span {
  font-size: 0.88rem !important;
  color: rgba(234, 243, 251, 0.78) !important;
  line-height: 1.55;
}

.privacy-check a {
  color: var(--cyan-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  color: rgba(234, 243, 251, 0.6) !important;
  font-size: 0.84rem !important;
  line-height: 1.5;
}

.contact-form[data-state="prototype"] .form-note {
  color: var(--cyan-2) !important;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--dark-3);
  color: rgba(234, 243, 251, 0.7);
  padding: clamp(48px, 5vw, 72px) 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)) minmax(0, 0.8fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-brand .brand-copy small {
  color: rgba(234, 243, 251, 0.5);
}

.footer-tag {
  margin-top: 16px;
  color: rgba(234, 243, 251, 0.6);
  font-size: 0.94rem;
  max-width: 280px;
  line-height: 1.55;
}

.footer-nav h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--headline-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  padding: 6px 0;
  color: rgba(234, 243, 251, 0.7);
  font-size: 0.94rem;
  transition: color 200ms ease, padding 200ms ease;
}

.footer-nav a:hover {
  color: var(--cyan-2);
  padding-left: 4px;
}

.footer-back {
  justify-self: end;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 220ms ease, transform 220ms ease;
}

.back-to-top:hover {
  background: rgba(18, 198, 210, 0.2);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  color: rgba(234, 243, 251, 0.45);
  font-size: 0.84rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-page a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  color: var(--cyan);
  font-weight: 700;
}

.legal-page h1 {
  margin-bottom: 28px;
}

.legal-page p {
  max-width: 780px;
  margin-bottom: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-frame img {
    min-height: 380px;
    max-height: 480px;
  }

  .intro-layout,
  .product-layout,
  .method-layout,
  .labs-layout,
  .contact-layout,
  .media-split,
  .services-layout,
  .security-panel,
  .security-media,
  .sito-showcase {
    grid-template-columns: 1fr;
  }

  .labs-copy {
    position: static;
  }

  .problem-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-back {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px clamp(20px, 4vw, 56px) 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 320ms ease, opacity 220ms ease, visibility 0s linear 320ms;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 320ms ease, opacity 220ms ease;
  }

  .site-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--bg-tint);
  }

  .site-nav a.nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    background: var(--cyan);
    color: #fff;
  }

  .menu-toggle {
    display: block;
  }

  .hero-visual-frame img {
    min-height: 320px;
  }

  .feature-image,
  .portrait-media,
  .service-photo,
  .method-visual,
  .security-figure {
    min-height: 360px;
  }

  .product-image {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
  }

  .section {
    padding: clamp(48px, 9vw, 72px) 0;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .problem-grid,
  .why-grid,
  .version-grid,
  .deployment-row,
  .service-matrix,
  .security-list,
  .project-stack {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    gap: 14px 20px;
    margin-top: 28px;
    padding-top: 22px;
  }

  .hero-meta-item {
    font-size: 0.82rem;
  }

  .contact-form {
    padding: 22px;
  }

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

  .footer-back {
    justify-self: stretch;
  }

  .back-to-top {
    width: 100%;
    justify-content: center;
  }

  .ai-card p {
    padding-left: 0;
  }

  .ai-card-header {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 18px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark img {
    width: 28px;
    height: 28px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-eyebrow {
    font-size: 0.76rem;
    padding: 6px 12px 6px 10px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual-frame img {
    min-height: 260px;
  }

  .feature-image,
  .portrait-media,
  .service-photo,
  .method-visual,
  .security-figure {
    min-height: 280px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-item {
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-tint);
  }

  .visual-badges {
    display: none;
  }

  .visual-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .contact-cta-meta {
    gap: 14px 18px;
  }

  .contact-cta-meta div {
    font-size: 0.82rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
