/* ==========================================================================
   MesseDo — Global SMS Messaging Platform
   Design system inspired by modern SaaS (tivazo-style), MesseDo brand colors
   ========================================================================== */

:root {
  /* Brand */
  --brand: #5757a9;
  --brand-dark: #44448c;
  --brand-darker: #34346e;
  --brand-light: #eeeefb;
  --brand-tint: #f4f4fc;
  --accent: #29abe2;
  --accent-dark: #1b8fc2;
  --accent-light: #e6f6fd;

  /* Neutrals (slate) */
  --ink: #0f172a;
  --ink-2: #1e293b;
  --slate: #45556c;
  --slate-2: #64748b;
  --border: #e2e8f0;
  --border-2: #e4e4e7;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-softer: #f8fafc;

  /* Semantic */
  --success: #16a34a;
  --success-light: #eafaf0;

  /* Type */
  --f-heading: 'Sen', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shape & depth */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-full: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 8px 24px rgba(87, 87, 169, 0.28);

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

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

section { padding: 96px 0; }

/* ---------- Section headers ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.section-head p { font-size: 17px; color: var(--slate-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  background: var(--brand-light);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow--accent { background: var(--accent-light); color: var(--accent-dark); }
.eyebrow--success { background: var(--success-light); color: var(--success); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--white {
  background: #fff;
  color: var(--brand);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--lg { padding: 16px 34px; font-size: 16px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 44px; width: auto; }
.nav__logo span {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
}
.nav__logo span em { font-style: normal; color: var(--brand); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__links > li > a:hover { color: var(--brand); background: var(--brand-tint); }
.nav__links > li > a svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav__links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
}
.nav__links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  transition: background 0.18s;
}
.dropdown a:hover { background: var(--bg-softer); }
.dropdown a:hover strong { color: var(--brand); }
.dropdown .dd-icon {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown .dd-icon svg { width: 18px; height: 18px; }
.dropdown strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s;
}
.dropdown small { font-size: 12.5px; color: var(--slate-2); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .btn { padding: 10px 22px; font-size: 14.5px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 176px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 85% 10%, rgba(41, 171, 226, 0.09), transparent 65%),
    radial-gradient(55% 50% at 10% 20%, rgba(87, 87, 169, 0.09), transparent 65%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  60% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero h1 .swap-wrap {
  display: inline-block;
  position: relative;
  color: var(--brand);
}
.hero h1 .swap {
  display: inline-block;
  background: linear-gradient(100deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.35s, transform 0.35s;
}
.hero h1 .swap.out { opacity: 0; transform: translateY(12px); }
.hero__sub {
  font-size: 18px;
  color: var(--slate-2);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__proof { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__proof div strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 25px;
  color: var(--ink);
}
.hero__proof div span { font-size: 13.5px; color: var(--slate-2); }

/* Hero visual — SMS dashboard mockup */
.hero__visual { position: relative; }
.mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-softer);
}
.mockup__bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border-2);
}
.mockup__bar i:nth-child(1) { background: #fda4af; }
.mockup__bar i:nth-child(2) { background: #fcd34d; }
.mockup__bar i:nth-child(3) { background: #86efac; }
.mockup__bar span {
  margin-left: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-2);
}
.mockup__body { padding: 22px; }
.mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.mockup__stat {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 14px;
}
.mockup__stat small {
  font-size: 11.5px;
  color: var(--slate-2);
  display: block;
  margin-bottom: 3px;
}
.mockup__stat strong {
  font-family: var(--f-heading);
  font-size: 19px;
  color: var(--ink);
}
.mockup__stat em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
}
.mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 18px;
}
.mockup__chart b {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  opacity: 0.85;
  animation: grow-bar 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
@keyframes grow-bar { from { height: 0 !important; } }
.mockup__row { display: flex; gap: 12px; }
.mockup__msg {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 12.5px;
}
.mockup__msg .avatar {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup__msg strong { display: block; font-size: 12.5px; color: var(--ink); }
.mockup__msg span { color: var(--slate-2); font-size: 11.5px; }
.mockup__msg .tag {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  background: var(--success-light);
  color: var(--success);
}

/* Floating chips around mockup */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip svg { width: 19px; height: 19px; color: var(--brand); }
.float-chip--1 { top: -20px; left: -30px; animation-delay: 0.4s; }
.float-chip--2 { bottom: -20px; right: -22px; animation-delay: 1.3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   Partners marquee
   ========================================================================== */
.partners { padding: 44px 0 52px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.partners p {
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 26px;
}
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
  height: 34px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s;
}
.marquee__track img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats { padding: 80px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(87, 87, 169, 0.35);
}
.stat-card strong {
  display: block;
  font-family: var(--f-heading);
  font-size: clamp(32px, 3.4vw, 44px);
  color: var(--brand);
  letter-spacing: -0.02em;
}
.stat-card span { font-size: 14.5px; color: var(--slate-2); font-weight: 500; }

/* ==========================================================================
   Features (SMS services)
   ========================================================================== */
.features { background: var(--bg-softer); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(87, 87, 169, 0.35);
}
.card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card--accent .card__icon { background: var(--accent-light); color: var(--accent-dark); }
.card h3 { font-size: 19px; margin-bottom: 9px; }
.card p { font-size: 14.5px; color: var(--slate-2); }

/* ==========================================================================
   Analytics — split rows
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split + .split { margin-top: 90px; }
.split--reverse .split__media { order: -1; }
.split__content .eyebrow { margin-bottom: 16px; }
.split__content h3 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.split__content > p { font-size: 16px; color: var(--slate-2); margin-bottom: 22px; }
.checklist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 15px;
  color: var(--slate);
}
.checklist svg {
  flex: 0 0 20px;
  height: 20px;
  color: var(--success);
  margin-top: 2px;
}
.checklist strong { color: var(--ink); font-weight: 600; }

.split__media { position: relative; }
.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 26px;
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.panel__head strong { font-family: var(--f-heading); font-size: 16px; color: var(--ink); }
.panel__head .tag {
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  background: var(--success-light);
  color: var(--success);
}
.bar-row { margin-bottom: 14px; }
.bar-row .bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--slate-2);
  margin-bottom: 6px;
}
.bar-row .bar-label b { color: var(--ink); font-weight: 600; }
.bar-track {
  height: 9px;
  border-radius: var(--r-full);
  background: var(--bg-softer);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--brand), var(--accent));
  width: 0;
  transition: width 1.2s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.panel .pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 6px; }
.panel .pill {
  padding: 7px 15px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--slate);
}
.panel .pill--on {
  background: var(--brand-light);
  border-color: transparent;
  color: var(--brand);
}

/* Trigger timeline in panel */
.mini-flow { display: flex; flex-direction: column; gap: 0; }
.mini-flow__item { display: flex; gap: 14px; }
.mini-flow__rail { display: flex; flex-direction: column; align-items: center; }
.mini-flow__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.mini-flow__dot svg { width: 15px; height: 15px; }
.mini-flow__line { width: 2px; flex: 1; min-height: 22px; background: var(--border); margin: 4px 0; }
.mini-flow__body { padding-bottom: 20px; }
.mini-flow__body strong { display: block; font-size: 14px; color: var(--ink); }
.mini-flow__body span { font-size: 12.5px; color: var(--slate-2); }

/* ==========================================================================
   How it works
   ========================================================================== */
.how { background: var(--bg-softer); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-brand);
}
.step h3 { font-size: 16.5px; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--slate-2); }

/* ==========================================================================
   Use cases
   ========================================================================== */
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.usecase {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.usecase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(41, 171, 226, 0.45);
}
.usecase .card__icon { flex: 0 0 50px; margin-bottom: 0; }
.usecase h3 { font-size: 18px; margin-bottom: 7px; }
.usecase p { font-size: 14.5px; color: var(--slate-2); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { background: var(--bg-softer); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card--featured {
  border: 2px solid var(--brand);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.price-card--featured .ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 18px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 21px; margin-bottom: 6px; }
.price-card .price-sub { font-size: 14px; color: var(--slate-2); margin-bottom: 22px; }
.price-card .amount {
  font-family: var(--f-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-card .amount small { font-size: 15px; font-weight: 500; color: var(--slate-2); }
.price-card .amount-note { font-size: 13px; color: var(--slate-2); margin-bottom: 26px; }
.price-card .checklist { margin-bottom: 30px; flex: 1; }
.price-card .btn { width: 100%; }

/* ==========================================================================
   Coverage
   ========================================================================== */
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.coverage__facts { display: grid; gap: 16px; }
.fact {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fact:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.fact strong {
  font-family: var(--f-heading);
  font-size: 30px;
  color: var(--brand);
  min-width: 96px;
}
.fact span { font-size: 14.5px; color: var(--slate); }

/* globe-ish visual */
.globe-card {
  background: linear-gradient(150deg, var(--brand-darker), var(--brand) 60%, var(--accent-dark));
  border-radius: var(--r-lg);
  padding: 44px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.globe-card::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  animation: spin 40s linear infinite;
}
.globe-card::after {
  content: '';
  position: absolute;
  inset: auto auto -35% -15%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
  animation: spin 55s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.globe-card h3 { color: #fff; font-size: 24px; margin-bottom: 12px; position: relative; z-index: 1; }
.globe-card p { color: rgba(255, 255, 255, 0.85); font-size: 15px; margin-bottom: 24px; position: relative; z-index: 1; }
.globe-card .pill-row { display: flex; flex-wrap: wrap; gap: 9px; position: relative; z-index: 1; }
.globe-card .pill {
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   Team / Why us
   ========================================================================== */
.team { background: var(--bg-softer); }
.team .cards-grid { grid-template-columns: repeat(4, 1fr); }
.team__exp {
  margin-top: 44px;
  text-align: center;
  font-size: 16px;
  color: var(--slate-2);
}
.team__exp strong { color: var(--brand); font-weight: 700; }

/* ==========================================================================
   Integrations
   ========================================================================== */
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.integration {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.integration:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(87, 87, 169, 0.35);
}
.integration .logo-badge {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: var(--r-md);
  background: var(--brand-light);
  color: var(--brand);
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.integration:nth-child(2) .logo-badge { background: var(--accent-light); color: var(--accent-dark); }
.integration:nth-child(3) .logo-badge { background: var(--success-light); color: var(--success); }
.integration h3 { font-size: 18px; margin-bottom: 8px; }
.integration p { font-size: 14px; color: var(--slate-2); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { padding: 0; }
.cta-banner__inner {
  background: linear-gradient(120deg, var(--brand-darker), var(--brand) 55%, var(--accent-dark));
  border-radius: 26px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner__inner::before,
.cta-banner__inner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
}
.cta-banner__inner::before { width: 300px; height: 300px; top: -130px; left: -90px; animation: spin 50s linear infinite; }
.cta-banner__inner::after { width: 240px; height: 240px; bottom: -110px; right: -70px; animation: spin 60s linear infinite reverse; }
.cta-banner__inner h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-banner__inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
.cta-banner__inner .hero__cta { justify-content: center; margin-bottom: 0; position: relative; z-index: 1; }
.cta-banner__inner .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.cta-banner__inner .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__info h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 14px 0 16px; letter-spacing: -0.02em; }
.contact__info > p { color: var(--slate-2); margin-bottom: 30px; }
.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact__item:last-of-type { border-bottom: none; }
.contact__item .card__icon { flex: 0 0 44px; height: 44px; margin-bottom: 0; }
.contact__item .card__icon svg { width: 20px; height: 20px; }
.contact__item strong { display: block; font-size: 15px; color: var(--ink); font-family: var(--f-heading); }
.contact__item a, .contact__item span { font-size: 14.5px; color: var(--slate-2); }
.contact__item a:hover { color: var(--brand); }

.contact__socials { display: flex; gap: 12px; margin-top: 26px; }
.contact__socials a {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-2);
  transition: all 0.22s;
}
.contact__socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}
.contact__socials svg { width: 18px; height: 18px; }

.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg-softer);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(87, 87, 169, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-2);
  min-height: 20px;
}
.form-status.error { color: #dc2626; }
.form-thanks { text-align: center; padding: 40px 12px; }
.form-thanks .tick {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
}
.form-thanks h3 { font-size: 21px; margin-bottom: 10px; }
.form-thanks p { font-size: 14.5px; color: var(--slate-2); max-width: 360px; margin: 0 auto; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: var(--success-light);
  color: var(--success);
  font-size: 14px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #101226;
  color: #a5accb;
  padding: 72px 0 0;
  font-size: 14.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer__brand img { height: 46px; margin-bottom: 18px; background: #fff; border-radius: 10px; padding: 6px; }
.footer__brand p { max-width: 280px; margin-bottom: 20px; color: #8b93b8; }
.footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: #a5accb; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer__contact svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 3px; color: var(--accent); }
.footer__pay {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.footer__pay img { height: 26px; background: #fff; border-radius: 6px; padding: 3px 6px; }
.footer__pay span { font-size: 12.5px; color: #8b93b8; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #8b93b8;
}
.footer__bottom a:hover { color: #fff; }
.footer__langs { display: flex; gap: 14px; }
.footer__langs a { color: #8b93b8; }
.footer__langs a.active { color: #fff; font-weight: 600; }

/* Back to top */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 900;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-dark); }
.to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Inner pages
   ========================================================================== */
.page-hero {
  padding: 150px 0 64px;
  background:
    radial-gradient(60% 55% at 85% 10%, rgba(41, 171, 226, 0.09), transparent 65%),
    radial-gradient(55% 50% at 10% 20%, rgba(87, 87, 169, 0.09), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 760px;
}
.page-hero p { font-size: 17px; color: var(--slate-2); max-width: 640px; }
.page-hero .hero__cta { margin: 28px 0 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--slate-2);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--ink); font-weight: 600; }

/* Prose (legal / long-form) */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-size: 24px;
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.prose h3 { font-size: 18px; margin: 28px 0 10px; }
.prose p { margin-bottom: 14px; font-size: 15.5px; }
.prose ul { margin: 0 0 16px; padding-left: 4px; }
.prose ul li {
  position: relative;
  padding: 4px 0 4px 26px;
  font-size: 15.5px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.55;
}
.prose .legal-meta {
  margin-top: 44px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-softer);
  font-size: 13.5px;
  color: var(--slate-2);
}
.prose .callout {
  border-left: 3px solid var(--brand);
  background: var(--brand-tint);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 14.5px;
}

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.faq-item.open { border-color: rgba(87, 87, 169, 0.4); box-shadow: var(--shadow-md); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--f-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item button .chev {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.faq-item.open button .chev { transform: rotate(180deg); }
.faq-item .chev svg { width: 15px; height: 15px; }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-body__inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--slate-2);
}
.faq-body__inner p { margin-bottom: 10px; }
.faq-body__inner ul { margin: 6px 0 12px; }
.faq-body__inner ul li {
  position: relative;
  padding: 3px 0 3px 22px;
}
.faq-body__inner ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Price list */
.price-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0 auto 26px;
}
.price-search { position: relative; flex: 1; min-width: 240px; }
.price-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--slate-2);
}
.price-search input {
  width: 100%;
  padding: 13px 16px 13px 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(87, 87, 169, 0.12);
}
.price-count { font-size: 13.5px; color: var(--slate-2); white-space: nowrap; }

.price-table-wrap {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-scroll { max-height: 640px; overflow-y: auto; }
.price-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.price-table th {
  position: sticky;
  top: 0;
  background: var(--bg-softer);
  text-align: left;
  font-family: var(--f-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  z-index: 1;
}
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td {
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--brand-tint); }
.price-table td:last-child { font-weight: 600; color: var(--brand); white-space: nowrap; }
.price-note {
  max-width: 820px;
  margin: 18px auto 0;
  font-size: 13.5px;
  color: var(--slate-2);
}
.price-empty {
  padding: 36px 24px;
  text-align: center;
  color: var(--slate-2);
  display: none;
}

/* Detail rows on service pages reuse .split; add anchor offset */
.detail-anchor { scroll-margin-top: 100px; }

/* Steps: 4-column variant for integration pages */
.steps--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps--4 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  section { padding: 76px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 52px; }
  .hero { padding-top: 150px; }
  .hero__visual { max-width: 620px; }
  .float-chip--1 { left: 0; }
  .float-chip--2 { right: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .team .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 36px; }
  .split + .split { margin-top: 64px; }
  .split--reverse .split__media { order: 0; }
  .coverage__grid { grid-template-columns: 1fr; gap: 44px; }
  .integrations__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 44px;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
  }
  .nav__links.open { transform: translateX(0); visibility: visible; transition: transform 0.32s ease; }
  .nav__links > li > a {
    padding: 15px 6px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 16px;
    justify-content: space-between;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 8px 10px;
    display: none;
  }
  .nav__links li.dd-open .dropdown { display: block; }
  .nav__toggle { display: flex; }
  .nav__actions .btn--ghost { display: none; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding-top: 130px; }
  .hero__proof { gap: 22px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cards-grid, .team .cards-grid, .usecases__grid, .pricing__grid,
  .integrations__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mockup__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mockup__row { flex-direction: column; }
  .float-chip { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-banner__inner { padding: 52px 26px; }
  .contact__form { padding: 26px 20px; }
}

/* ---------- Extra-small screens ---------- */
@media (max-width: 640px) {
  .page-hero { padding: 122px 0 44px; }
  .page-hero .hero__cta .btn { width: 100%; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .split__content h3 { font-size: 22px; }
  .panel { padding: 20px 16px; }
  .globe-card { padding: 32px 24px; }
  .price-table th, .price-table td { padding: 11px 16px; }
  .price-scroll { max-height: 480px; }
  .faq-item button { padding: 16px 18px; font-size: 15px; }
  .faq-body__inner { padding: 0 18px 18px; }
  .contact__form .form-group input,
  .contact__form .form-group textarea { font-size: 16px; } /* prevents iOS zoom-on-focus */
  .prose h2 { font-size: 21px; }
  .step { padding: 22px 18px; }
  .usecase { padding: 22px 18px; gap: 14px; }
  .footer { padding-top: 52px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  section { padding: 52px 0; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: 34px; }
  .hero__proof { gap: 16px 24px; }
  .hero__proof div strong { font-size: 21px; }
  .nav__logo img { height: 36px; }
  .nav__logo span { font-size: 18px; }
  .nav__actions { gap: 8px; }
  .nav__actions .btn { padding: 9px 16px; font-size: 13.5px; }
  .mockup__stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .mockup__stat { padding: 10px 9px; }
  .mockup__stat strong { font-size: 15px; }
  .mockup__body { padding: 14px; }
  .section-head h2 { font-size: 25px; }
  .eyebrow { font-size: 12px; padding: 6px 13px; }
  .stat-card { padding: 26px 12px; }
  .fact { padding: 16px 18px; gap: 14px; }
  .fact strong { font-size: 24px; min-width: 72px; }
  .price-card { padding: 30px 22px; }
  .price-card .amount { font-size: 31px; }
  .cta-banner__inner { padding: 44px 20px; border-radius: 20px; }
  .contact__form { padding: 22px 16px; }
  .breadcrumb { font-size: 12.5px; }
}
