/* ============================================================
   atQor — Azure & AI Campaign Landing Page
   style.css  |  All styles extracted & merged from inline CSS
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep: #181d8b;
  --blue-mid: #3237b3;
  --pink-accent: #f3457b;
  --purple-accent: #4a3db9;
  --text-white: #ffffff;
  --text-light: #6b6b80;
  --text-muted: #6a7282;
  --text-dark: #171c20;
  --text-body: #3e4850;
  --border-light: #e4e7ec;
  --bg-input: #f8fafc;
  --nav-height: 88px;

  /* Section-5 / Why atQor */
  --white: #ffffff;
  --bg: #f9f9fb;
  --text-mid: #3a3a4a;
  --accent-pink: #e91e8c;
  --accent-purple: #7c3aed;
  --gradient-text: linear-gradient(135deg, #e91e8c 0%, #7c3aed 100%);
  --border: #e4e4ec;
  --card-bg: #ffffff;
  --pill-border: #d0d0dc;
  --stat-gradient: linear-gradient(135deg, #e91e8c 0%, #7c3aed 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #0a0d1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   MAX / SMALL CONTAINERS
   ============================================================ */
.max-container {
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.small-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 100px;
  background: rgba(0,0,0,0.26);
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav-logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--pink-accent); }

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-contact a {
  color: #eee;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-contact a:hover { color: #fff; }

.nav-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.3);
}

.btn-nav {
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 13px 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-nav:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE NAV MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: rgba(10,13,26,0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #d6d6d6;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu .btn-nav {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.section-hero {
  min-height: 100vh;
  padding: 140px 100px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%; height: 120%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: -3%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
}

.hero-left {
  position: relative;
  z-index: 1;
  max-width: 993px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.44);
  border-radius: 9999px;
  padding: 9px 13px;
  width: fit-content;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
}

.hero-headline .gradient-text {
  background: linear-gradient(90deg, var(--purple-accent), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-sub {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-sub-lead {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.46;
  color: #d6d6d6;
}

.hero-sub-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #d6d6d6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: #d6d6d6;
  white-space: nowrap;
}

.hero-tag svg { flex-shrink: 0; }

/* Hero Form Card */
.hero-form-card {
  position: relative;
  z-index: 1;
  width: 557px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 33px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: flex-start;
  margin-top: 0;
}

.form-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-body);
}

.form-fields { display: flex; flex-direction: column; gap: 16px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

.form-field input {
  height: 44px;
  background: var(--bg-input);
  border: 0.8px solid var(--border-light);
  border-radius: 28px;
  padding: 0 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input:focus { border-color: var(--blue-mid); }

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-deep));
  border: none;
  border-radius: 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  width: auto;
}

.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary svg { flex-shrink: 0; }

/* Section 9 & 4 pill button variant */
.btn-primary.pill {
  display: inline-flex;
  width: auto;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(42,31,110,0.35);
  background: linear-gradient(90deg, #3237B3 22%, #181d8b 100%);
}

.btn-primary.pill:hover {
  background: rgba(50,55,179,1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,31,110,0.5);
}

.btn-primary .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 13px;
  transition: transform 0.2s;
}

.btn-primary:hover .arrow { transform: translateX(2px); }

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

/* ============================================================
   SECTION 2 — PARTNER STRIP
   ============================================================ */
.partner-strip {
  background: #f5f6f8;
  padding: 60px 0;
}

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

.partner-card {
  background: #fff;
  min-height: 165px;
  border: 1px solid #dfe3ea;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  transition: 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.partner-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-icon svg { width: 62px; height: 62px; }

.partner-card h3 {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: #344054;
  max-width: 320px;
}

/* ============================================================
   SECTION 3 — ADVANTAGE (Data Platform)
   ============================================================ */
.section-advantage {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: #ffffff;
}

.section-advantage::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(99,102,241,0.08) 0%,
    rgba(139,92,246,0.05) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section heading */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  color: #111827;
  line-height: 1.18;
  letter-spacing: 0;
    max-width: 940px;
    margin: 0px auto;
    margin-bottom: 4px;
}

.section-head h2 .accent {
 background: linear-gradient(90deg, var(--purple-accent), var(--pink-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head p {
  margin-top: 20px;
  font-size: 20px;
  color: #6b7280;
  line-height: 1.75;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Card grids */
.cards-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.card-pilot { margin-bottom: 20px; }

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

/* Base card */
.card {
  background: #ffffff;
  border: 1px solid #e5e7f0;
  border-radius: 16px;
  padding: 28px 32px 36px;
}

.card-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.icon-wrap {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-stat { text-align: right; }

.card-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.3px;
}

.card-stat-label {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 3px;
  font-weight: 500;
}

.card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 14px;
}

.card p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.75;
}

/* Pilot card */
.card-pilot .card { display: flex; flex-direction: column; }

.pilot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* Dark gradient card */
.card.card-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 45%, #1a3a8f 100%);
  border: none;
  position: relative;
  overflow: hidden;
}

.card.card-dark::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.card.card-dark .card-stat-value { color: #ffffff; }
.card.card-dark .card-stat-label { color: rgba(255,255,255,0.5); }
.card.card-dark h3 { color: #ffffff; }
.card.card-dark p { color: rgba(255,255,255,0.72); }

/* ============================================================
   SECTION 4 — DARK CTA (navy gradient)
   ============================================================ */
.section-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(19,24,64,1) 0%, rgba(5,55,102,1) 100%);
}

.section-4 h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  max-width: 850px;
  margin-bottom: 28px;
}

.section-4 h1 .highlight {
  background: linear-gradient(135deg, #f0478a 0%, #9b59d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-4 p {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 750px;
  margin-bottom: 44px;
}

/* ============================================================
   SECTION 5 — WHY ATQOR (two-column)
   ============================================================ */
.whyatqor-sec-5 {
  background-color: #ffffff;
  padding: 80px 0;
}

.section-5 {
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 64px;
  align-items: start;
}

/* Left column */
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.why-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-light);
  flex-shrink: 0;
}

.left-col h2 {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.left-col h2 .gradient-line {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.left-col p.body-text {
  font-size: 18px;
  line-height: 1.75;
  color: #344054;
  margin: 20px 0;
}

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.check-icon { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }
.check-icon svg { width: 22px; height: 22px; }

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

.feature-text span {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Right column */
.right-col { display: flex; flex-direction: column; gap: 20px; }

.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 28px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F8FAFC;
  border: 1px solid #E4E7EC;
  border-radius: 10px;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.platform-item .p-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.industries-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.tags-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

.tag {
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-cell {
  background: #F8FAFC;
  border: 1px solid #E4E7EC;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: clamp(34px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1;
  background: var(--stat-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: #2C2C2C;
  line-height: 1.4;
  font-weight: 500;
}

/* ============================================================
   SECTION 6 — PARTNER LOGOS
   ============================================================ */
.section-logos {
  background: #f8fafc;
  padding: 60px 100px;
  border-top: 1px solid var(--border-light);
}

.logos-title {
  font-size: 28px;
  font-weight: 600;
  color: #101828;
  text-align: center;
  margin-bottom: 40px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  min-width: 190px;
}

.logo-badge .logo-ms { display: flex; align-items: center; gap: 10px; }

.ms-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 18px; height: 18px;
}

.ms-sq { border-radius: 1px; }
.ms-sq-1 { background: #f25022; }
.ms-sq-2 { background: #7fba00; }
.ms-sq-3 { background: #00a4ef; }
.ms-sq-4 { background: #ffb900; }

.logo-badge .ms-text { font-size: 14px; font-weight: 500; color: #555; }

.logo-badge .logo-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
  text-align: left;
}

/* ============================================================
   SECTION 7 — CLIENT TICKER
   ============================================================ */
.section-ticker {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

.ticker-title {
  font-size: 28px;
  font-weight: 600;
  color: #101828;
  text-align: center;
  margin-bottom: 32px;
  padding: 0 100px;
}

.ticker-track-wrap { position: relative; }

.ticker-fade-left,
.ticker-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.ticker-fade-left  { left:  0; background: linear-gradient(to right, #fefeff, transparent); }
.ticker-fade-right { right: 0; background: linear-gradient(to left,  #fefeff, transparent); }

.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 14px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-accent);
  flex-shrink: 0;
}

.ticker-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   SECTION 8 — TESTIMONIALS (2×2 grid)
   ============================================================ */
.section-testimonial {
  background: #f4f6f9;
  padding: 80px 60px 100px;
}

.testimonial-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 32px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 36px 36px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.quote-icon {
  position: absolute;
  top: -32px; left: 36px;
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  color: #364153;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ============================================================
   SECTION 9 — LIGHT CTA (blue gradient top)
   ============================================================ */
.section-9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(149deg, rgb(157 213 255) 0%, rgba(255, 255, 255, 1) 50%, rgb(157 213 255) 100%);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #344054;
  margin-bottom: 44px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.badge-pill .divider {
  width: 1px; height: 16px;
  background: rgba(0,0,0,0.15);
}

.badge-pill .maple { color: #e53e3e; font-size: 16px; }

.section-9 h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #12122a;
  max-width: 850px;
  margin-bottom: 28px;
}

.section-9 h1 .highlight {
  background: linear-gradient(135deg, #e91e8c 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-9 p {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.75;
  color: #344054;
  max-width: 850px;
  margin-bottom: 44px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #151239;
  padding: 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-logo { font-size: 24px; font-weight: 700; color: #fff; }
.footer-logo span { color: var(--pink-accent); }

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-copy {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

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

/* ── 1200px ── */
@media (max-width: 1200px) {
  .nav                { padding: 20px 48px; }
  .section-hero       { padding: 120px 48px 80px; }
  .hero-headline      { font-size: 52px; }
  .section-logos      { padding: 60px 48px; }
  .section-testimonial{ padding: 70px 48px 100px; }
  .footer             { padding: 40px 48px; }

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

/* ── 1024px ── */
@media (max-width: 1024px) {
  .section-hero {
    flex-direction: column;
    align-items: stretch;
    padding: 120px 40px 60px;
  }

  .hero-form-card {
    width: 100%;
    max-width: 600px;
    align-self: center;
  }

  .hero-left  { max-width: 100%; }
  .hero-headline { font-size: 46px; }

  .cards-top      { grid-template-columns: 1fr; }
  .cards-bottom   { grid-template-columns: 1fr 1fr; }

  .section-5 {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px;
  }

  .right-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .platform-card { grid-column: 1 / -1; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .cards-top    { grid-template-columns: 1fr; }
  .cards-bottom { grid-template-columns: 1fr; }

  .section-testimonial { padding: 60px 32px 80px; }
  .testimonial-grid    { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-right { display: none; }
  .hamburger { display: flex; }

  .section-hero {
    padding: 100px 24px 48px;
  }

  .hero-headline  { font-size: 36px; }
  .hero-sub-lead  { font-size: 18px; }
  .hero-sub-body  { font-size: 16px; }
  .hero-tags      { flex-direction: column; gap: 10px; }
  .hero-tag       { width: fit-content; }
  .hero-form-card { padding: 24px; }
  .form-title     { font-size: 22px; }

  .section-advantage    { padding: 56px 16px 72px; }
  .section-logos        { padding: 60px 24px; }
  .section-testimonial  { padding: 48px 20px 64px; }
  .section-9, .section-4 { padding: 60px 20px; }
  .footer               { padding: 32px 24px; }

  .logos-row   { gap: 12px; }
  .logo-badge  { min-width: 130px; padding: 14px 16px; }

  .footer-top  { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links{ flex-wrap: wrap; gap: 16px; }

  .section-5 { padding: 48px 20px; gap: 40px; }
  .right-col  { grid-template-columns: 1fr; }
  .platform-card { grid-column: auto; }
  .platform-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

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

  .badge-pill {
    font-size: 12px;
    padding: 8px 16px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
  }

  .section-9 h1, .section-4 h1 { margin-bottom: 20px; }
  .section-9 p,  .section-4 p  { margin-bottom: 32px; }
  .btn-primary.pill { font-size: 14px; padding: 14px 26px; }

  .ticker-title { padding: 0 24px; }
  .partner-grid { grid-template-columns: 1fr; }
}

/* ── 640px ── */
@media (max-width: 640px) {
  .section-testimonial { padding: 48px 20px 64px; }
  .testimonial-grid    { grid-template-columns: 1fr; gap: 40px; }
  .mobile-menu .btn-nav{padding: 8px 15px}
  .partner-strip{padding: 20px 15px}
  .whyatqor-sec-5{padding: 20px 0}
  .testimonial-text{
    font-size: 16px;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .hero-headline  { font-size: 30px; }
  .card h3        { font-size: 20px; }
  .card p         { font-size: 16px; }
  .platform-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .badge-pill .divider { display: none; }
  .stat-number    { font-size: 30px; }
}
