/* ══════════════════════════════════════════════════
   CLADFY; Modern Website Styles
   Brex-inspired clean design with Cladfy brand
   ══════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --blue:        #497abc;
  --blue-deep:   #4978bc;
  --blue-light:  #92a7c2;
  --white:       #ffffff;
  --black:       #000000;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #497abc 0%, #92a7c2 50%, #4978bc 100%);
  --gradient-hero:  linear-gradient(160deg, #0a0f1e 0%, #111827 40%, #1a2640 100%);
  --gradient-cta:   linear-gradient(135deg, #497abc 0%, #3a6aaf 50%, #4978bc 100%);
  --gradient-text:  linear-gradient(135deg, #92a7c2, #497abc, #4978bc);
  --gradient-card:  linear-gradient(180deg, rgba(73,120,188,0.06) 0%, rgba(146,167,194,0.02) 100%);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

img { max-width: 100%; height: auto; display: block; content-visibility: auto; }
a { text-decoration: none; color: inherit; touch-action: manipulation; }
ul { list-style: none; }

/* GPU-accelerated sections for smooth scroll */
section { contain: layout style; }

/* ── SKELETON LOADING ── */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-50) 40%, var(--gray-100) 80%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 12px;
}

.skeleton--text {
  height: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  width: 80%;
}

.skeleton--text-sm {
  height: 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  width: 60%;
}

.skeleton--heading {
  height: 28px;
  border-radius: 8px;
  margin-bottom: 16px;
  width: 50%;
}

.skeleton--img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
}

.skeleton--avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

/* Image skeleton wrapper */
.img-skeleton {
  position: relative;
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-50) 40%, var(--gray-100) 80%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 16px;
  overflow: hidden;
}

.img-skeleton img {
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.img-skeleton--loaded {
  background: none;
  animation: none;
}

.img-skeleton--loaded img {
  opacity: 1;
}

/* Card skeleton state */
.card-skeleton {
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-50) 40%, var(--gray-100) 80%) !important;
  background-size: 800px 100% !important;
  animation: shimmer 1.6s ease-in-out infinite;
  border-color: var(--gray-100) !important;
}

.card-skeleton * { visibility: hidden; }

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

/* ── GRADIENT TEXT UTILITY ── */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.938rem;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
}
.btn:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}

.btn__arrow {
  transition: transform 0.2s var(--ease);
  display: inline-block;
}

.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(73, 120, 188, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(73, 120, 188, 0.4), 0 0 0 1px rgba(73,120,188,0.1);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(73, 120, 188, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
}
.btn--ghost:hover { color: var(--blue); }

.btn--outline {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.btn--white {
  background: var(--white);
  color: var(--blue-deep);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.btn--white:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.btn--outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--link {
  padding: 0;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.938rem;
  background: none;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.btn--link:hover { color: var(--blue-deep); gap: 12px; }

.btn--lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.2s var(--ease);
}

.nav--scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo { display: inline-flex; align-items: center; }
.nav__logo svg { height: 28px; width: auto; }
.nav__logo img { height: 28px; }
.nav__logo-img { height: 32px; width: auto; }
.nav__logo-img--footer { height: 28px; filter: brightness(0) invert(1); }

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

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}
.nav__link:hover { color: var(--blue); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.2s var(--ease);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--gray-900);
  padding: calc(var(--nav-h) + 48px) 0 80px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73,120,188,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73,120,188,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(73, 120, 188, 0.08);
  border: 1px solid rgba(73, 120, 188, 0.15);
  border-radius: 100px;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

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

.hero__stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 0.813rem;
  color: var(--gray-400);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.hero__visual { position: relative; }

.hero__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.06),
    0 0 80px rgba(73,120,188,0.06);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(73,120,188,0.2), transparent 60%);
  border-radius: 18px;
  z-index: -1;
}

.hero__image {
  border-radius: 16px;
  width: 100%;
}

/* ══════════════════════════════════════
   LOGO STRIP
   ══════════════════════════════════════ */
.logos {
  padding: 64px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.logos__label {
  text-align: center;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logos__item {
  display: flex;
  align-items: center;
  transition: opacity 0.2s, transform 0.2s;
}
.logos__item img {
  height: 32px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.2s;
}
.logos__item:hover img { filter: grayscale(0%) opacity(1); }
.logos__item:hover { transform: translateY(-2px); }

/* ══════════════════════════════════════
   SECTION HEADER
   ══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(73,120,188,0.08), rgba(146,167,194,0.06));
  border: 1px solid rgba(73,120,188,0.12);
  border-radius: 100px;
}

.section-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════ */
.products {
  padding: 120px 0;
  background: var(--gray-50);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  margin-bottom: 32px;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
  will-change: transform;
}
.product-card:hover {
  box-shadow: 0 20px 60px rgba(73, 120, 188, 0.07), 0 0 0 1px rgba(73,120,188,0.08);
  transform: translateY(-3px);
  border-color: rgba(73,120,188,0.18);
}
.product-card:last-child { margin-bottom: 0; }

.product-card--reverse { grid-template-columns: 1.1fr 1fr; }
.product-card--reverse .product-card__content { order: 2; }
.product-card--reverse .product-card__visual { order: 1; }

.product-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  border-radius: 12px;
  color: var(--blue);
  margin-bottom: 16px;
}

.product-card__label {
  display: inline-block;
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 12px;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(73,120,188,0.08), rgba(146,167,194,0.06));
  border: 1px solid rgba(73,120,188,0.12);
  border-radius: 100px;
}

.product-card__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.product-card__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.product-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.product-card__features li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}
.product-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.product-card__visual {
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-50);
}
.product-card__visual img {
  border-radius: 16px;
  width: 100%;
}

.product-card__visual--gradient {
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-radius: 16px;
}

.financing-visual {
  text-align: center;
  color: var(--white);
  padding: 48px;
}
.financing-visual__icon {
  margin-bottom: 24px;
  opacity: 0.9;
}
.financing-visual__icon svg { display: inline-block; width: 64px; height: 64px; }
.financing-visual p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.9;
}

/* ══════════════════════════════════════
   ADD-ONS & INTEGRATIONS
   ══════════════════════════════════════ */
.more-products {
  padding: 0 0 120px;
  background: var(--gray-50);
}

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

.more-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s var(--ease);
  will-change: transform;
  position: relative;
}
.more-product-card:hover {
  border-color: rgba(73,120,188,0.2);
  box-shadow: 0 20px 48px rgba(73, 120, 188, 0.07), 0 0 0 1px rgba(73,120,188,0.06);
  transform: translateY(-6px);
}
.more-product-card:active {
  transform: translateY(-2px) scale(0.99);
}

.more-product-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(73,120,188,0.08), rgba(146,167,194,0.08));
  color: var(--blue);
  margin-bottom: 20px;
}
.more-product-card__icon svg {
  width: 22px;
  height: 22px;
}

.more-product-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.more-product-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: var(--white);
}

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

.feature-tile {
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: all 0.35s var(--ease);
  will-change: transform;
}
.feature-tile:hover {
  border-color: rgba(73,120,188,0.15);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(73, 120, 188, 0.06), 0 0 0 1px rgba(73,120,188,0.04);
  transform: translateY(-6px);
}
.feature-tile:active {
  transform: translateY(-2px) scale(0.98);
}

.feature-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.08));
  color: var(--blue);
  margin-bottom: 20px;
}

.feature-tile h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature-tile p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   AI SECTION
   ══════════════════════════════════════ */
.ai-section {
  padding: 120px 0;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
}

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

.ai-section__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}

.ai-section__content p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.ai-section__pillars {
  display: grid;
  gap: 16px;
}

.ai-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.ai-pillar:hover {
  background: rgba(73, 120, 188, 0.15);
  border-color: rgba(73, 120, 188, 0.3);
}

.ai-pillar__number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-light);
  min-width: 28px;
}

.ai-pillar__text {
  font-size: 0.938rem;
  font-weight: 600;
}

/* AI Orb Animation */
.ai-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orb {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orb__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(73, 120, 188, 0.2);
}

.ai-orb__ring--1 {
  width: 100%;
  height: 100%;
  animation: orb-spin 20s linear infinite;
  border-color: rgba(73, 120, 188, 0.15);
  border-top-color: rgba(73, 120, 188, 0.5);
}

.ai-orb__ring--2 {
  width: 75%;
  height: 75%;
  animation: orb-spin 14s linear infinite reverse;
  border-color: rgba(146, 167, 194, 0.12);
  border-right-color: rgba(146, 167, 194, 0.4);
}

.ai-orb__ring--3 {
  width: 50%;
  height: 50%;
  animation: orb-spin 10s linear infinite;
  border-color: rgba(73, 120, 188, 0.1);
  border-bottom-color: rgba(73, 120, 188, 0.5);
}

.ai-orb__core {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
}

@keyframes orb-spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════
   IMPACT
   ══════════════════════════════════════ */
.impact {
  padding: 120px 0;
  background: var(--white);
}

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

.impact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(73, 120, 188, 0.08);
  border-color: var(--blue-light);
}

.impact-card__emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.impact-card h4 {
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.impact-card p {
  font-size: 0.813rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SUSTAINABILITY
   ══════════════════════════════════════ */
.sustainability {
  padding: 0 0 120px;
  background: var(--white);
}

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

.sustainability__card {
  background: var(--gradient-card);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
}
.sustainability__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(73, 120, 188, 0.06);
}

.sustainability__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.sustainability__card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.sustainability__card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-500);
}

/* ══════════════════════════════════════
   PRESS
   ══════════════════════════════════════ */
.press {
  padding: 120px 0;
  background: var(--gray-50);
}

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

.press-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  will-change: transform;
}
.press-card:hover {
  border-color: rgba(73,120,188,0.18);
  box-shadow: 0 20px 48px rgba(73, 120, 188, 0.07), 0 0 0 1px rgba(73,120,188,0.06);
  transform: translateY(-6px);
}
.press-card:active {
  transform: translateY(-2px) scale(0.98);
  transition-duration: 0.08s;
}

.press-card__source {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 12px;
}

.press-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}

.press-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.press-card--cta {
  background: var(--gradient-cta);
  border-color: transparent;
}
.press-card--cta .press-card__source { color: rgba(255,255,255,0.7); }
.press-card--cta .press-card__title { color: var(--white); }
.press-card--cta .press-card__link { color: var(--white); }
.press-card--cta:hover {
  box-shadow: 0 12px 40px rgba(73, 120, 188, 0.3);
  border-color: transparent;
}

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.cta {
  padding: 140px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(73,120,188,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta__inner { max-width: 640px; margin: 0 auto; position: relative; }

.cta__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta__desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About CTA Cards */
.about-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.about-cta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-cta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-cta-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(73, 120, 188, 0.15);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.about-cta-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.about-cta-card__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .about-cta-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-card {
    padding: 32px 28px;
  }
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 64px;
  margin-bottom: 60px;
}

.footer__brand img {
  margin-bottom: 20px;
  filter: brightness(0) invert(1) opacity(0.8);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.footer__social:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.footer__col h5 {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  text-align: center;
  font-size: 0.813rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════
   PAGE HERO (Sub-pages)
   ══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--white);
  color: var(--gray-900);
  overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73,120,188,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73,120,188,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
}

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

.page-hero--centered .container,
.page-hero--compact .container {
  display: block;
}

.page-hero--compact { padding-bottom: 60px; }

.page-hero__content { position: relative; z-index: 1; }

.page-hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero__desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 32px;
}

.page-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

.page-hero__badge {
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--gray-500);
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
}

.page-hero__visual {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.08);
}

.page-hero__visual img { border-radius: 16px; }

/* ══════════════════════════════════════
   STEPS SECTION
   ══════════════════════════════════════ */
.steps-section {
  padding: 100px 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.step-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(73,120,188,0.08);
}

.step-card__number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   API SECTION (code + text)
   ══════════════════════════════════════ */
.api-section {
  padding: 100px 0;
}

.api-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.api-section__text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin: 12px 0 16px;
}

.api-section__text p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* API Section Content (CashIQ) */
.api-section__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin: 12px 0 16px;
}

.api-section__content p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.api-section__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.api-section__features li {
  font-size: 0.95rem;
  color: var(--gray-600);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.api-section__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.api-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Code Block */
.code-block {
  background: #0d1117;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.85rem;
  line-height: 1.65;
  box-shadow: 0 16px 64px rgba(0,0,0,0.2);
}

.code-block__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.code-block__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.code-block__dot:nth-child(1) { background: #ff5f56; }
.code-block__dot:nth-child(2) { background: #ffbd2e; }
.code-block__dot:nth-child(3) { background: #27c93f; }

.code-block pre {
  padding: 20px;
  overflow-x: auto;
  color: #e6edf3;
}

.code-block code { font-family: inherit; }

.code-kw   { color: #ff7b72; }
.code-str  { color: #a5d6ff; }
.code-num  { color: #79c0ff; }
.code-comment { color: #8b949e; }

/* ══════════════════════════════════════
   API TABLE (Identity page)
   ══════════════════════════════════════ */
.api-table-section {
  padding: 100px 0;
}

.api-table-wrapper { max-width: 800px; margin: 0 auto; }

.api-table__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.api-table {
  overflow-x: auto;
  margin-bottom: 8px;
}

.api-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.api-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
}

.api-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.api-table tbody td code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8125rem;
  color: var(--blue-deep);
  background: rgba(73,120,188,0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

.method-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.method-badge--post {
  background: rgba(73,120,188,0.12);
  color: var(--blue-deep);
}

.method-badge--get {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

/* ══════════════════════════════════════
   SCORE TYPES (Logiclabs)
   ══════════════════════════════════════ */
.score-types {
  padding: 100px 0;
}

.score-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.score-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.score-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(73,120,188,0.1);
}

.score-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  margin-bottom: 20px;
}
.score-card__icon svg {
  width: 28px;
  height: 28px;
}

.score-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.score-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   USE CASES (Copilot)
   ══════════════════════════════════════ */
.use-cases {
  padding: 100px 0;
}

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

.use-case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s var(--ease);
}
.use-case-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(73,120,188,0.08);
}

.use-case-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  margin-bottom: 16px;
}
.use-case-card__icon svg {
  width: 24px;
  height: 24px;
}

.use-case-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.use-case-card ul {
  list-style: none;
}

.use-case-card li {
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.5;
}
.use-case-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ══════════════════════════════════════
   DEVICES (Microlender)
   ══════════════════════════════════════ */
.devices-section {
  padding: 80px 0;
}

.devices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.device-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.device-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
}

.device-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  margin-bottom: 12px;
}
.device-card__icon svg {
  width: 24px;
  height: 24px;
}

.device-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ══════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════ */
.legal-page {
  padding: calc(var(--nav-h) + 60px) 0 80px;
}

.legal-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-page__header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin: 12px 0 8px;
}

.legal-page__updated {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.legal-page__content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page__content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

.legal-page__content h2:first-child { margin-top: 0; }

.legal-page__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.legal-page__content ul {
  margin: 8px 0 16px 24px;
  list-style: disc;
}

.legal-page__content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.legal-page__content a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page__content a:hover { color: var(--blue-deep); }

/* ══════════════════════════════════════
   FAQ (Help Center)
   ══════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
}

.faq {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--blue); }

.faq__icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-400);
  transition: transform 0.3s var(--ease);
}

.faq__item--open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 0.938rem;
  line-height: 1.7;
  color: var(--gray-500);
}

.faq__answer a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════
   HELP CENTER
   ══════════════════════════════════════ */
.help-categories {
  padding: 80px 0;
}

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

.help-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.help-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 32px rgba(73,120,188,0.08);
  transform: translateY(-4px);
}

.help-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  margin-bottom: 16px;
}
.help-card__icon svg {
  width: 22px;
  height: 22px;
}

.help-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.help-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SUPPORT CONTACT BANNER
   ══════════════════════════════════════ */
.support-contact {
  padding: 80px 0;
}

.support-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.support-contact__text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.support-contact__text p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.6;
}

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

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-section {
  padding: 0 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-info__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px;
}

.contact-info__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__icon svg {
  width: 16px;
  height: 16px;
}

.contact-info__item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-info__item a {
  color: var(--blue);
  font-weight: 500;
  font-size: 0.938rem;
}
.contact-info__item a:hover { text-decoration: underline; }

.contact-info__socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__socials a {
  font-size: 0.875rem;
  color: var(--blue);
}

.calendly-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  min-height: 700px;
}

/* ══════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════ */
.about-qa {
  padding: 100px 0;
}

.about-qa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-qa__card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}
.about-qa__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(73,120,188,0.1);
}

.about-qa__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-qa__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 24px 24px 12px;
}

.about-qa__card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 0 24px 28px;
}

/* VALUES */
.values-section {
  padding: 100px 0;
}

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

.value-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  margin-bottom: 14px;
}
.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* VISION / MISSION */
.vision-section {
  padding: 100px 0;
}

.vision__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vision-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px 40px;
  transition: all 0.3s var(--ease);
}
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(73,120,188,0.08);
}

.vision-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 14px 0 16px;
  line-height: 1.3;
}

.vision-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   IMPACT PAGE
   ══════════════════════════════════════ */
.impact-areas {
  padding: 100px 0;
}

.impact-areas .impact__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.impact-areas .impact-card {
  text-align: left;
  padding: 32px;
}

.impact-areas .impact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  margin-bottom: 14px;
}
.impact-areas .impact-card__icon svg {
  width: 22px;
  height: 22px;
}

.impact-areas .impact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.impact-areas .impact-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Impact Gallery */
.impact-gallery {
  padding: 40px 0 80px;
}

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

.impact-gallery__item {
  border-radius: 16px;
  overflow: hidden;
}

.impact-gallery__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.impact-gallery__item:hover img {
  transform: scale(1.05);
}

/* Sustainability cards (impact page reuse) */
.sustainability-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.sustainability-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(73,120,188,0.06);
}

.sustainability-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(73,120,188,0.1), rgba(146,167,194,0.1));
  color: var(--blue);
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
.sustainability-card__icon svg {
  width: 24px;
  height: 24px;
}

.sustainability-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.sustainability-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   NAV DROPDOWN (components.js)
   ══════════════════════════════════════ */
.nav__dropdown { position: relative; }

/* Invisible bridge to keep dropdown open while mouse travels the gap */
.nav__dropdown--open::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  z-index: 99;
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__link--dropdown:hover { color: var(--blue); }

.nav__link--dropdown svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav__dropdown--open .nav__link--dropdown svg { transform: rotate(180deg); }
.nav__dropdown--open .nav__link--dropdown { color: var(--blue); }

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  z-index: 100;
  animation: dropIn 0.2s var(--ease);
}

.nav__dropdown--open .nav__dropdown-menu { display: block; }

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all 0.15s;
}
.nav__dropdown-item:hover {
  background: var(--gray-50);
  color: var(--blue);
}

.nav__dropdown-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.nav__dropdown-item--small {
  font-size: 0.8125rem;
  color: var(--gray-500);
  padding: 7px 14px;
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 6px 8px;
}

.nav__dropdown-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  padding: 6px 14px 2px;
}

.nav__dropdown-menu--wide {
  min-width: 420px;
  display: none;
}
.nav__dropdown--open .nav__dropdown-menu--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nav__dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(73,120,188,0.08), rgba(146,167,194,0.08));
  border-radius: 6px;
  color: var(--blue);
  flex-shrink: 0;
}

.nav__mobile-cta {
  display: none;
}

.btn--nav {
  padding: 10px 22px;
  font-size: 0.8125rem;
  border-radius: 10px;
}

/* ── Calendly Loader ── */
.calendly-loader {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  gap: 16px;
  color: var(--gray-400);
  font-size: 0.938rem;
  font-weight: 500;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  transition: opacity 0.4s ease;
}
.calendly-loader--hidden {
  opacity: 0;
  pointer-events: none;
}
.calendly-loader__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: calSpin 0.8s linear infinite;
}
@keyframes calSpin {
  to { transform: rotate(360deg); }
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { max-width: 600px; }
  .product-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .product-card--reverse .product-card__content { order: 1; }
  .product-card--reverse .product-card__visual { order: 2; }
  .more-products__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__grid { grid-template-columns: repeat(3, 1fr); }
  .ai-section__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .ai-section__pillars { max-width: 400px; margin: 0 auto; }
  .press__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__columns { grid-template-columns: repeat(3, 1fr); }
  .page-hero .container { grid-template-columns: 1fr; gap: 48px; }
  .api-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .use-cases__grid { grid-template-columns: repeat(2, 1fr); }
  .about-qa__grid { grid-template-columns: 1fr; }
  .vision__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .score-types__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  /* Nav dark mode when mobile menu is open */
  .nav.nav--menu-open {
    background: var(--gray-900) !important;
    border-bottom-color: rgba(255,255,255,0.08);
    box-shadow: none;
  }
  .nav--menu-open .nav__logo svg text { fill: white; }
  .nav--menu-open .nav__logo svg g path:first-child { fill: #92a7c2; }
  .nav--menu-open .nav__logo svg g path:last-child { fill: white; }
  .nav--menu-open .nav__logo-img { filter: brightness(0) invert(1); }
  .nav--menu-open .nav__toggle span { background: rgba(255,255,255,0.85); }

  /* Mobile menu */
  .nav__links.nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    height: calc(100vh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    background: var(--gray-900);
    padding: 20px 24px 120px;
    gap: 0;
    z-index: 999;
    animation: slideDown 0.3s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    text-align: left;
  }

  .nav__links--open .nav__link {
    font-size: 1.125rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
  }

  .nav__links--open .nav__dropdown { border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav__links--open .nav__dropdown::before { display: none; }
  .nav__links--open .nav__link--dropdown { font-size: 1.125rem; padding: 14px 0; width: 100%; color: rgba(255,255,255,0.85); justify-content: space-between; text-align: left; }
  .nav__links--open .nav__link--dropdown:hover { color: var(--blue-light); }
  .nav__links--open .nav__dropdown--open .nav__link--dropdown { color: var(--blue-light); }
  .nav__links--open .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 12px;
    min-width: unset;
    animation: none;
    background: transparent;
  }
  .nav__links--open .nav__dropdown--open .nav__dropdown-menu,
  .nav__links--open .nav__dropdown--open .nav__dropdown-menu--wide {
    display: block;
  }
  .nav__links--open .nav__dropdown-menu--wide {
    grid-template-columns: 1fr;
  }
  .nav__links--open .nav__dropdown-item {
    color: rgba(255,255,255,0.6);
  }
  .nav__links--open .nav__dropdown-item:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
  }
  .nav__links--open .nav__dropdown-icon {
    background: rgba(255,255,255,0.08);
    color: var(--blue-light);
  }
  .nav__links--open .nav__dropdown-label {
    color: rgba(255,255,255,0.35);
  }
  .nav__links--open .nav__dropdown-item--small {
    color: rgba(255,255,255,0.45);
  }
  .nav__links--open .nav__dropdown-divider {
    background: rgba(255,255,255,0.08);
  }
  .nav__links--open .nav__mobile-cta {
    display: block;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero { padding: calc(var(--nav-h) + 32px) 0 64px; min-height: auto; }
  .hero__title { font-size: 2.25rem; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__stat-divider { display: none; }

  .products, .features, .impact, .press, .cta, .ai-section { padding: 80px 0; }
  .sustainability { padding: 0 0 80px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 60px; }
  .steps-section, .api-section, .score-types, .use-cases, .faq-section, .about-qa, .values-section, .vision-section, .impact-areas, .api-table-section { padding: 60px 0; }
  .help-categories, .support-contact, .devices-section, .impact-gallery { padding: 40px 0; }

  .more-products__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .sustainability__grid { grid-template-columns: 1fr; }
  .press__grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .impact-gallery__grid { grid-template-columns: 1fr; }
  .devices__grid { grid-template-columns: 1fr; max-width: none; }
  .use-cases__grid { grid-template-columns: 1fr; }

  .product-card { padding: 28px; }
  .product-card__features { grid-template-columns: 1fr; }

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

  .section-header__title { font-size: 1.75rem; }
  .page-hero__title { font-size: 2rem; }
  .page-hero__actions { flex-direction: column; }
  .page-hero__actions .btn { width: fit-content; }
  .page-hero__badges { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .impact__grid { grid-template-columns: 1fr; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .footer__columns { grid-template-columns: 1fr; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
