/* ================================================
   Beyond Infinity — Stylesheet (AI Ecosystem Edition)
   ================================================ */

:root {
  --navy:       #0B1B3E;
  --navy-mid:   #112548;
  --blue:       #1B4FD8;
  --blue-light: #3B6BF7;
  --gold:       #F0A500;
  --gold-light: #FFC933;
  --light:      #F4F7FF;
  --white:      #FFFFFF;
  --gray-100:   #F8FAFC;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-700:   #374151;
  --gray-800:   #1E293B;
  --dark:       #1C2635;
  --green:      #10B981;
  --red:        #EF4444;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(11, 27, 62, 0.08);
  --shadow-lg: 0 16px 48px rgba(11, 27, 62, 0.16);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.25s;
  --container: 1200px;
}

/* ================================================
   RESET & BASE
   ================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
table { border-collapse: collapse; width: 100%; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { overflow: hidden; }

/* ================================================
   SECTION TYPOGRAPHY
   ================================================ */

.section-badge {
  display: inline-block;
  background: rgba(27, 79, 216, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-badge--dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle { margin: 0 auto; }

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   NAVIGATION
   ================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t) var(--ease),
              padding var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}

.nav.scrolled {
  background: rgba(28, 38, 53, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav__container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-right: auto;
  flex-shrink: 0;
}

.nav__logo-icon {
  background: var(--blue);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: #fff;
}

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

.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(150deg, rgba(11, 27, 62, 0.90) 0%, rgba(13, 35, 86, 0.86) 55%, rgba(15, 50, 114, 0.82) 100%),
    url('../img/hero-vancouver.jpg');
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 72% 45%, rgba(27, 79, 216, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 15% 85%, rgba(240, 165, 0, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-top: 40px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 860px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 165, 0, 0.12);
  border: 1px solid rgba(240, 165, 0, 0.28);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dot-pulse 2.2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* Title */
.hero__title {
  font-size: clamp(18px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title--accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

/* Subtitle */
.hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 22px;
}

/* Sector tags */
.hero__sector-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__sector-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA text */
.hero__actions-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Scroll indicator */
.hero__scroll {
  text-align: center;
  padding-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero__scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.25);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.35; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 0.75; }
}

/* ================================================
   TAG PILLS (shared)
   ================================================ */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.tag-pill--accent {
  background: rgba(240, 165, 0, 0.12);
  border-color: rgba(240, 165, 0, 0.35);
  color: #B07600;
}

.tag-pill--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================
   CAPABILITIES (What We Do / Why Us)
   ================================================ */

.capabilities {
  padding: 112px 0;
  background: var(--gray-100);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.capabilities__col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.capabilities__col .pillar { margin-bottom: 22px; }
.capabilities__col .pillar:last-child { margin-bottom: 0; }

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar__icon {
  width: 26px;
  height: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar__icon svg { width: 13px; height: 13px; }

.pillar strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* Why cards */
.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: border-color var(--t), box-shadow var(--t);
}

.why-card:last-child { margin-bottom: 0; }

.why-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.why-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(27, 79, 216, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card__icon svg { width: 21px; height: 21px; }

.why-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ================================================
   AI ECOSYSTEM — MODULE GRID
   ================================================ */

.ecosystem {
  padding: 112px 0;
  background: var(--white);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.module-card {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  background: var(--white);
}

.module-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(27, 79, 216, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.module-card__icon svg { width: 22px; height: 22px; }

.module-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.module-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Spotlight (IR Websites) */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.spotlight__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.spotlight__desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Browser mockup */
.browser-mockup {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.browser-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-mockup__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.browser-mockup__url {
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 100px;
}

.browser-mockup__body { padding: 24px; }

.browser-mockup__head { margin-bottom: 20px; }

.browser-mockup__head strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.browser-mockup__head span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.browser-mockup__ticker {
  margin-top: 8px;
  display: inline-block;
  background: rgba(240, 165, 0, 0.15);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.browser-mockup__panels {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.browser-mockup__panel-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.browser-mockup__panel-title--spaced { margin-top: 16px; }

.browser-mockup__news {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px;
}

.browser-mockup__news-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 0;
  line-height: 1.4;
}

.browser-mockup__news-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.browser-mockup__chart {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px;
}

.browser-mockup__sparkline {
  width: 100%;
  height: 44px;
}

.browser-mockup__sparkline polyline {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.browser-mockup__map {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  color: rgba(255, 255, 255, 0.35);
}

.browser-mockup__map svg { width: 28px; height: 28px; }

.browser-mockup__cta {
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
}

/* ================================================
   AI CHATBOTS
   ================================================ */

.chatbots {
  padding: 112px 0;
  background: var(--gray-100);
}

.chatbots__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chat-mockup {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--navy);
}

.chat-mockup__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-mockup__avatar svg { width: 19px; height: 19px; }

.chat-mockup__header strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.chat-mockup__header span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.chat-mockup__header div { margin-right: auto; }

.chat-mockup__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.chat-mockup__status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.chat-mockup__body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 84%;
  font-size: 14px;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: 14px;
}

.chat-bubble--q {
  align-self: flex-end;
  background: var(--blue);
  color: var(--white);
  border-radius: 14px 14px 2px 14px;
}

.chat-bubble--a {
  align-self: flex-start;
  background: var(--gray-100);
  color: var(--gray-800);
  border-radius: 14px 14px 14px 2px;
}

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
}

.check-list svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ================================================
   MARKET MONITORING
   ================================================ */

.market-monitoring {
  padding: 112px 0;
  background: var(--white);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.market-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.market-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.market-card__icon svg { width: 24px; height: 24px; }

.market-card--bull .market-card__icon       { background: rgba(16, 185, 129, 0.12); color: var(--green); }
.market-card--bear .market-card__icon       { background: rgba(239, 68, 68, 0.12);  color: var(--red); }
.market-card--volatility .market-card__icon { background: rgba(240, 165, 0, 0.16);  color: var(--gold); }

.market-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.market-card__quote {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.market-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Video banner */
.video-banner {
  display: flex;
  align-items: center;
  gap: 28px;
  background-image:
    linear-gradient(135deg, rgba(11, 27, 62, 0.90) 0%, rgba(14, 40, 96, 0.88) 100%),
    url('../img/hero-vancouver-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-wrap: wrap;
}

.video-banner__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(240, 165, 0, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-banner__icon svg { width: 26px; height: 26px; }

.video-banner__text { flex: 1; min-width: 220px; }

.video-banner__text h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.video-banner__text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 480px;
}

.video-banner__tags { flex-shrink: 0; }

/* ================================================
   PERFORMANCE STAT BAND
   ================================================ */

.performance-band {
  background-image:
    linear-gradient(150deg, rgba(11, 27, 62, 0.92) 0%, rgba(13, 35, 86, 0.90) 55%, rgba(15, 50, 114, 0.88) 100%),
    url('../img/hero-vancouver-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 72px 0;
}

.performance-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.performance-band__text { max-width: 420px; }

.performance-band__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.performance-band__text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.performance-band__text--secondary {
  max-width: 440px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.performance-band__text--secondary p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ================================================
   WHY AI — COMPARISON TABLE
   ================================================ */

.why-ai {
  padding: 112px 0;
  background: var(--gray-100);
}

.compare-table-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow);
}

.compare-table {
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
}

.compare-table thead th {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table thead th.compare-table__highlight {
  background: var(--blue);
  color: var(--white);
}

.compare-table tbody td {
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy);
}

.compare-table tbody td.compare-table__highlight {
  background: rgba(27, 79, 216, 0.06);
  color: var(--blue);
  font-weight: 700;
}

/* ================================================
   SECTORS WE SERVE + TRACK RECORD
   ================================================ */

.sectors {
  padding: 112px 0;
  background: var(--white);
}

.track-record {
  text-align: center;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.track-record p {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 640px;
  line-height: 1.6;
  margin: 0 auto;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  background: var(--white);
}

.sector-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27, 79, 216, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sector-card__icon svg { width: 22px; height: 22px; }

.sector-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.sector-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ================================================
   DYNAMIC MEDIA STRATEGY
   ================================================ */

.strategy {
  padding: 112px 0;
  background: var(--gray-100);
}

.strategy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.strategy-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.strategy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27, 79, 216, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.strategy-card__icon svg { width: 23px; height: 23px; }

.strategy-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.strategy-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
}

.strategy__closing {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================================
   PRICING / ENGAGEMENT TIERS
   ================================================ */

.pricing {
  padding: 112px 0;
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.pricing-card {
  position: relative;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: linear-gradient(140deg, var(--navy) 0%, #0E2860 100%);
  border-color: transparent;
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-card__tier { color: var(--gold-light); }

.pricing-card__duration {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.pricing-card--featured .pricing-card__duration { color: var(--white); }

.pricing-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-top: 12px;
}

.pricing-card--featured .pricing-card__desc { color: rgba(255, 255, 255, 0.85); }

/* Includes panel */
.pricing__includes {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.pricing__includes h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

.pricing__includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.includes-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.includes-item span {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
}

.pricing__note {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

/* ================================================
   ABOUT
   ================================================ */

.about {
  padding: 112px 0;
  background: var(--gray-100);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.82;
  margin-bottom: 20px;
}

.about__text:last-of-type { margin-bottom: 32px; }

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* About callout */
.about__callout {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.about__callout p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}

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

.contact {
  padding: 112px 0;
  background: var(--white);
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.contact-card__cta-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.contact__details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  color: var(--gray-800);
}

.contact__detail svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

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

.footer { background: var(--dark); }

.footer__container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 52px;
}

.footer__logo {
  margin-bottom: 18px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 320px;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__links h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.footer__address {
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.footer__impressum {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
}

.footer__impressum h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__impressum p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 720px;
}

.footer__impressum p + p { margin-top: 8px; }

.footer__impressum a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t);
}

.footer__impressum a:hover { color: rgba(255, 255, 255, 0.75); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.6;
}

/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */

@media (max-width: 1024px) {
  .capabilities__grid { grid-template-columns: 1fr; gap: 48px; }

  .module-grid { grid-template-columns: 1fr 1fr; }

  .spotlight { grid-template-columns: 1fr; gap: 40px; }
  .spotlight__visual { order: -1; }

  .chatbots__grid { grid-template-columns: 1fr; gap: 40px; }
  .chatbots__visual { order: -1; }

  .market-grid { grid-template-columns: 1fr 1fr; }

  .performance-band__inner { flex-direction: column; align-items: flex-start; }

  .compare-table { min-width: 560px; }

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

  .strategy__grid { grid-template-columns: 1fr 1fr; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }
  .pricing__includes-grid { grid-template-columns: 1fr 1fr; }

  .about__container { grid-template-columns: 1fr; gap: 48px; }

  .footer__container { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================ */

@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; }

  /* Module grid */
  .module-grid { grid-template-columns: 1fr; }

  .browser-mockup__panels { grid-template-columns: 1fr; }

  /* Market */
  .market-grid { grid-template-columns: 1fr; }
  .video-banner { flex-direction: column; align-items: flex-start; }

  /* Performance */
  .performance-band__stats { gap: 32px; }

  /* Sectors */
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .track-record { flex-direction: column; text-align: center; }
  .track-record span { text-align: center; }

  /* Strategy */
  .strategy__grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__includes-grid { grid-template-columns: 1fr; }
  .pricing__includes { padding: 28px 20px; }

  /* Contact */
  .contact-card { padding: 32px 24px; }

  /* Footer */
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__container { gap: 32px; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ================================================ */

@media (max-width: 480px) {
  .footer__links        { grid-template-columns: 1fr; }
  .section-header       { margin-bottom: 40px; }
  .sector-grid          { grid-template-columns: 1fr; }
}
