/* ═══════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; background: var(--page-bg); }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #000;
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --black:       #000;
  --white:       #fff;
  --gray-bg:     #E5EAFF;
  --gray-border: #E5E7EB;
  --gray-text:   #6B7280;
  --gray-muted:  #9CA3AF;
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-tint:   rgba(37,99,235,.09);
  --red:         #EF4444;

  --page-bg:     #EEF2FF;
  --footer-bg:   #E4EAFF;
  --card-shadow: 0 2px 8px rgba(37,99,235,.07), 0 8px 32px rgba(37,99,235,.06);

  --container: 1200px;
  --r-sm:  8px;
  --r:    12px;
  --r-lg: 16px;

  --shadow:       0 4px 16px rgba(37,99,235,.14), 0 1px 4px rgba(37,99,235,.08);
  --shadow-hover: 0 8px 28px rgba(37,99,235,.22), 0 2px 8px rgba(37,99,235,.12);
  --ease: 200ms ease;
  --ease-md: 300ms ease;
}

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

.section { padding: 96px 0; }

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

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* hide <br class="break-lg"> on mobile */
.break-lg { display: block; }
@media (max-width: 768px) { .break-lg { display: none; } }

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  border-radius: 100px;      /* pill shape */
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease),
              color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  outline-offset: 3px;
}
.btn:focus-visible { outline: 2px solid var(--blue); }

.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn--outline { background: transparent; color: var(--black); border-color: var(--gray-border); }
.btn--outline:hover { border-color: #9CA3AF; background: #FAFAFA; }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: transparent;
  padding-left: 0; padding-right: 0;
}
.btn--ghost:hover { color: var(--blue); }

.btn--white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover { background: #F0F0F0; border-color: #F0F0F0; }

.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--full { width: 100%; border-radius: var(--r-sm); }

.arrow { display: inline-block; transition: transform var(--ease); }
.btn--ghost:hover .arrow { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════
   NAVBAR  (floating glass pill)
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  min-width: 700px;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.60);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.90);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  transition: transform var(--ease-md), opacity var(--ease-md), box-shadow var(--ease);
  will-change: transform;
}
.navbar.is-scrolled {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.11),
    0 4px 12px rgba(0, 0, 0, 0.07),
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.40);
}
/* Combine translateX(-50%) with the hide offset so the pill stays centered */
.navbar.is-hidden {
  transform: translateX(-50%) translateY(-80px);
  opacity: 0;
  pointer-events: none;
}

.navbar__inner {
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 24px;
  gap: 16px;
  position: relative;   /* anchor for absolutely-centered nav */
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer__logo .logo-img {
  height: 32px;
}

/* Center nav links absolutely within the pill */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color var(--ease);
}
.nav-link::after { display: none; }
.nav-link:hover, .nav-link.is-active { color: #0f0f1a; }

/* CTA pushed to the right — solid blue, no glass */
.navbar__cta {
  flex-shrink: 0;
  margin-left: auto;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #2563EB;
  border-radius: 100px;
  border: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Hamburger — dark bars on light glass */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  background: none; border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.navbar__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform var(--ease-md), opacity var(--ease-md);
  transform-origin: center;
}
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown — light glass, floats below the pill */
.navbar__mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.90);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  padding: 4px 20px 16px;
  z-index: 1;
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.navbar__mobile .nav-link:last-of-type { border-bottom: none; }
.navbar__mobile .nav-link::after { display: none; }
.navbar__mobile .nav-link:hover { color: #0f0f1a; }
.navbar__mobile .btn { margin-top: 12px; border-radius: 100px; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--page-bg);
}
.hero__inner { max-width: 820px; margin: 0 auto; }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #EEF2FF;
  border: 1.5px solid transparent;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.hero__badge::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 100px;
  background: conic-gradient(from var(--angle), #2563EB, #93c5fd, #dbeafe, #2563EB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1.5px;
  animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
  to { --angle: 360deg; }
}

.badge__arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.hero__badge:hover .badge__arrow { transform: translateX(3px); }

.hero__headline {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--black);
}

.hero__headline-accent {
  display: block;
  margin-top: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(37,99,235,0.35)) drop-shadow(0 1px 4px rgba(37,99,235,0.18));
}

.hero__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray-text);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

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

/* ═══════════════════════════════════════════════════════
   LOGO WALL
═══════════════════════════════════════════════════════ */
.logo-wall {
  padding: 48px 0;
  background: var(--page-bg);
  overflow: hidden;
}
.logo-wall__title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
}

.marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.marquee:last-child { margin-bottom: 0; }

/* fade edges */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right,  var(--page-bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--page-bg), transparent); }

.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scroll-left 36s linear infinite;
}
.marquee__track--reverse {
  animation-name: scroll-right;
  animation-duration: 42s; /* slightly different speed for depth */
}

.marquee__track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-muted);
  white-space: nowrap;
  letter-spacing: .01em;
}
.marquee__track .dot {
  color: var(--gray-border);
  font-weight: 400;
  font-size: 16px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

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

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services { background: transparent; }

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

.card {
  padding: 32px;
  background: #F0F4FF;
  border: 1px solid var(--gray-border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease-md), transform var(--ease-md), border-color var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: #D1D5DB;
}

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-bottom: 8px;
}
.card__desc  { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin-bottom: 24px; }
.card__link  {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ease);
}
.card__link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.how-it-works { background: transparent; }
.how-it-works .section__subtitle { max-width: 580px; }

.steps {
  display: flex;
  align-items: stretch;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px 28px 40px;
  background: #F0F4FF;
  border-radius: var(--r);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow);
}

/* dashed connector between steps */
.step__connector {
  flex-shrink: 0;
  width: 48px;
  align-self: flex-start;
  margin-top: 20px;         /* aligns with vertical center of the circle (40px / 2) */
  border-top: 2px dashed var(--gray-border);
  position: relative;
}
/* arrow head */
.step__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -6px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gray-border);
  border-top:   2px solid var(--gray-border);
  transform: rotate(45deg);
}

.step__circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}
.step__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 16px;
}
.step__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.step__desc { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER  (dark)
═══════════════════════════════════════════════════════ */
.cta-banner {
  background: transparent;
  padding: 0;
  text-align: center;
}
.cta-banner__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-banner__sub {
  font-size: 17px;
  color: var(--gray-text);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing { background: transparent; }

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

.pricing-card {
  padding: 36px 32px;
  background: #F0F4FF;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--r-lg);
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease-md);
}
.pricing-card:hover { box-shadow: var(--shadow-hover); }

.pricing-card--featured {
  border-color: var(--blue);
  border-width: 2px;
  padding-top: 52px;
}

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

.pricing-card__plan {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card__price span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gray-text);
}
.pricing-card__price--custom { font-size: 36px; }

.pricing-card__tagline {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-border);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  width: 18px; height: 18px;
  background: var(--blue-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact { background: transparent; }

/* Inner content: centred, 900 px wide */
.contact__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0;
}

.contact__headline {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: #0a0a0a;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.contact__sub {
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 56px;
  line-height: 1.6;
}

/* 2-column card grid */
.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: #F0F4FF;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline-offset: 3px;
}
.contact-card:focus-visible {
  outline: 2px solid var(--blue);
}
.contact-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.contact-card__icon { line-height: 0; }

.contact-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  margin-top: 24px;
  letter-spacing: -.01em;
}

.contact-card__desc {
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  margin-top: 8px;
  line-height: 1.6;
}

.contact-card__arrow {
  display: block;
  text-align: right;
  font-size: 20px;
  color: var(--blue);
  margin-top: 16px;
  transition: transform 0.2s ease;
}
.contact-card:hover .contact-card__arrow {
  transform: translateX(4px);
}

.contact__wrap {
  max-width: 640px;
  margin: 0 auto;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -.01em;
}
.form__req { color: var(--red); margin-left: 1px; }

.form__group input,
.form__group textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--r-sm);
  background: #EEF2FF;
  color: var(--black);
  width: 100%;
  resize: vertical;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray-muted); }

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form__group input.is-error,
.form__group textarea.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form__error {
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  min-height: 16px;
}

/* cta-banner has no .section class — needs explicit vertical padding */
.cta-banner { padding: 96px 0; }

/* contact: inner .contact__content wrapper handles vertical spacing */
.contact.section { padding: 0; }

.logo-wall { margin-bottom: 0; }

/* ── Success */
.contact__success {
  text-align: center;
  padding: 72px 32px;
  background: #F0F4FF;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--r-lg);
}
.contact__success[hidden] { display: none; }
.success__icon {
  width: 64px;
  height: 64px;
  background: var(--blue-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 20px;
}
.success__title { font-size: 26px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 8px; }
.success__text  { font-size: 16px; color: var(--gray-text); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Top row: 4 columns, flex */
.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 60px 0 52px;
}
.footer__brand   { flex: 2; min-width: 0; }
.footer__col     { flex: 1; min-width: 0; }
.footer__socials-col { margin-left: auto; flex-shrink: 0; }

.footer__logo {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--black);
  display: inline-block;
  margin-bottom: 8px;
}
.footer__tagline { font-size: 13px; color: var(--gray-muted); line-height: 1.5; }

.footer__col-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-muted);
  margin-bottom: 16px;
}

.footer__col-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 500;
  transition: color var(--ease);
}
.footer__link:hover { color: var(--blue); }

/* Bottom bar — copyright only */
.footer__bottom {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 20px 0;
}

.footer__copy { font-size: 13px; color: var(--gray-muted); }

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

/* Clean inline icons — no background box */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gray-muted);
  background: none;
  border: none;
  transition: color var(--ease);
  flex-shrink: 0;
}
.social-btn:hover { color: var(--blue); }

/* ── Footer newsletter ── */
.footer__newsletter {
  margin-top: 28px;
}

.footer__newsletter-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--black);
  margin-bottom: 12px;
}

.footer__newsletter-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__newsletter-input {
  max-width: 200px;
  min-width: 0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
  color: var(--black);
  background: #EEF2FF;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.footer__newsletter-input::placeholder { color: var(--gray-muted); }
.footer__newsletter-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .10);
}

.footer__newsletter-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #2563EB;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.5),
    0 2px 8px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
}
.footer__newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 32px rgba(37, 99, 235, 0.65),
    0 4px 12px rgba(37, 99, 235, 0.4);
}

.footer__newsletter-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--gray-muted);
  line-height: 1.55;
}

.footer__newsletter-link {
  color: var(--gray-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.footer__newsletter-link:hover { color: var(--blue); }

/* Mobile: input + button stack on very small screens */
@media (max-width: 360px) {
  .footer__newsletter-row { flex-direction: column; border-radius: var(--r-sm); }
  .footer__newsletter-btn { border-radius: 0 0 var(--r-sm) var(--r-sm); }
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE  ─  TABLET  (≤ 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .footer__top { flex-wrap: wrap; gap: 32px; }
  .footer__brand { flex: 1 1 100%; }
  .footer__socials-col { margin-left: 0; }

}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE  ─  MOBILE  (≤ 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section__header { margin-bottom: 48px; }

  /* Navbar — hide center links; show hamburger */
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 64px; }
  .hero__ctas { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }
  .btn--ghost { justify-content: center; padding: 14px 0; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Steps — vertical */
  .steps { flex-direction: column; }
  .step  { text-align: left; display: flex; flex-direction: column; }

  .step__connector {
    width: 1.5px;
    height: 36px;
    border-top: none;
    border-left: 2px dashed var(--gray-border);
    margin-top: 0;
    margin-left: 20px;   /* align with circle center */
    align-self: flex-start;
  }
  .step__connector::after {
    right: auto;
    left: -6px;
    top: auto;
    bottom: -7px;
    border-right: none;
    border-top:   none;
    border-left:  2px solid var(--gray-border);
    border-bottom: 2px solid var(--gray-border);
    transform: rotate(-45deg);
  }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: span 1; max-width: none; }

  /* Contact cards */
  .contact__cards { grid-template-columns: 1fr; }
  .contact__content { padding: 56px 0; }

  /* Form */
  .form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top    { flex-direction: column; gap: 28px; padding-bottom: 36px; }
  .footer__brand  { flex: none; }
  .footer__socials-col { margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE  ─  SMALL MOBILE  (≤ 480px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__headline { font-size: 36px; }
  .card { padding: 24px 20px; }
  .pricing-card { padding: 28px 24px; }
  .pricing-card--featured { padding-top: 44px; }
  .contact__success { padding: 48px 20px; }

}

/* ═══════════════════════════════════════════════════════
   PREMIUM BUTTON — .btn-primary  (noise texture + glass)
   Overrides .btn--primary when stacked; placed last so it wins.
═══════════════════════════════════════════════════════ */

/*
  Inline SVG noise filter as a data URI.
  The feTurbulence rect tiles seamlessly at any button size.
  mix-blend-mode:overlay on the ::before layer creates the
  grainy premium texture without changing the button's colour.
*/
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  outline-offset: 3px;
  /* Two-stop gradient: lighter at top, deeper at bottom */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  /* Inset top-edge shine + ambient blue glow */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 0 rgba(37, 99, 235, 0),
    0 8px 24px rgba(37, 99, 235, 0.5),
    0 2px 8px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
}

/* Noise texture overlay via feTurbulence SVG rendered into a pseudo-element */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  opacity: 0.18;
  pointer-events: none;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 0 rgba(37, 99, 235, 0),
    0 12px 32px rgba(37, 99, 235, 0.65),
    0 4px 12px rgba(37, 99, 235, 0.4);
  /* Explicitly set background so .btn--primary:hover can't win */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #4b8ef8 0%, #2563eb 100%);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.97);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-primary:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

/* ── Width override for full-width context (.btn--full stacks alongside) ── */
.btn--full.btn-primary,
.cookie-btn.btn-primary {
  width: 100%;
  border-radius: 10px;   /* keep 10px even when .btn--full sets r-sm */
}

/* ═══════════════════════════════════════════════════════
   DARK BUTTON — .btn-dark  (Decline / navy variant)
═══════════════════════════════════════════════════════ */
.btn-dark {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  outline-offset: 3px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #252b3b 0%, #1a1f2e 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 4px 12px rgba(0, 0, 0, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  opacity: 0.14;
  pointer-events: none;
}

.btn-dark:hover {
  filter: brightness(1.12);
  transform: scale(1.02);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-dark:active  { transform: scale(0.98); }
.btn-dark:focus-visible { outline: 2px solid #93c5fd; outline-offset: 3px; }

/* ── Dark button in cookie banner fills its flex cell ── */
.cookie-btn.btn-dark { width: 100%; border-radius: 10px; }

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #F0F4FF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 40px rgba(0,0,0,0.12);
  padding: 24px 24px 20px;

  /* Entry animation — starts hidden via 'hidden' attr; JS removes it and adds .is-visible */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 380ms ease, transform 380ms ease;
}

/* hidden attribute collapses via display:none — this overrides it once JS reveals */
.cookie-banner:not([hidden]) { display: block; }

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-banner__icon {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gray-text);
  line-height: 0;
  user-select: none;
}

.cookie-banner__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 10px;
  padding-right: 32px;   /* clear the cookie icon */
}

.cookie-banner__text {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 8px;
}
.cookie-banner__text:last-of-type { margin-bottom: 0; }

.cookie-banner__link {
  color: #111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.cookie-banner__link:hover { color: #2563EB; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

/* Both buttons fill equal width in the row */
.cookie-banner__actions .btn-primary,
.cookie-banner__actions .btn-dark {
  flex: 1;
  padding: 11px 16px;
  font-size: 14px;
}

@media (max-width: 400px) {
  .cookie-banner {
    left: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

/* ═══════════════════════════════════════════════════════
   PRICING OUTLINE BUTTONS
═══════════════════════════════════════════════════════ */
.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: #111;
  border: 2px solid #111;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.btn--outline-dark:hover {
  background: #111;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   CALENDAR MODAL
═══════════════════════════════════════════════════════ */
.cal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cal-overlay[hidden] { display: none; }

.cal-modal {
  background: #F0F4FF;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 24px;
  color: var(--gray-muted);
  cursor: pointer;
  line-height: 1;
  transition: color var(--ease);
  padding: 4px;
}
.cal-close:hover { color: var(--black); }

.cal-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 8px;
}
.cal-subtitle {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-nav__btn {
  background: none;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-text);
  font-size: 11px;
  transition: background var(--ease);
}
.cal-nav__btn:disabled { opacity: 0.3; cursor: default; }
.cal-nav__month {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.cal-day-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-muted);
  padding: 6px 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  user-select: none;
}
.cal-day--avail {
  color: var(--black);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.cal-day--avail:hover  { background: #EEF2FF; }
.cal-day--avail.is-selected { background: var(--blue); color: var(--white); }
.cal-day--unavail { color: var(--gray-muted); cursor: default; }
.cal-day--weekend { color: #C4C4CC; cursor: default; }
.cal-day--empty   {}

.cal-times { margin-bottom: 20px; }
.cal-times[hidden] { display: none; }
.cal-times__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  margin-bottom: 10px;
}
.cal-times__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cal-time-slot {
  padding: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  background: #EEF2FF;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.cal-time-slot:hover     { border-color: var(--blue); }
.cal-time-slot.is-selected {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

#calConfirm { margin-top: 4px; }
#calConfirm:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  filter: none;
  transform: none !important;
  box-shadow: none !important;
}

.cal-success {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  background: #F0FDF4;
  color: #166534;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.cal-success[hidden] { display: none; }

/* ═══════════════════════════════════════════════════════
   ROI DASHBOARD
═══════════════════════════════════════════════════════ */
.roi-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.roi-header {
  text-align: center;
  margin-bottom: 56px;
}
.roi-header__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.roi-header__sub {
  font-size: 17px;
  color: #6b7280;
}

/* 2-column chart grid */
.roi-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* 3-column stat grid */
.roi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* Chart cards */
.roi-card {
  background: #F0F4FF;
  border-radius: 16px;
  padding: 28px 28px 20px;
  box-shadow: var(--shadow);
}
.roi-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 4px;
}
.roi-card__sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}

/* Chart legend */
.roi-legend {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.roi-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.roi-legend__swatch {
  display: inline-block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}
.roi-legend__swatch--solid  { background: #2563EB; }
.roi-legend__swatch--dashed {
  background: transparent;
  border-top: 2px dashed #94a3b8;
  height: 0;
}
.roi-legend__label { font-size: 11px; color: #6b7280; }

/* SVG chart */
.roi-chart-wrap { position: relative; overflow: visible; }
.roi-chart-svg  { width: 100%; height: auto; display: block; overflow: visible; }

/* Bar hover */
.roi-bar { cursor: pointer; transition: opacity .15s ease; }
.roi-bar:hover { opacity: .78; }

/* Line chart — area + line animation */
.roi-area {
  opacity: 0;
  transition: opacity .6s ease;
}
.roi-area.is-visible { opacity: 1; }

.roi-line {
  /* stroke-dasharray + stroke-dashoffset set by JS for draw animation */
  transition: stroke-dashoffset 1.5s ease;
}

/* Line chart dot */
.roi-dot { cursor: pointer; transition: r .12s ease; }

/* Shared tooltip */
.roi-tooltip {
  position: absolute;
  background: #fff;
  border-radius: 8px;
  padding: 9px 13px;
  box-shadow: 0 4px 20px rgba(37,99,235,.15), 0 1px 4px rgba(0,0,0,.08);
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  color: #0a0a0a;
  line-height: 1.5;
  pointer-events: none;
  z-index: 10;
  max-width: 220px;
}
.roi-tooltip[hidden] { display: none; }

.roi-note {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 10px;
}

/* Stat cards */
.roi-stat-card {
  background: #F0F4FF;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
}
.roi-stat__icon {
  color: #2563EB;
  margin-bottom: 16px;
  line-height: 0;
}
.roi-stat__number {
  font-size: 36px;
  font-weight: 700;
  color: #2563EB;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
.roi-stat__label {
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.roi-stat__sub {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* Footnote */
.roi-footnote {
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 32px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .roi-charts { grid-template-columns: 1fr; }
  .roi-stats   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   INTEGRATIONS STRIP
═══════════════════════════════════════════════════════ */
.integrations-strip {
  padding: 0 24px 48px;
}

.integrations-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.integrations-label {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.integrations-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.int-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
  padding: 6px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.int-icon:hover { transform: scale(1.12); }
.int-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.integrations-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  margin-left: 4px;
}
.integrations-count__num {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
}
.integrations-count__sub {
  font-size: 10px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .integrations-inner  { flex-direction: column; gap: 16px; }
  .integrations-label  { text-align: center; }
}
