:root {
  --bg: #07090d;
  --bg-soft: #0f1720;
  --panel: rgba(14, 22, 30, 0.78);
  --cream: #f8f5ee;
  --muted: #aab3bd;
  --muted-2: #707a86;
  --line: rgba(248, 245, 238, 0.15);
  --glass: rgba(248, 245, 238, 0.055);
  --glass-strong: rgba(248, 245, 238, 0.095);
  --accent: #33d6a6;
  --accent-2: #4da3ff;
  --hot: #f5c542;
  --danger: #ff6b6b;
  --shadow: rgba(0, 0, 0, 0.48);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.iris-open {
  overflow: hidden;
}

/* ===============================
   BACKGROUND
================================ */

#livingCanvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.8;
}

.ambient-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at var(--mx, 72%) var(--my, 10%), rgba(51, 214, 166, 0.22), transparent 31%),
    radial-gradient(circle at 16% 82%, rgba(77, 163, 255, 0.16), transparent 34%),
    radial-gradient(circle at 80% 72%, rgba(245, 197, 66, 0.11), transparent 34%),
    linear-gradient(120deg, #05070b, #0c1219 46%, #06080c);
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.85'/%3E%3C/svg%3E");
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 42%,
      rgba(51, 214, 166, 0.06) 44%,
      transparent 47%,
      transparent 100%
    ),
    linear-gradient(
      245deg,
      transparent 0%,
      transparent 44%,
      rgba(77, 163, 255, 0.05) 46%,
      transparent 49%,
      transparent 100%
    );
  background-size: 420px 420px, 520px 520px;
  animation: nightRoadMove 18s linear infinite;
  opacity: 0.8;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 44%, rgba(0, 0, 0, 0.32) 100%),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 82px,
      rgba(248, 245, 238, 0.018) 84px,
      transparent 88px
    );
  animation: softForwardMotion 9s linear infinite;
}

@keyframes nightRoadMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 420px 420px, -520px 520px;
  }
}

@keyframes softForwardMotion {
  from {
    background-position: center, 0 0;
  }

  to {
    background-position: center, 0 220px;
  }
}

/* ===============================
   GUIDE STATUS
================================ */

.guide-status {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: 0.28s ease;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.guide-status.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.guide-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.guide-status p {
  font-size: 13px;
  color: var(--cream);
}

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

.site-header {
  height: 84px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(22px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(248, 245, 238, 0.96);
  padding: 4px;
  box-shadow: 0 12px 36px rgba(51, 214, 166, 0.1);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 22px;
  letter-spacing: 1px;
}

.brand span,
.footer-brand span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
}

.desktop-nav a,
.footer-links a,
.social-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.desktop-nav a:hover,
.footer-links a:hover,
.social-links a:hover {
  color: var(--cream);
}

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

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.language-toggle,
.soft-btn,
.ghost-btn,
.main-btn {
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(248, 245, 238, 0.04);
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.22s ease;
}

.language-toggle {
  width: 52px;
  height: 44px;
  padding: 0;
}

.soft-btn:hover,
.ghost-btn:hover,
.language-toggle:hover {
  background: rgba(248, 245, 238, 0.1);
  transform: translateY(-2px);
}

.main-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06100d;
  border-color: transparent;
  box-shadow:
    0 22px 80px rgba(51, 214, 166, 0.18),
    0 10px 38px rgba(77, 163, 255, 0.12);
}

.main-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

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

.hero-section {
  min-height: calc(100vh - 84px);
  padding: 7vw 6vw 5vw;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 5vw;
  align-items: center;
  opacity: 1 !important;
  transform: none !important;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -6px;
  max-width: 980px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(42px, 5.2vw, 88px);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 22px;
}

.hero-text,
.section-top p,
.booking-copy p,
.reviews-section p,
.checkup-card p,
.result-card p,
.result-video-card p,
.checkup-cta p,
.industry-card p,
.how-card p,
.difference-panel p,
.combo-card p,
.combo-best p,
.pricing-note p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.hero-text {
  max-width: 760px;
  font-size: clamp(17px, 1.35vw, 21px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-proof {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof span {
  border: 1px solid rgba(51, 214, 166, 0.24);
  background: rgba(51, 214, 166, 0.07);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
}

/* ===============================
   PORTAL
================================ */

.portal-wrap {
  min-height: 590px;
  display: grid;
  place-items: center;
  position: relative;
  perspective: 1000px;
}

.glass-logo {
  width: min(500px, 82vw);
  aspect-ratio: 1;
  border-radius: 42px;
  border: 1px solid rgba(248, 245, 238, 0.15);
  background:
    radial-gradient(circle at 70% 20%, rgba(51, 214, 166, 0.12), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(77, 163, 255, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(248, 245, 238, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(248, 245, 238, 0.035);
  display: grid;
  place-items: center;
  box-shadow:
    0 50px 110px var(--shadow),
    inset 0 0 90px rgba(248, 245, 238, 0.04),
    0 0 90px rgba(51, 214, 166, 0.06);
  transform-style: preserve-3d;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-12px) rotateX(3deg) rotateY(-3deg);
  }
}

.glass-logo img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  border-radius: 28px;
  filter: drop-shadow(0 25px 48px rgba(0, 0, 0, 0.42));
}

.portal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(248, 245, 238, 0.12);
  animation: spinPortal 18s linear infinite;
}

.ring-one {
  width: 620px;
  height: 620px;
}

.ring-two {
  width: 500px;
  height: 500px;
  border-color: rgba(51, 214, 166, 0.18);
  animation-direction: reverse;
  animation-duration: 24s;
}

.ring-three {
  width: 380px;
  height: 380px;
  border-color: rgba(77, 163, 255, 0.16);
  animation-duration: 30s;
}

@keyframes spinPortal {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1);
  }
}

.floating-chip {
  position: absolute;
  width: 190px;
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  background: rgba(7, 13, 18, 0.82);
  border: 1px solid rgba(248, 245, 238, 0.14);
  border-radius: 20px;
  padding: 15px;
  color: var(--cream);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 72px var(--shadow);
  cursor: pointer;
  animation: floatSoft 5s ease-in-out infinite;
}

.floating-chip span {
  color: var(--hot);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.floating-chip b {
  font-size: 14px;
  line-height: 1.2;
}

.chip-a {
  top: 12%;
  left: 1%;
}

.chip-b {
  top: 44%;
  right: -2%;
  animation-delay: 0.7s;
}

.chip-c {
  bottom: 10%;
  left: 8%;
  animation-delay: 1.4s;
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

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

.luxury-strip,
.checkup-section,
.industries-section,
.iris-difference-section,
.how-section,
.results-section,
.services-section,
.pricing-section,
.booking-section,
.reviews-section {
  padding: 6vw;
}

.luxury-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.luxury-strip p {
  font-size: clamp(30px, 4.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -3px;
  max-width: 1400px;
}

.checkup-section,
.industries-section,
.iris-difference-section,
.how-section,
.results-section,
.pricing-section {
  border-bottom: 1px solid var(--line);
}

.results-section,
.booking-section,
.reviews-section {
  border-top: 1px solid var(--line);
}

.section-top {
  max-width: 1120px;
  margin-bottom: 42px;
}

.section-top.compact {
  max-width: 960px;
}

/* ===============================
   CHECKUP
================================ */

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

.checkup-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at 76% 10%, rgba(51, 214, 166, 0.13), transparent 34%),
    rgba(248, 245, 238, 0.045);
  position: relative;
  overflow: hidden;
}

.checkup-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 214, 166, 0.62), transparent);
}

.checkup-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 128px;
  height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(248, 245, 238, 0.13);
  background:
    linear-gradient(90deg, rgba(51, 214, 166, 0.2) 18%, transparent 18% 32%, rgba(77, 163, 255, 0.18) 32% 54%, transparent 54%),
    rgba(0, 0, 0, 0.16);
  box-shadow: inset 0 0 34px rgba(51, 214, 166, 0.05);
  opacity: 0.95;
}

.checkup-card:nth-child(2)::before {
  border-radius: 50% 50% 50% 0;
  width: 72px;
  height: 72px;
  transform: rotate(-45deg);
  right: 48px;
  background: var(--accent-2);
  box-shadow: 0 0 44px rgba(77, 163, 255, 0.28);
}

.checkup-card:nth-child(3)::before {
  content: "★★★★★";
  width: 148px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--hot);
  letter-spacing: 4px;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.checkup-card:nth-child(6)::before {
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cream) 0 18px, transparent 19px),
    radial-gradient(circle at 20% 50%, rgba(51, 214, 166, 0.46) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 50%, rgba(77, 163, 255, 0.46) 0 4px, transparent 5px),
    radial-gradient(circle, rgba(51, 214, 166, 0.18), transparent 70%);
  animation: aiPulse 2.8s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.checkup-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--hot);
  margin-bottom: 58px;
  font-size: 12px;
  font-weight: 900;
}

.checkup-card h3 {
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.checkup-cta {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 88% 20%, rgba(245, 197, 66, 0.13), transparent 34%),
    radial-gradient(circle at 22% 90%, rgba(77, 163, 255, 0.12), transparent 34%),
    rgba(248, 245, 238, 0.06);
}

.checkup-cta h3 {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -2px;
  margin-bottom: 10px;
}

/* ===============================
   INDUSTRIES
================================ */

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

.industry-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  background:
    radial-gradient(circle at 82% 14%, rgba(77, 163, 255, 0.14), transparent 36%),
    rgba(248, 245, 238, 0.055);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.industry-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 116px;
  height: 82px;
  border-radius: 22px;
  border: 1px solid rgba(248, 245, 238, 0.12);
  background:
    radial-gradient(circle at 72% 65%, rgba(51, 214, 166, 0.25), transparent 44%),
    repeating-linear-gradient(to bottom, rgba(248, 245, 238, 0.12) 0 7px, transparent 7px 16px),
    rgba(0, 0, 0, 0.15);
  opacity: 0.9;
  z-index: 1;
}

.industry-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 214, 166, 0.55), transparent);
  z-index: 2;
}

.industry-card span {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(248, 245, 238, 0.14);
  background: rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 34px;
  z-index: 3;
}

.industry-card h3 {
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 4;
}

.industry-card p {
  position: relative;
  z-index: 4;
}

/* ===============================
   DIFFERENCE
================================ */

.difference-panel {
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 42px;
  background:
    radial-gradient(circle at 84% 18%, rgba(51, 214, 166, 0.18), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(77, 163, 255, 0.13), transparent 36%),
    rgba(248, 245, 238, 0.055);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.difference-flow {
  display: grid;
  gap: 12px;
  position: relative;
}

.difference-flow::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), var(--hot));
  opacity: 0.55;
}

.flow-pill {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 18px 16px 58px;
  background: rgba(7, 9, 13, 0.66);
  backdrop-filter: blur(18px);
  color: var(--cream);
  font-size: 16px;
}

.flow-pill::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  box-shadow: 0 0 24px rgba(51, 214, 166, 0.5);
}

.flow-pill:nth-child(2)::before {
  background: var(--accent-2);
}

.flow-pill:nth-child(3)::before {
  background: var(--hot);
}

.flow-pill:nth-child(5)::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* ===============================
   HOW
================================ */

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

.how-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 80% 16%, rgba(245, 197, 66, 0.11), transparent 34%),
    rgba(248, 245, 238, 0.05);
  position: relative;
  overflow: hidden;
}

.how-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 163, 255, 0.55), transparent);
}

.how-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--hot);
  font-weight: 900;
  margin-bottom: 70px;
}

.how-card h3 {
  font-size: 29px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

/* ===============================
   RESULTS / PROOF
================================ */

.results-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 18px;
}

.proof-builds-grid {
  align-items: stretch;
}

.proof-main-card {
  grid-column: span 2;
}

.result-video-card,
.result-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 12%, rgba(51, 214, 166, 0.1), transparent 34%),
    var(--glass);
  padding: 22px;
  overflow: hidden;
}

.result-video-card {
  min-height: 380px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
}

.video-placeholder {
  min-height: 230px;
  border-radius: 24px;
  border: 1px solid rgba(248, 245, 238, 0.12);
  background:
    radial-gradient(circle at center, rgba(51, 214, 166, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(248, 245, 238, 0.08), rgba(0, 0, 0, 0.12));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(248, 245, 238, 0.14) 0 60%, transparent 60%),
    repeating-linear-gradient(to bottom, rgba(248, 245, 238, 0.12) 0 7px, transparent 7px 18px);
  background-size: 100% 34px, 70% 88px;
  background-position: 0 0, 18px 68px;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.video-placeholder span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06100d;
  font-size: 24px;
  box-shadow: 0 20px 70px rgba(51, 214, 166, 0.22);
  position: relative;
  z-index: 2;
}

.result-video-card h3,
.result-card h3 {
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.result-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.result-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 118px;
  height: 86px;
  border-radius: 22px;
  border: 1px solid rgba(248, 245, 238, 0.12);
  background:
    repeating-linear-gradient(to bottom, rgba(248, 245, 238, 0.13) 0 7px, transparent 7px 16px),
    radial-gradient(circle at 70% 70%, rgba(51, 214, 166, 0.22), transparent 40%),
    rgba(0, 0, 0, 0.16);
  opacity: 0.95;
}

.result-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 214, 166, 0.55), transparent);
}

.result-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--hot);
  font-weight: 900;
  margin-bottom: 70px;
}

.proof-build-card {
  position: relative;
  overflow: hidden;
}

.proof-build-card .eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
}

.proof-tags small {
  border: 1px solid rgba(51, 214, 166, 0.28);
  background: rgba(51, 214, 166, 0.08);
  color: rgba(248, 245, 238, 0.82);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.75rem;
}

.text-link-btn {
  margin-top: 16px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
}

.text-link-btn:hover {
  text-decoration: underline;
}

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

.visual-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visual-card {
  min-height: 430px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 12%, rgba(77, 163, 255, 0.09), transparent 34%),
    var(--glass);
  border-radius: 32px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.25s ease;
}

.visual-card:hover {
  background:
    radial-gradient(circle at 82% 12%, rgba(51, 214, 166, 0.13), transparent 34%),
    var(--glass-strong);
  transform: translateY(-4px);
}

.visual-card.highlight {
  border-color: rgba(51, 214, 166, 0.85);
  box-shadow:
    0 0 0 1px rgba(51, 214, 166, 0.35),
    0 30px 90px rgba(51, 214, 166, 0.12);
}

.ask-card {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  border: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.68);
  color: var(--cream);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.mini-scene {
  height: 200px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 65% 20%, rgba(51, 214, 166, 0.22), transparent 35%),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(248, 245, 238, 0.11);
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}

.visual-card h3 {
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.visual-card p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 15px;
}

/* Service mini scenes */

.browser-shell {
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 245, 238, 0.06);
  padding: 18px;
}

.browser-top i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 5px;
}

.site-title {
  width: 72%;
  height: 32px;
  background: rgba(248, 245, 238, 0.18);
  border-radius: 10px;
  margin-top: 28px;
}

.site-copy {
  width: 54%;
  height: 44px;
  background: repeating-linear-gradient(to bottom, rgba(248, 245, 238, 0.15) 0 5px, transparent 5px 13px);
  margin-top: 15px;
}

.site-button {
  width: 92px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  margin-top: 14px;
}

.iris-core {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--bg);
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.signal {
  position: absolute;
  left: 50%;
  top: 52%;
  border: 1px solid rgba(51, 214, 166, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseSignal 3.5s ease-in-out infinite;
}

.s1 {
  width: 150px;
  height: 150px;
}

.s2 {
  width: 210px;
  height: 210px;
  animation-delay: 0.8s;
}

.s3 {
  width: 270px;
  height: 270px;
  animation-delay: 1.6s;
}

@keyframes pulseSignal {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.92);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
}

.chat-dot {
  position: absolute;
  border-radius: 999px;
  background: rgba(248, 245, 238, 0.11);
  border: 1px solid var(--line);
}

.d1 {
  width: 70px;
  height: 28px;
  left: 24px;
  top: 34px;
}

.d2 {
  width: 96px;
  height: 28px;
  right: 22px;
  top: 58px;
}

.d3 {
  width: 82px;
  height: 28px;
  left: 38px;
  bottom: 38px;
}

.flow-node {
  position: absolute;
  width: 72px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(248, 245, 238, 0.08);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.n1 {
  left: 24px;
  top: 38px;
}

.n2 {
  right: 28px;
  top: 38px;
}

.n3 {
  left: 38px;
  bottom: 42px;
}

.n4 {
  right: 34px;
  bottom: 42px;
}

.flow-line {
  position: absolute;
  height: 1px;
  background: var(--accent);
  opacity: 0.62;
}

.l1 {
  left: 92px;
  right: 98px;
  top: 61px;
}

.l2 {
  left: 74px;
  width: 110px;
  top: 112px;
  transform: rotate(39deg);
}

.l3 {
  right: 78px;
  width: 110px;
  top: 112px;
  transform: rotate(-39deg);
}

.social-card {
  position: absolute;
  width: 96px;
  height: 122px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(248, 245, 238, 0.08);
}

.sc1 {
  left: 28px;
  top: 34px;
  transform: rotate(-8deg);
}

.sc2 {
  right: 36px;
  top: 46px;
  transform: rotate(8deg);
}

.campaign-pulse {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(51, 214, 166, 0.22);
}

.ad-meter {
  position: absolute;
  left: 38%;
  bottom: 24px;
  display: flex;
  gap: 7px;
  align-items: end;
}

.ad-meter i {
  width: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.ad-meter i:nth-child(1) {
  height: 28px;
}

.ad-meter i:nth-child(2) {
  height: 50px;
  background: var(--accent-2);
}

.ad-meter i:nth-child(3) {
  height: 72px;
  background: var(--hot);
}

.ad-meter i:nth-child(4) {
  height: 46px;
}

.world-grid {
  position: absolute;
  inset: 24px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(248, 245, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 245, 238, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44px;
  width: 46px;
  height: 46px;
  background: var(--accent-2);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 0 36px rgba(77, 163, 255, 0.26);
}

.trust-card {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  color: var(--hot);
  letter-spacing: 3px;
}

.search-line {
  position: absolute;
  left: 36px;
  right: 36px;
  top: 108px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 245, 238, 0.04);
}

.brand-mark {
  position: absolute;
  left: 34px;
  top: 34px;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.brand-lines {
  position: absolute;
  right: 34px;
  top: 44px;
  width: 140px;
  height: 70px;
  background: repeating-linear-gradient(to bottom, rgba(248, 245, 238, 0.15) 0 8px, transparent 8px 18px);
}

.qr-digital {
  position: absolute;
  right: 40px;
  bottom: 32px;
  width: 82px;
  height: 82px;
  background:
    linear-gradient(90deg, var(--cream) 8px, transparent 8px) 0 0 / 18px 18px,
    linear-gradient(var(--cream) 8px, transparent 8px) 0 0 / 18px 18px;
  opacity: 0.75;
}

.asset-stack {
  position: absolute;
  left: 42px;
  bottom: 46px;
  width: 110px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow:
    12px 12px 0 rgba(248, 245, 238, 0.06),
    24px 24px 0 rgba(248, 245, 238, 0.035);
}

/* ===============================
   PRICING
================================ */

.pricing-section {
  min-height: auto !important;
  overflow: visible !important;
}

.combo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 34px !important;
  margin-bottom: 22px !important;
  width: 100% !important;
}

.combo-card {
  display: block !important;
  min-height: auto !important;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(77, 163, 255, 0.13), transparent 36%),
    rgba(248, 245, 238, 0.055);
  overflow: hidden;
  position: relative;
  transition: 0.25s ease;
}

.combo-card[open] {
  background:
    radial-gradient(circle at 82% 12%, rgba(51, 214, 166, 0.16), transparent 36%),
    radial-gradient(circle at 15% 90%, rgba(77, 163, 255, 0.1), transparent 36%),
    rgba(248, 245, 238, 0.075);
}

.combo-card.featured {
  border-color: rgba(51, 214, 166, 0.58);
  box-shadow:
    0 0 0 1px rgba(51, 214, 166, 0.18),
    0 34px 120px rgba(51, 214, 166, 0.11);
}

.combo-card summary {
  display: block !important;
  list-style: none;
  cursor: pointer;
  padding: 30px !important;
  min-height: 310px;
  position: relative;
}

.combo-card summary::-webkit-details-marker {
  display: none;
}

.combo-label {
  display: inline-block;
  border: 1px solid rgba(51, 214, 166, 0.28);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 86px;
  background: rgba(51, 214, 166, 0.07);
}

.combo-card h3 {
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -2px;
  line-height: 0.98;
  margin-bottom: 16px;
  max-width: 420px;
}

.combo-card summary strong {
  display: block;
  color: var(--hot);
  font-size: 22px;
  margin-bottom: 16px;
}

.combo-open {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.combo-card[open] .combo-open {
  color: #06100d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.combo-content {
  display: grid;
  gap: 18px;
  padding: 0 30px 30px;
}

.combo-card:not([open]) .combo-content {
  display: none !important;
}

.combo-card[open] .combo-content {
  display: grid !important;
}

.combo-content h4 {
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}

.combo-includes,
.combo-best {
  border: 1px solid rgba(248, 245, 238, 0.11);
  border-radius: 22px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.combo-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.combo-content li {
  color: var(--cream);
  line-height: 1.45;
  display: flex;
  gap: 10px;
}

.combo-content li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}

.combo-checkup {
  width: fit-content;
}

.pricing-note {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 20%, rgba(245, 197, 66, 0.12), transparent 34%),
    rgba(248, 245, 238, 0.045);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-note p {
  max-width: 780px;
  color: var(--cream);
  font-size: 18px;
}

/* ===============================
   REVIEWS
================================ */

.reviews-section {
  display: block;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.review-form,
.review-card {
  border: 1px solid rgba(248, 245, 238, 0.12);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.review-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(248, 245, 238, 0.14);
  background: rgba(3, 8, 12, 0.72);
  color: var(--cream);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(248, 245, 238, 0.55);
}

.form-status {
  margin-top: 10px;
  color: rgba(248, 245, 238, 0.78);
  font-size: 0.92rem;
}

.reviews-grid {
  display: grid;
  gap: 16px;
}

.review-card p {
  color: rgba(248, 245, 238, 0.78);
  line-height: 1.6;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: var(--cream);
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: rgba(248, 245, 238, 0.55);
  font-size: 0.9rem;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ===============================
   BOOKING
================================ */

.booking-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5vw;
}

.booking-panel {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 34px;
  padding: 24px;
}

.meeting-types {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.meeting-option {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  color: var(--cream);
  border-radius: 999px;
  padding: 12px 15px;
  cursor: pointer;
}

.meeting-option.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06100d;
}

.calendar-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-head button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 22px;
}

.days-grid,
.slots-grid {
  display: grid;
  gap: 10px;
}

.days-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 14px;
}

.day-btn,
.slot-btn {
  border: 1px solid var(--line);
  background: rgba(248, 245, 238, 0.04);
  color: var(--cream);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}

.day-btn.active,
.slot-btn.active {
  background: var(--accent);
  color: var(--bg);
}

.slots-grid {
  grid-template-columns: repeat(3, 1fr);
}

.booking-form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--cream);
  padding: 16px;
  outline: none;
  font-size: 15px;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.booking-form button {
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06100d;
  font-weight: 900;
  padding: 17px;
  cursor: pointer;
}

#bookingStatus {
  color: var(--accent);
  font-size: 14px;
  min-height: 18px;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.16);
}

.footer-links,
.social-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===============================
   IRIS
================================ */

.iris-dock {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 100;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.iris-bubble {
  border: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.88);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 17px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(51, 214, 166, 0.12);
  font-weight: 900;
}

.iris-bubble .iris-bubble-label {
  font-weight: 900;
  color: var(--cream);
}

.iris-nudge {
  position: fixed;
  right: 24px;
  bottom: 100px;
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(10, 18, 24, 0.92);
  border: 1px solid rgba(51, 214, 166, 0.35);
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.35;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9998;
}

.iris-nudge.show {
  opacity: 1;
  transform: translateY(0);
}

.iris-panel {
  position: fixed;
  right: 26px;
  bottom: 88px;
  width: min(470px, calc(100vw - 32px));
  height: min(700px, calc(100vh - 120px));
  z-index: 110;
  border: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.92);
  border-radius: 32px;
  backdrop-filter: blur(26px);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.58),
    0 0 70px rgba(51, 214, 166, 0.08);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
  overflow: visible;
}

.iris-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.iris-header {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.iris-header span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  margin-top: 3px;
}

.iris-header button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.iris-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.iris-bot {
  width: 44px;
  height: 44px;
  position: relative;
  display: grid;
  place-items: center;
}

.bot-head {
  width: 36px;
  height: 30px;
  border-radius: 14px;
  background: var(--cream);
  position: relative;
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, 0.12),
    0 0 24px rgba(51, 214, 166, 0.32);
  animation: botFloat 2.8s ease-in-out infinite;
}

.bot-head::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 1px;
  height: 8px;
  background: var(--accent);
}

.bot-head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.bot-head i {
  position: absolute;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bg);
}

.bot-head i:first-child {
  left: 10px;
}

.bot-head i:last-child {
  right: 10px;
}

.bot-hand {
  position: absolute;
  right: 0;
  top: 20px;
  width: 13px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  transform-origin: left center;
  animation: botWave 1.6s ease-in-out infinite;
}

@keyframes botFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes botWave {
  0%, 100% {
    transform: rotate(12deg);
  }

  50% {
    transform: rotate(-32deg);
  }
}

.iris-bubble .dock-bot {
  width: 38px;
  height: 38px;
}

.iris-bubble .dock-bot .bot-head {
  width: 32px;
  height: 27px;
  border-radius: 13px;
}

.iris-bubble .dock-bot .bot-head i {
  top: 11px;
}

.iris-bubble .dock-bot .bot-head i:first-child {
  left: 9px;
}

.iris-bubble .dock-bot .bot-head i:last-child {
  right: 9px;
}

.iris-bubble .dock-bot .bot-hand {
  right: -1px;
  top: 19px;
}

.iris-chat {
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.iris-msg,
.user-msg {
  padding: 14px 15px;
  border-radius: 18px;
  line-height: 1.48;
  font-size: 14px;
  margin-bottom: 12px;
  white-space: pre-line;
}

.iris-msg {
  background: rgba(248, 245, 238, 0.08);
}

.user-msg {
  background: rgba(51, 214, 166, 0.18);
  margin-left: 44px;
}

.iris-quick {
  position: absolute;
  left: -156px;
  top: 86px;
  width: 142px;
  max-height: 420px;
  padding: 0;
  display: grid;
  gap: 8px;
  overflow: visible;
}

.iris-quick button {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 16px;
  padding: 12px 13px;
  text-align: left;
  font-size: 12px;
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.iris-quick button:hover {
  transform: translateX(-4px);
  background: rgba(51, 214, 166, 0.12);
}

.iris-input {
  display: flex;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.iris-input input {
  border-radius: 999px;
  padding: 14px;
}

.iris-input button {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06100d;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

/* ===============================
   SAFE REVEAL
================================ */

body:not(.js-reveal-ready) .reveal,
body:not(.js-reveal-ready) .luxury-strip,
body:not(.js-reveal-ready) .checkup-section,
body:not(.js-reveal-ready) .industries-section,
body:not(.js-reveal-ready) .iris-difference-section,
body:not(.js-reveal-ready) .how-section,
body:not(.js-reveal-ready) .results-section,
body:not(.js-reveal-ready) .services-section,
body:not(.js-reveal-ready) .pricing-section,
body:not(.js-reveal-ready) .booking-section,
body:not(.js-reveal-ready) .reviews-section,
body:not(.js-reveal-ready) .visual-card,
body:not(.js-reveal-ready) .checkup-card,
body:not(.js-reveal-ready) .industry-card,
body:not(.js-reveal-ready) .difference-panel,
body:not(.js-reveal-ready) .flow-pill,
body:not(.js-reveal-ready) .how-card,
body:not(.js-reveal-ready) .result-card,
body:not(.js-reveal-ready) .result-video-card,
body:not(.js-reveal-ready) .meeting-option,
body:not(.js-reveal-ready) .day-btn,
body:not(.js-reveal-ready) .slot-btn,
body:not(.js-reveal-ready) .booking-panel,
body:not(.js-reveal-ready) .pricing-note,
body:not(.js-reveal-ready) .footer {
  opacity: 1 !important;
  transform: none !important;
}

.hero-section,
body.js-reveal-ready .hero-section,
body.js-reveal-ready .hero-section.reveal {
  opacity: 1 !important;
  transform: none !important;
}

body.js-reveal-ready .luxury-strip,
body.js-reveal-ready .checkup-section,
body.js-reveal-ready .industries-section,
body.js-reveal-ready .iris-difference-section,
body.js-reveal-ready .how-section,
body.js-reveal-ready .results-section,
body.js-reveal-ready .services-section,
body.js-reveal-ready .pricing-section,
body.js-reveal-ready .booking-section,
body.js-reveal-ready .reviews-section,
body.js-reveal-ready .visual-card,
body.js-reveal-ready .checkup-card,
body.js-reveal-ready .industry-card,
body.js-reveal-ready .difference-panel,
body.js-reveal-ready .flow-pill,
body.js-reveal-ready .how-card,
body.js-reveal-ready .result-card,
body.js-reveal-ready .result-video-card,
body.js-reveal-ready .meeting-option,
body.js-reveal-ready .day-btn,
body.js-reveal-ready .slot-btn,
body.js-reveal-ready .booking-panel,
body.js-reveal-ready .pricing-note,
body.js-reveal-ready .footer {
  opacity: 0 !important;
  transform: translateY(42px) !important;
  transition:
    opacity 0.72s ease,
    transform 0.72s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease !important;
  will-change: opacity, transform;
}

body.js-reveal-ready .luxury-strip.visible,
body.js-reveal-ready .checkup-section.visible,
body.js-reveal-ready .industries-section.visible,
body.js-reveal-ready .iris-difference-section.visible,
body.js-reveal-ready .how-section.visible,
body.js-reveal-ready .results-section.visible,
body.js-reveal-ready .services-section.visible,
body.js-reveal-ready .pricing-section.visible,
body.js-reveal-ready .booking-section.visible,
body.js-reveal-ready .reviews-section.visible,
body.js-reveal-ready .visual-card.visible,
body.js-reveal-ready .checkup-card.visible,
body.js-reveal-ready .industry-card.visible,
body.js-reveal-ready .difference-panel.visible,
body.js-reveal-ready .flow-pill.visible,
body.js-reveal-ready .how-card.visible,
body.js-reveal-ready .result-card.visible,
body.js-reveal-ready .result-video-card.visible,
body.js-reveal-ready .meeting-option.visible,
body.js-reveal-ready .day-btn.visible,
body.js-reveal-ready .slot-btn.visible,
body.js-reveal-ready .booking-panel.visible,
body.js-reveal-ready .pricing-note.visible,
body.js-reveal-ready .footer.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

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

@media (max-width: 1220px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-video-card {
    grid-column: span 2;
  }

  .industries-grid,
  .combo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

  .difference-panel {
    grid-template-columns: 1fr;
  }
}

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

  .visual-services,
  .checkup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-wrap {
    min-height: 500px;
  }

  .desktop-nav {
    display: none;
  }
}

@media (max-width: 820px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-main-card {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 18px;
  }

  .brand span,
  .soft-btn {
    display: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero-section,
  .services-section,
  .pricing-section,
  .booking-section,
  .reviews-section,
  .checkup-section,
  .industries-section,
  .iris-difference-section,
  .how-section,
  .results-section,
  .luxury-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    letter-spacing: -3px;
    font-size: clamp(48px, 14vw, 72px);
  }

  h2 {
    letter-spacing: -2px;
    font-size: clamp(42px, 12vw, 64px);
    line-height: 0.95;
  }

  .portal-wrap {
    min-height: 360px;
  }

  .glass-logo {
    width: 300px;
    border-radius: 28px;
  }

  .portal-ring,
  .floating-chip {
    display: none;
  }

  .visual-services,
  .checkup-grid,
  .industries-grid,
  .how-grid,
  .results-grid,
  .combo-grid,
  .form-row,
  .days-grid,
  .slots-grid {
    grid-template-columns: 1fr !important;
  }

  .result-video-card {
    grid-column: auto;
  }

  .checkup-card,
  .industry-card,
  .how-card,
  .result-card,
  .result-video-card,
  .visual-card {
    min-height: auto;
    padding: 26px;
  }

  .checkup-card span,
  .result-card span,
  .how-card span {
    margin-bottom: 72px;
  }

  .checkup-card::before,
  .result-card::before {
    width: 110px;
    height: 78px;
    right: 18px;
    top: 18px;
  }

  .checkup-card:nth-child(2)::before {
    width: 62px;
    height: 62px;
    right: 44px;
  }

  .video-placeholder {
    min-height: 220px;
  }

  .checkup-cta,
  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .difference-panel {
    padding: 28px;
    border-radius: 32px;
  }

  .combo-card summary {
    padding: 26px !important;
    min-height: 300px;
  }

  .combo-label {
    margin-bottom: 74px;
  }

  .combo-content {
    padding: 0 26px 26px !important;
  }

  .iris-dock {
    right: 16px;
    bottom: 18px;
  }

  .iris-panel {
    right: 16px;
    bottom: 82px;
  }

  .iris-quick {
    position: static;
    width: auto;
    max-height: 116px;
    padding: 0 18px 14px;
    display: flex;
    overflow-y: auto;
  }

  .iris-quick button {
    width: auto;
    white-space: nowrap;
  }

  .iris-nudge {
    max-width: 210px;
    font-size: 11px;
  }
}