/**
 * Bina Design System — Color tokens
 *.biz-hero
 * Semantic `--color-*` names for component code.
 * Short brand aliases (--navy, --blue, …) are defined in template.css.
 * These semantic tokens reference those aliases — no hex duplication.
 */

:root {
  /* ── Brand (referencing template.css aliases) ── */
  --color-blue: var(--blue);
  --color-dark-teal: var(--navy);
  --color-green: var(--green);
  --color-lime: var(--lime);
  --color-orange: var(--orange);
  --color-blush: var(--salmon);

  /* ── Base ───────────────────────────────── */
  --color-black: var(--text);
  --color-white: var(--white);

  /* ── Neutral scale ──────────────────────── */
  --color-grey-900: var(--dark);
  --color-grey-700: #626262;
  --color-grey-400: #9B9B9B;
  --color-grey-200: #DFDFDF;
  --color-grey-100: var(--cream);
  --color-grey-50: #FAFAF8;

  /* ── Dark surfaces ──────────────────────── */
  --color-bg-dark: #182B32;
  --color-bg-deep: #072834;
  --color-bg-teal: var(--navy);

  /* ── Warm page surfaces ─────────────────── */
  --color-warm-white: var(--warm-white);
  --color-cream: var(--cream);
  --color-border-warm: var(--border-color);

  /* ── Semantic roles ─────────────────────── */
  --color-fg-primary: var(--text);
  --color-fg-secondary: var(--color-grey-700);
  --color-fg-tertiary: var(--color-grey-400);
  --color-fg-inverse: var(--white);

  --color-bg-primary: var(--warm-white);
  --color-bg-card: var(--white);
  --color-bg-secondary: var(--cream);
  --color-bg-dark-primary: var(--color-bg-dark);

  --color-accent-primary: var(--blue);
  --color-accent-warm: var(--orange);
  --color-accent-green: var(--green);
  --color-label-orange: var(--orange);
  --color-tagline-lime: var(--lime);

  --color-border: var(--color-grey-200);

  /* ── Brand gradient — the conic lens ──────── */
  --gradient-brand: linear-gradient(to right,
      #007C4D 0%,
      #A6C632 21%,
      #FF8B22 53%,
      #F9C1B9 70%,
      #2688BF 100%);

  --gradient-lens: conic-gradient(rgb(254, 140, 34) 5%, rgb(230, 208, 60) 16%, rgb(225, 222, 66) 20%,
      rgb(162, 196, 50) 31%, rgb(10, 128, 76) 48%, rgb(0, 124, 78) 51%,
      rgb(37, 135, 188) 69%, rgb(220, 185, 185) 81%, rgb(246, 192, 185) 85%,
      rgb(247, 186, 168) 88%, rgb(254, 140, 34) 100%);

  --scrim-photo: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/**
 * Bina Design System — Typography tokens
 *
 * Latin / display / numbers: Clash Grotesk (local).
 * Hebrew body & buttons:      Heebo (load from Google Fonts on RTL pages).
 * Tracking is a consistent -0.02em on every display size.
 */

:root {
  /* ── Families ───────────────────────────── */
  --font-primary: 'Clash Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-hebrew: 'Heebo', 'Clash Grotesk', sans-serif;
  --font-variable: 'Clash Grotesk Variable', 'Clash Grotesk', sans-serif;

  /* ── Weights ────────────────────────────── */
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* ── Tracking ───────────────────────────── */
  --letter-spacing-tight: -0.02em;
  /* all display sizes */
  --letter-spacing-normal: 0;
  --letter-spacing-label: 0.05em;
  /* section labels */

  /* ── Type scale (desktop) ───────────────── */
  --text-hero: 96px;
  --text-headline: 80px;
  --text-section: 64px;
  --text-large: 32px;
  --text-body-lg: 24px;
  --text-body: 20px;
  --text-micro: 16px;
  --text-tiny: 14px;
  --text-label: 13px;

  /* ── Line heights ───────────────────────── */
  --leading-hero: 96px;
  /* ×1.0 */
  --leading-headline: 88px;
  /* ×1.1 */
  --leading-section: 72px;
  /* ×1.1 */
  --leading-large: 36px;
  /* ×1.1 */
  --leading-body-lg: 31px;
  /* ×1.3 */
  --leading-body: 24px;
  /* ×1.2 */
  --leading-micro: 20px;
  /* ×1.25 */
  --leading-tiny: 20px;
  /* ×1.4 */
  --leading-label: 18px;
}

/* Mobile auto-shrink */
@media (max-width: 768px) {
  :root {
    --text-hero: 56px;
    --text-headline: 40px;
    --text-section: 36px;
    --text-large: 24px;

    --leading-hero: 58px;
    --leading-headline: 44px;
    --leading-section: 40px;
    --leading-large: 30px;
  }
}

/**
 * Bina Design System — Spacing, layout & radius tokens
 * 8pt base scale (4pt at the bottom). Brand avoids drop shadows;
 * depth comes from color blocks and stacking.
 */

:root {
  /* ── Spacing scale ──────────────────────── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;
  --space-12: 128px;

  /* ── Layout ─────────────────────────────── */
  --layout-max-width: 1440px;
  --layout-content-width: 1280px;
  --layout-gutter: 80px;
  --layout-section-py: 96px;

  /* ── Radius ─────────────────────────────── */
  --radius-sm: 4px;
  /* tags */
  --radius-md: 8px;
  /* inputs, small chips */
  --radius-lg: 20px;
  /* cards, image containers, panels */
  --radius-mega: 16px;
  /* mega-menu floating panel */
  --radius-feature: 40px;
  /* big sticky feature cards */
  --radius-pill: 999px;
  /* buttons, nav pill, circle buttons */

  /* ── Elevation (used sparingly) ─────────── */
  --shadow-menu: 0 12px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-cards: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow-rise: 0 -16px 64px rgba(0, 0, 0, 0.30);

  /* ── Motion ─────────────────────────────── */
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  /* @kind other */
  --transition-base: 200ms ease;
  /* @kind other */

  /* ── Blur ───────────────────────────────── */
  --blur-glass: 16px;
}

@media (max-width: 768px) {
  :root {
    --layout-gutter: 24px;
    --layout-section-py: 64px;
  }
}

/**
 * Bina Design System — Base element styles & utilities
 * Light, opt-in foundation. Tokens come from the imported token files.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* Hebrew / RTL pages swap body & button type to Heebo */
[dir="rtl"] body,
[dir="rtl"] .btn,
[dir="rtl"] .bina-btn {
  font-family: var(--font-hebrew);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--color-blue);
  color: var(--color-white);
}

/* ── Type roles ─────────────────────────────── */
h1,
.h1 {
  font-size: var(--text-hero);
  line-height: var(--leading-hero);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-tight);
}

h2,
.h2 {
  font-size: var(--text-headline);
  line-height: var(--leading-headline);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-tight);
}

h3,
.h3 {
  font-size: var(--text-section);
  line-height: var(--leading-section);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-tight);
}

h4,
.h4 {
  font-size: var(--text-large);
  line-height: var(--leading-large);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-tight);
}

p,
.body {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.body-lg {
  font-size: var(--text-body-lg);
  line-height: var(--leading-body-lg);
}

.body-sm {
  font-size: var(--text-tiny);
  line-height: var(--leading-tiny);
}

small,
.micro {
  font-size: var(--text-micro);
  line-height: var(--leading-micro);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.label {
  font-size: var(--text-label);
  line-height: var(--leading-label);
  color: var(--color-label-orange);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-label);
  font-weight: var(--font-weight-semibold);
}

/* ── Color utilities ────────────────────────── */
.text-blue {
  color: var(--color-blue);
}

.text-orange {
  color: var(--color-orange);
}

.text-green {
  color: var(--color-green);
}

.text-lime {
  color: var(--color-lime);
}

.text-white {
  color: var(--color-white);
}

.text-muted {
  color: var(--color-fg-secondary);
}

.bg-dark {
  background-color: var(--color-bg-dark);
}

.bg-teal {
  background-color: var(--color-bg-teal);
}

.bg-deep {
  background-color: var(--color-bg-deep);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-cream {
  background-color: var(--color-cream);
}

.bg-warm {
  background-color: var(--color-warm-white);
}

.gradient-brand {
  background: var(--gradient-brand);
  height: 4px;
  border-radius: 2px;
}

/* ── Layout helpers ─────────────────────────── */
.container {
  max-width: var(--layout-content-width);
  margin: 0 auto;
  padding: 0 var(--layout-gutter);
}

.section {
  padding: var(--layout-section-py) var(--layout-gutter);
}

/* ── Focus ring ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 4px;
}


:root {
  --pad: 80px;
}

body {
  margin: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 40, 52, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-cards);
}

/* Scroll reveal — enhancement only; never hides content if frozen */
.reveal {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════
   Business Page — Component Classes
   ══════════════════════════════════════════════ */

/* ── Hero Section ─────────────────────────── */
.biz-hero {
  position: relative;
  padding: 140px 80px 100px;
  overflow: hidden;
  background: var(--color-white);
}
.hero-grid {
  position: relative;
  
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.label--block {
  display: block;
  margin-bottom: 22px;
}

.biz-hero__title {
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 1.02;
  margin: 0;
}

.biz-hero__desc {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--dark);
  opacity: 0.78;
}

.biz-hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.biz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  letter-spacing: var(--letter-spacing-tight);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base),
    border-color var(--transition-base), opacity var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.biz-btn--primary {
  font-size: 20px;
  padding: 16px 48px;
  height: 56px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--white);
}

.biz-btn--link {
  font-size: 18px;
  padding: 0;
  height: auto;
  border: none;
  background: transparent;
  color: var(--dark);
}

.biz-hero__badges {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.biz-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.biz-badge--blue {
  background: rgba(38, 136, 191, 0.12);
  color: var(--blue);
}

.biz-badge--green {
  background: rgba(0, 124, 77, 0.12);
  color: var(--green);
}

.biz-badge--orange {
  background: rgba(255, 139, 34, 0.14);
  color: rgb(194, 94, 0);
}

.biz-badge--neutral {
  background: var(--cream);
  color: var(--dark);
}

.biz-hero__image {
  position: relative;
}

.biz-hero__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}

.biz-hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-hero__accent {
  position: absolute;
  inset-inline-start: -10px;
  bottom: -10px;
  max-width: 200px;
}

.biz-hero__accent-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--gradient-brand);
  width: 100%;
}

/* ── About Section ────────────────────────── */
.biz-about {
  
  margin: 0 auto;
  padding: 40px var(--pad) 96px;
  background: var(--cream);
}

.about-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

.section-desc--muted {
  color: var(--color-grey-700);
  margin: 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-grey-200);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.principle-card {
  background: var(--warm-white);
  padding: 32px 30px;
}

.principle-bar {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.principle-bar--green {
  background: var(--green);
}

.principle-bar--orange {
  background: var(--orange);
}

.principle-bar--blue {
  background: var(--blue);
}

.principle-title {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.principle-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-grey-700);
}

/* ── Lens 360 Section ─────────────────────── */
.biz-lens {
  background: var(--navy);
  color: var(--white);
  padding: 104px var(--pad);
}

.lens-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.lens-ring {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lens-ring__outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-lens);
}

.lens-ring__inner {
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  background: var(--warm-white);
}

.lens-ring__text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lens-ring__label {
  color: var(--green);
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.lens-ring__title {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000;
}

.label--lime {
  color: var(--lime);
}

.biz-lens__title {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

.biz-lens__desc {
  max-width: 540px;
  margin: 22px 0 0;
  opacity: 0.82;
}

.biz-lens__footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.biz-lens__footnote-bar {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--gradient-brand);
}

/* ── Lens 360 Visualization ───────────────── */
.lens360 {
  position: relative;
  width: min(540px, 100%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.lens-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.lens360__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lens360__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gradient-lens);
}

.lens360__ring-inner {
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background: var(--color-warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lens360__ring-label {
  color: var(--color-green);
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.04em;
}

.lens360__ring-title {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000;
}

.lens360__node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 92px;
}

.lens360__node--1 { left: 50%;      top: 10%;      }
.lens360__node--2 { left: 78.2843%; top: 21.7157%; }
.lens360__node--3 { left: 90%;      top: 50%;      }
.lens360__node--4 { left: 78.2843%; top: 78.2843%; }
.lens360__node--5 { left: 50%;      top: 90%;      }
.lens360__node--6 { left: 21.7157%; top: 78.2843%; }
.lens360__node--7 { left: 10%;      top: 50%;      }
.lens360__node--8 { left: 21.7157%; top: 21.7157%; }

.lens360__node-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.lens360__node-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

/* ── Interfaces Section ───────────────────── */
.biz-interfaces {
  margin: 0 auto;
  padding: 96px var(--pad);
}

.biz-interfaces__intro {
  margin-bottom: 64px;
  text-align: center;
}

.if-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.if-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.if-row--reverse {
  direction: ltr;
}

.if-row--reverse > * {
  direction: rtl;
}

/* ── Mockup ── */
.if-row__mockup {
  perspective: 1200px;
}

.if-mockup {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.if-row--reverse .if-mockup {
  transform: rotateY(4deg) rotateX(2deg);
}

.if-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.if-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #12122a;
}

.if-mockup__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.if-mockup__bar span:nth-child(1) { background: #ff5f57; }
.if-mockup__bar span:nth-child(2) { background: #ffbd2e; }
.if-mockup__bar span:nth-child(3) { background: #28c940; }

.if-mockup__screen {
  overflow: hidden;
  line-height: 0;
}

.if-mockup__screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Row text ── */
.if-row__text {
  padding: 16px 0;
}

.if-row__number {
  display: block;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy, #0c1a3a);
  opacity: 0.1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.if-row__title {
  font-size: var(--text-large, 32px);
  line-height: 1.15;
  letter-spacing: var(--letter-spacing-tight, -0.02em);
  margin: 0 0 20px;
  color: var(--navy, #0c1a3a);
}

.if-row__desc {
  font-size: var(--text-body, 17px);
  line-height: 1.7;
  color: var(--text-muted, #555);
  margin: 0;
  max-width: 480px;
}

/* ── Modules Section ──────────────────────── */
.biz-modules {
  background: var(--cream);
  padding: 96px var(--pad);
}

.biz-modules__inner {
  
  margin: 0 auto;
}

.modules-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  color: var(--text);
  box-sizing: border-box;
}

.module-card__number {
  font-size: 28px;
  line-height: 1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.module-card__title {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.module-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-fg-secondary);
  margin: 0;
}

/* ── Tech Section ─────────────────────────── */
.biz-tech {
  background: var(--color-bg-dark);
  color: var(--white);
  padding: 96px var(--pad);
}

.biz-tech__inner {
  
  margin: 0 auto;
}

.biz-tech__intro {
  margin-bottom: 56px;
  max-width: 760px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 48px;
}

.tech-item {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.tech-item__title {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.tech-item__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* ── CTA Section ──────────────────────────── */
.biz-cta__title {
  margin-top: 20px;
}

/* ══════════════════════════════════════════════
   Responsive Overrides
   ══════════════════════════════════════════════ */

@media (max-width: 1000px) {
  :root {
    --pad: 32px;
  }

  .hero-grid,
  .about-head,
  .modules-head,
  .lens-grid,
  .cta-panel {
    grid-template-columns: 1fr !important;
  }

  .lens-grid {
    gap: 40px !important;
  }

  .module-grid,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .if-row {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .if-row--reverse {
    direction: rtl;
  }

  .if-mockup {
    transform: none !important;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 20px;
  }

  .principles,
  .module-grid,
  .tech-grid {
    grid-template-columns: 1fr !important;
  }

  .foot-top {
    justify-content: center;
    text-align: center;
  }
}



/* IMS visual: a browser-window framing the placeholder image */
.ims-vis {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .ims-vis {
    margin-right: -60px;
  }
}


.ims-screen {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(7, 40, 52, 0.1);
  border-radius: 18px;
  box-shadow:
    0 30px 70px -20px rgba(7, 40, 52, 0.25),
    0 8px 24px rgba(7, 40, 52, 0.08);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}

.ims-screen-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--cream);
  border-bottom: 1px solid rgba(7, 40, 52, 0.08);
  flex-shrink: 0;
  text-align: left;
  direction: ltr;
}

.ims-screen-bar>span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(7, 40, 52, 0.18);
}

.ims-screen-bar>span:first-child {
  background: #FF6B5B;
}

.ims-screen-bar>span:nth-child(2) {
  background: #FFC95B;
}

.ims-screen-bar>span:nth-child(3) {
  background: var(--green);
}

.ims-url {
  margin-right: 16px;
  background: var(--white);
  border: 1px solid rgba(7, 40, 52, 0.08);
  border-radius: 999px;
  padding: 5px 16px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  direction: ltr;
  flex: 1;
}

.ims-screen image-slot {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.ims-vis-tag {
  position: absolute;
  bottom: -22px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  box-shadow: 0 12px 32px rgba(7, 40, 52, 0.2);
}

.ims-vis-tag .t-num {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding-right: 12px;
  text-transform: uppercase;
}


/* ===== IMS 3D PERSPECTIVE ===== */
.ims-vis {
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.ims-screen {
  transform: rotateY(12deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, .18),
    0 8px 20px rgba(0, 0, 0, .12),
    20px 20px 40px rgba(0, 0, 0, .08);
  border-radius: 14px;
  overflow: hidden;
  will-change: transform;
}

.ims-screen img {
  display: block;
}

.ims-vis-tag {
  transform: rotateY(12deg) rotateX(4deg);
  transform-origin: center top;
  transition: transform .15s ease-out;
}

@media(max-width:768px) {

  .ims-screen,
  .ims-vis-tag {
    transform: none;
  }
}
