/* ===================================================
   HeyTARA Website — style.css
   Hospitality-driven workflow automation
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --red:       #C41E1E;
  --orange:    #FF9F43;
  --yellow:    #FFD93D;
  --green:     #6BCB77;
  --teal:      #4ECDC4;
  --coral:     #FF6B6B;
  --navy:      #1A1A2E;
  --white:     #FFFFFF;
  --offwhite:  #FAFAFA;
  --gray-100:  #F4F4F6;
  --gray-200:  #E8E8ED;
  --gray-500:  #9E9E9E;
  --gray-700:  #4A4A5A;

  --grad-hero:   linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 30%, #FFF3E0 100%);
  --grad-warm:   linear-gradient(135deg, #FF9F43 0%, #FFD93D 100%);
  --grad-green:  linear-gradient(135deg, #6BCB77 0%, #4ECDC4 100%);
  --grad-red:    linear-gradient(135deg, #C41E1E 0%, #FF6B6B 100%);
  --grad-full:   linear-gradient(135deg, #FFD93D 0%, #FF9F43 50%, #FF6B6B 100%);
  --grad-voice:  linear-gradient(135deg, #1A0028 0%, #3D0066 60%, #6B00AA 100%);
  --grad-text:   linear-gradient(135deg, #002D4A 0%, #005C99 100%);
  --grad-email:  linear-gradient(135deg, #003322 0%, #006644 100%);
  --grad-dark:   linear-gradient(135deg, #12121E 0%, #1A1A2E 100%);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-pill: 999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.14);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.22);
  --shadow-glow-red:    0 0 40px rgba(196,30,30,.35);
  --shadow-glow-orange: 0 0 40px rgba(255,159,67,.35);
  --shadow-glow-green:  0 0 40px rgba(107,203,119,.35);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--offwhite);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  border-bottom-color: rgba(0,0,0,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 28px;
  width: auto;
  background: transparent;
  padding: 0;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--navy);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--red); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .6rem 1.4rem;
  background: var(--grad-red);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: var(--shadow-glow-red);
}
.nav__cta:hover { transform: translateY(-2px); opacity: .92; box-shadow: 0 0 50px rgba(196,30,30,.5); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 1rem 5%;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: .85rem 0;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 1.05rem;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .nav__cta {
  margin-top: .5rem;
  text-align: center;
  justify-content: center;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 120px 5% 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,159,67,.15), transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,217,61,.12), transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(107,203,119,.1), transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .06;
  mix-blend-mode: multiply;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__illustration {
  width: 100%;
  max-width: 700px;
}
.hero__restaurant-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  mix-blend-mode: multiply;
  transition: transform .4s ease;
}
.hero__restaurant-img:hover {
  transform: scale(1.03) translateY(-4px);
}

/* Hero bottom — stats + trusted, full width below split */
.hero__bottom {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 4rem auto 0;
  width: 100%;
  clear: both;
}

/* Trusted by — inside hero, under stats */
.hero__trusted {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.hero__trusted-label {
  font-size: .82rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero__trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero__trusted-logos img {
  height: 36px;
  width: auto;
  filter: grayscale(100%);
  opacity: .5;
  transition: filter .3s, opacity .3s;
}
.hero__trusted-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .4rem 1rem;
  background: rgba(196,30,30,.06);
  border: 1px solid rgba(196,30,30,.2);
  border-radius: var(--radius-pill);
  color: var(--red);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: inline-block; animation: pulse 2s ease-in-out infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero__headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: normal;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--gray-700);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero__sub strong { color: var(--navy); font-weight: 600; }

.hero__channels {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.hero__channel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .88rem;
  border: 1.5px solid;
}
.hero__channel--voice  { color: var(--red); border-color: rgba(196,30,30,.25); background: rgba(196,30,30,.06); }
.hero__channel--text   { color: var(--orange); border-color: rgba(255,159,67,.3); background: rgba(255,159,67,.08); }
.hero__channel--email  { color: var(--green); border-color: rgba(107,203,119,.3); background: rgba(107,203,119,.08); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-red);
  color: var(--white);
  box-shadow: var(--shadow-glow-red);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(196,30,30,.55); }
.btn--ghost {
  color: var(--navy);
  border: 1.5px solid rgba(26,26,46,.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--navy); background: rgba(26,26,46,.04); transform: translateY(-2px); }
.btn--large { padding: 1rem 2.4rem; font-size: 1.1rem; }
.btn--orange {
  background: var(--grad-warm);
  color: var(--navy);
  box-shadow: var(--shadow-glow-orange);
}
.btn--orange:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(255,159,67,.55); }

.hero__stat-strip {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.hero__stat { }
.hero__stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  display: block;
}
.hero__stat-label {
  font-size: .85rem;
  color: var(--gray-700);
  margin-top: .25rem;
}

/* ===================================================
   PROBLEM SECTION
   =================================================== */
.problem {
  padding: 100px 5%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-full);
}

.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.eyebrow--orange { color: var(--orange); }
.eyebrow--green  { color: var(--green); }
.eyebrow--red    { color: var(--coral); }
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--purple { color: #CF93FF; }
.eyebrow--blue   { color: #72C3FF; }
.eyebrow--white  { color: rgba(255,255,255,.6); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 640px;
}
.section-sub--light { color: rgba(255,255,255,.6); }
.section-sub--center { margin: 0 auto; }

.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.problem .section-title { color: var(--white); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.stat-card.visible { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease, box-shadow var(--transition); }
.stat-card:hover { transform: translateY(-6px); }

.stat-card--red    { background: linear-gradient(135deg, #3D0000 0%, #600A0A 100%); box-shadow: 0 8px 40px rgba(196,30,30,.25); }
.stat-card--red:hover    { box-shadow: 0 20px 60px rgba(196,30,30,.4); }
.stat-card--orange { background: linear-gradient(135deg, #3D2000 0%, #5C3A00 100%); box-shadow: 0 8px 40px rgba(255,159,67,.2); }
.stat-card--orange:hover { box-shadow: 0 20px 60px rgba(255,159,67,.35); }
.stat-card--yellow { background: linear-gradient(135deg, #2D2700 0%, #4A3E00 100%); box-shadow: 0 8px 40px rgba(255,217,61,.15); }
.stat-card--yellow:hover { box-shadow: 0 20px 60px rgba(255,217,61,.3); }
.stat-card--green  { background: linear-gradient(135deg, #002200 0%, #003800 100%); box-shadow: 0 8px 40px rgba(107,203,119,.2); }
.stat-card--green:hover  { box-shadow: 0 20px 60px rgba(107,203,119,.4); }

.stat-card__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}

.stat-card__num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.stat-card--red    .stat-card__num { color: var(--coral); }
.stat-card--orange .stat-card__num { color: var(--orange); }
.stat-card--yellow .stat-card__num { color: var(--yellow); }
.stat-card--green  .stat-card__num { color: var(--green); }

.stat-card__label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.stat-card__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.stat-card__icon {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-size: 2.5rem;
  opacity: .15;
}

/* ===================================================
   CHANNEL SECTIONS
   =================================================== */
.channel {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.channel--voice  { background: var(--grad-voice); }
.channel--text   { background: var(--grad-text); }
.channel--email  { background: var(--grad-email); }

.channel__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.channel__inner--reverse { direction: rtl; }
.channel__inner--reverse > * { direction: ltr; }

.channel__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.channel--voice  .channel__icon-wrap { background: rgba(207,147,255,.2); border: 2px solid rgba(207,147,255,.3); }
.channel--text   .channel__icon-wrap { background: rgba(114,195,255,.2); border: 2px solid rgba(114,195,255,.3); }
.channel--email  .channel__icon-wrap { background: rgba(116,240,160,.2); border: 2px solid rgba(116,240,160,.3); }

.channel .section-title { color: var(--white); }
.channel .section-sub   { color: rgba(255,255,255,.65); max-width: 100%; }

.channel__quote {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.channel--voice  .channel__quote { background: rgba(207,147,255,.12); border-left: 3px solid rgba(207,147,255,.6); color: rgba(255,255,255,.85); }
.channel--text   .channel__quote { background: rgba(114,195,255,.12); border-left: 3px solid rgba(114,195,255,.6); color: rgba(255,255,255,.85); }
.channel--email  .channel__quote { background: rgba(116,240,160,.12); border-left: 3px solid rgba(116,240,160,.6); color: rgba(255,255,255,.85); }

.feature-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.feature-item__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-top: 2px;
}
.channel--voice  .feature-item__check { background: rgba(207,147,255,.25); color: #CF93FF; }
.channel--text   .feature-item__check { background: rgba(114,195,255,.25); color: #72C3FF; }
.channel--email  .feature-item__check { background: rgba(116,240,160,.25); color: #74F0A0; }

.feature-item__text { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.5; }
.feature-item__text strong { color: var(--white); }

/* Channel Visual Card */
.channel__visual {
  position: relative;
}
.channel__card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.channel--voice  .channel__card { background: rgba(255,255,255,.06); border: 1px solid rgba(207,147,255,.2); }
.channel--text   .channel__card { background: rgba(255,255,255,.06); border: 1px solid rgba(114,195,255,.2); }
.channel--email  .channel__card { background: rgba(255,255,255,.06); border: 1px solid rgba(116,240,160,.2); }

.channel__card-title {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Voice waveform visual */
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 60px;
  margin: 1.5rem 0;
}
.waveform__bar {
  flex: 1;
  border-radius: 2px;
  background: rgba(207,147,255,.6);
  animation: wave 1.2s ease-in-out infinite;
}
.waveform__bar:nth-child(1)  { height: 20%; animation-delay: 0s; }
.waveform__bar:nth-child(2)  { height: 50%; animation-delay: .1s; }
.waveform__bar:nth-child(3)  { height: 80%; animation-delay: .2s; }
.waveform__bar:nth-child(4)  { height: 40%; animation-delay: .3s; }
.waveform__bar:nth-child(5)  { height: 90%; animation-delay: .4s; }
.waveform__bar:nth-child(6)  { height: 60%; animation-delay: .5s; }
.waveform__bar:nth-child(7)  { height: 100%; animation-delay: .6s; }
.waveform__bar:nth-child(8)  { height: 70%; animation-delay: .7s; }
.waveform__bar:nth-child(9)  { height: 45%; animation-delay: .8s; }
.waveform__bar:nth-child(10) { height: 85%; animation-delay: .9s; }
.waveform__bar:nth-child(11) { height: 30%; animation-delay: 1.0s; }
.waveform__bar:nth-child(12) { height: 65%; animation-delay: 1.1s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(.3); }
}

/* SMS bubbles */
.sms-thread { display: flex; flex-direction: column; gap: .75rem; }
.sms-bubble {
  max-width: 80%;
  padding: .7rem 1rem;
  border-radius: 18px;
  font-size: .88rem;
  line-height: 1.45;
}
.sms-bubble--in  {
  background: rgba(114,195,255,.18);
  border: 1px solid rgba(114,195,255,.25);
  color: rgba(255,255,255,.85);
  border-bottom-left-radius: 4px;
}
.sms-bubble--out {
  background: rgba(114,195,255,.32);
  border: 1px solid rgba(114,195,255,.5);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.sms-label { font-size: .72rem; color: rgba(255,255,255,.4); margin-bottom: .2rem; }

/* Email preview */
.email-preview {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(116,240,160,.15);
}
.email-preview__header {
  background: rgba(116,240,160,.12);
  padding: .9rem 1.2rem;
  border-bottom: 1px solid rgba(116,240,160,.15);
}
.email-preview__subject { font-weight: 700; color: var(--white); font-size: .9rem; }
.email-preview__from    { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .2rem; }
.email-preview__body    { padding: 1.2rem; color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.6; }
.email-preview__cta     {
  display: inline-block;
  margin-top: .75rem;
  padding: .5rem 1.2rem;
  background: var(--grad-green);
  border-radius: var(--radius-pill);
  color: var(--navy);
  font-weight: 700;
  font-size: .82rem;
}

/* ===================================================
   WORKFLOW SECTION
   =================================================== */
.workflow {
  padding: 100px 5%;
  background: var(--offwhite);
}
.workflow__inner { max-width: var(--max-w); margin: 0 auto; }

/* Old workflow diagram (kept for reference) */
.workflow-diagram { display: none; }

/* New v2 workflow diagram — Apple-style */
.workflow-diagram-v2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
  padding: 2rem 0;
}
.wf-step {
  text-align: center;
  flex: 0 0 160px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.wf-step.visible { opacity: 1; transform: translateY(0); }
.wf-step__circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wf-step:hover .wf-step__circle {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.wf-step__label {
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: .3rem;
  line-height: 1.3;
}
.wf-step__sub {
  font-size: .8rem;
  color: var(--gray-700);
  line-height: 1.4;
  max-width: 140px;
  margin: 0 auto;
}
.wf-connector {
  display: flex;
  align-items: center;
  flex: 0 0 40px;
  padding-top: 20px;
  position: relative;
}
.wf-connector__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200), var(--orange), var(--gray-200));
}
.wf-connector__arrow {
  display: none;
}

/* Legacy styles kept */
.workflow-step__title { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: .4rem; }
.workflow-step__desc  { font-size: .82rem; color: var(--gray-700); line-height: 1.4; }
.workflow-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--gray-200);
  line-height: 1;
  padding-top: 1rem;
}

/* ===================================================
   ENCOUNTER TYPES
   =================================================== */
.encounters {
  padding: 100px 5%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.encounters::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-full);
}

.encounters .section-title { color: var(--white); }
.encounter-quote {
  margin: 2rem auto 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  max-width: 680px;
  line-height: 1.4;
  font-style: italic;
}

.encounter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.encounter-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.encounter-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.encounter-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.encounter-card__emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.encounter-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.encounter-card__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.encounter-card__tag {
  display: inline-block;
  margin-top: 1rem;
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tag--red    { background: rgba(196,30,30,.2);  color: var(--coral); border: 1px solid rgba(196,30,30,.3); }
.tag--orange { background: rgba(255,159,67,.15); color: var(--orange); border: 1px solid rgba(255,159,67,.3); }
.tag--yellow { background: rgba(255,217,61,.15); color: var(--yellow); border: 1px solid rgba(255,217,61,.3); }
.tag--green  { background: rgba(107,203,119,.15); color: var(--green); border: 1px solid rgba(107,203,119,.3); }
.tag--purple { background: rgba(207,147,255,.15); color: #CF93FF; border: 1px solid rgba(207,147,255,.3); }
.tag--blue   { background: rgba(114,195,255,.15); color: #72C3FF; border: 1px solid rgba(114,195,255,.3); }

/* ===================================================
   HOW IT WORKS
   =================================================== */
.howitworks {
  padding: 100px 5%;
  background: var(--offwhite);
}
.howitworks__inner { max-width: var(--max-w); margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  counter-reset: steps;
}
.step-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(25px);
  position: relative;
  overflow: hidden;
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, box-shadow var(--transition), transform var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.step-card:nth-child(1)::before { background: var(--grad-voice); }
.step-card:nth-child(2)::before { background: var(--grad-red); }
.step-card:nth-child(3)::before { background: var(--grad-warm); }
.step-card:nth-child(4)::before { background: var(--grad-green); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.step-card:nth-child(1) .step-num { background: linear-gradient(135deg, #3D0066, #6B00AA); }
.step-card:nth-child(2) .step-num { background: var(--grad-red); }
.step-card:nth-child(3) .step-num { background: var(--grad-warm); color: var(--navy); }
.step-card:nth-child(4) .step-num { background: var(--grad-green); color: var(--navy); }

.step-card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.step-card__desc  { font-size: .9rem; color: var(--gray-700); line-height: 1.6; }

/* ===================================================
   TRUSTED BY
   =================================================== */
.social-proof {
  padding: 80px 5%;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.social-proof__inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.social-proof__label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.logo-strip img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.5);
  transition: filter var(--transition);
}
.logo-strip img:hover { filter: grayscale(0%) opacity(1); }
.logo-text-fallback {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: -.01em;
  transition: color var(--transition);
}
.logo-text-fallback:hover { color: var(--navy); }

/* ===================================================
   RESULTS
   =================================================== */
.results {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0A1A0A 0%, #0A2A14 100%);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,203,119,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(78,205,196,.1) 0%, transparent 60%);
}
.results__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.results .section-title { color: var(--white); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.result-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(107,203,119,.2);
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: scale(.95);
}
.result-card.visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity .5s ease, transform .5s ease, box-shadow var(--transition);
}
.result-card:hover {
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow-glow-green);
  transform: translateY(-5px) scale(1.02);
}

.result-card__num {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  display: block;
  margin-bottom: .5rem;
  overflow: visible;
}
.result-card__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}
.result-card__sub { font-size: .85rem; color: rgba(255,255,255,.45); }

/* ===================================================
   BOTTOM CTA
   =================================================== */
.bottom-cta {
  padding: 120px 5%;
  background: linear-gradient(135deg, #1A0A0A 0%, #2D1414 30%, #1A1A2E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bottom-cta__orb-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,30,.4), transparent 70%);
  filter: blur(80px);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.bottom-cta__orb-2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,159,67,.3), transparent 70%);
  filter: blur(60px);
  bottom: -100px; right: 10%;
  pointer-events: none;
}
.bottom-cta__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.bottom-cta .section-title { color: var(--white); margin-bottom: 1rem; }
.bottom-cta .section-sub   { color: rgba(255,255,255,.65); margin: 0 auto 2.5rem; }
.bottom-cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.bottom-cta__mission {
  margin-top: 3rem;
  font-size: .9rem;
  color: rgba(255,255,255,.4);
}
.bottom-cta__mission strong { color: rgba(255,255,255,.7); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #0A0A0F;
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { max-width: 320px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.footer__logo img { height: 32px; width: auto; border-radius: 6px; }
.footer__logo-text { font-size: 1.3rem; font-weight: 800; }
.footer__logo-text .hey  { color: var(--red); }
.footer__logo-text .tara { color: var(--white); }
.footer__tagline { font-size: .9rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.footer__col-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: .82rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 96px;
}
.contact-hero__form-side {
  flex: 1;
  padding: 80px 6%;
  background: var(--offwhite);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero__visual-side {
  flex: 1;
  background: linear-gradient(135deg, #1A0A0A 0%, #2D1414 30%, #1A1A2E 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.contact-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .4;
}
.contact-visual-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--red), transparent 70%);
  top: -100px; right: -100px;
}
.contact-visual-orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--orange), transparent 70%);
  bottom: 0; left: -50px;
}

.contact-visual-content { position: relative; z-index: 2; max-width: 420px; }
.contact-visual-content .section-title { color: var(--white); font-size: 2.4rem; margin-bottom: 1rem; }
.contact-visual-content .section-sub   { color: rgba(255,255,255,.65); }

.contact-perks { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-perk {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-perk__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-perk:nth-child(1) .contact-perk__icon { background: rgba(196,30,30,.25); }
.contact-perk:nth-child(2) .contact-perk__icon { background: rgba(255,159,67,.25); }
.contact-perk:nth-child(3) .contact-perk__icon { background: rgba(107,203,119,.25); }
.contact-perk:nth-child(4) .contact-perk__icon { background: rgba(114,195,255,.25); }
.contact-perk__text { color: rgba(255,255,255,.75); font-size: .95rem; }
.contact-perk__text strong { color: var(--white); }

/* Form */
.form-header { margin-bottom: 2.5rem; }
.form-header__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.form-header__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: .75rem;
}
.form-header__sub { font-size: 1rem; color: var(--gray-700); line-height: 1.6; }

.demo-form { max-width: 520px; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
input, textarea, select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,30,.12);
}
textarea { resize: vertical; min-height: 120px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234A4A5A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--grad-red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-glow-red);
  margin-top: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(196,30,30,.5); }
.form-submit:active { transform: translateY(0); }

.form-note {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--gray-500);
  text-align: center;
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--green);
}
.form-success.show { display: block; }
.form-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success__title { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.form-success__sub { color: var(--gray-700); line-height: 1.6; }

/* ===================================================
   ANIMATIONS (Intersection Observer)
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ===================================================
   RESPONSIVE — MOBILE FIRST
   =================================================== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__inner--split { grid-template-columns: 1fr; gap: 2rem; }
  .hero__right { order: -1; }
  .hero__illustration { max-width: 320px; margin: 0 auto; }

  .channel__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .channel__inner--reverse { direction: ltr; }

  .workflow-diagram-v2 {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .wf-step { flex: 0 0 auto; }
  .wf-connector {
    flex: 0 0 30px;
    transform: rotate(90deg);
  }
  .workflow-diagram {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .workflow-arrow { transform: rotate(90deg); }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { max-width: 100%; }

  .contact-hero { flex-direction: column; }
  .contact-hero__visual-side { min-height: 400px; }

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

@media (max-width: 600px) {
  .hero { padding: 100px 5% 60px; }
  .hero__stat-strip { grid-template-columns: repeat(2, 1fr); }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-card__num { font-size: 2.5rem; }

  .encounter-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .bottom-cta__btns { flex-direction: column; align-items: center; }

  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .stat-grid { grid-template-columns: 1fr; }
  .hero__stat-strip { grid-template-columns: 1fr; }
}

/* ===================================================
   STICKY CTA
   =================================================== */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .85rem 1.8rem;
  background: linear-gradient(135deg, #C41E1E, #FF6B6B);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px rgba(196,30,30,.35);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, box-shadow .3s ease;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover {
  box-shadow: 0 12px 40px rgba(196,30,30,.5);
  transform: translateY(-2px);
}
.sticky-cta::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #C41E1E, #FF6B6B);
  z-index: -1;
  opacity: 0;
  animation: stickyPulse 2.5s ease-in-out infinite;
}
@keyframes stickyPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: .3; transform: scale(1.08); }
}

/* ===================================================
   LOGO CAROUSEL
   =================================================== */
.logo-carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: carouselScroll 20s linear infinite;
}
.logo-carousel__track:hover {
  animation-play-state: paused;
}
.logo-carousel__track img {
  height: 36px;
  width: auto;
  filter: grayscale(100%);
  opacity: .5;
  transition: filter .3s, opacity .3s;
  flex-shrink: 0;
}
.logo-carousel__track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.logo-carousel__track .logo-text-fallback {
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: .5;
  transition: filter .3s, opacity .3s;
}
.logo-carousel__track .logo-text-fallback:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===================================================
   INTEGRATIONS
   =================================================== */
.integrations {
  padding: 100px 5%;
  background: var(--offwhite);
}
.integration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.integration-card {
  flex: 0 0 calc(25% - 1.2rem);
  background: var(--white);
  border: 2px solid;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.integration-card__img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  margin-bottom: .75rem;
}
.integration-card__logo {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  margin: 0 auto 1rem;
  letter-spacing: .02em;
}
.integration-card__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.integration-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray-700);
  font-size: .95rem;
}
.integration-note a {
  color: var(--red);
  font-weight: 600;
}
.integration-note a:hover {
  text-decoration: underline;
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: 100px 5%;
  background: var(--offwhite);
}
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-item__q:hover {
  color: var(--red);
}
.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray-500);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0;
}
.faq-item.active .faq-item__a {
  max-height: 300px;
  padding-bottom: 1.4rem;
}
.faq-item__a p {
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===================================================
   RESPONSIVE — INTEGRATIONS & FAQ
   =================================================== */
@media (max-width: 600px) {
  .integration-card { flex: 0 0 calc(50% - 1rem); }
  .sticky-cta { bottom: 1rem; right: 1rem; font-size: .85rem; padding: .7rem 1.4rem; }
}

/* ===================================================
   MISC
   =================================================== */
::selection { background: rgba(196,30,30,.25); color: var(--navy); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
