:root {
  --image-blue: #114ab1; /* The vibrant blue from the photo */
  --brand-navy: #002855;
  --brand-navy: #002855;
  --brand-gold: #f5b904;
  --brand-navy-dark: #001a3d;
  --brand-navy-mid: #003d7a;
  --brand-light: #faf6e8;
  --brand-light-border: rgba(245, 185, 4, 0.35);
  --surface-dark: #243b55;
  --surface-dark-hover: #2d4a68;
  --surface-dark-border: rgba(255, 255, 255, 0.1);
  --on-dark: #f1f5f9;
  --on-dark-muted: rgba(241, 245, 249, 0.72);
  --bg: #d8e0ea;
  --bg-elevated: #e2e9f2;
  --bg-card: #ecf0f6;
  --bg-subtle: #ccd6e3;
  --bg-panel: #c2cedd;
  --border: rgba(0, 40, 85, 0.14);
  --border-strong: rgba(0, 40, 85, 0.22);
  --text: #002855;
  --text-muted: #3a5270;
  --accent: #f5b904;
  --accent-2: #002855;
  --accent-glow: rgba(245, 185, 4, 0.28);
  --accent-soft: rgba(245, 185, 4, 0.14);
  --shadow-sm: 0 2px 14px rgba(0, 40, 85, 0.08);
  --shadow-md: 0 8px 28px rgba(0, 40, 85, 0.12);
  --shadow-lg: 0 20px 48px rgba(0, 40, 85, 0.16);
  --success: #15803d;
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Montserrat", sans-serif;
  --font-display: "Montserrat", sans-serif;
  --header-h: 72px;
  --container: min(1120px, calc(100% - 2.5rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button, input, textarea { font: inherit; }



html, body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Legal page layout fix */
.legal-page {
  flex: 1;
  display: flex;
}

.legal-page__content {
  flex: 1;
}



.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section { padding: 5.5rem 0; }
.section__header { max-width: 36rem; margin-bottom: 3rem; }
.section__header--center { text-align: center; max-width: 40rem; margin-inline: auto; margin-bottom: 3rem; }
.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section__lead { color: var(--text-muted); font-size: 1.0625rem; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(204, 214, 227, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 2px 16px rgba(0, 40, 85, 0.1);
  color: var(--brand-navy);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__list a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__list a:hover {
  color: var(--brand-navy);
  background: var(--accent-soft);
}
.header .btn--ghost {
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.header .btn--ghost:hover {
  color: var(--brand-navy);
  background: var(--accent-soft);
  border-color: rgba(245, 185, 4, 0.45);
}
.header__actions { display: flex; gap: 0.5rem; align-items: center; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--image-blue); /* Changed from gold to blue */
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(17, 74, 177, 0.25);
}
.btn--primary:hover { box-shadow: 0 8px 32px var(--accent-glow); }
.btn--outline {
  background: var(--bg-card);
  border-color: var(--border-strong);
  color: var(--brand-navy);
}
.btn--outline:hover {
  border-color: var(--brand-gold);
  background: rgba(245, 185, 4, 0.12);
  color: var(--brand-navy);
}
.btn--ghost { background: transparent; color: var(--text-muted); }
.btn--ghost:hover { color: var(--brand-navy); background: var(--accent-soft); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg { padding: 0.9375rem 1.5rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Hero */
.hero {
 position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
  background: var(--bg);
}


.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.hero__overlay {
  display: none;
}
.hero__content.container {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  /* Professional gap for Desktop */
  margin-left: 12% !important; 
  margin-right: auto !important;
  padding: 0;
  text-align: left;
  background: none;
}

/* --- HERO TYPOGRAPHY & COLORS --- */
.hero__title {
  font-family: var(--font-display);
  /* This 'clamp' makes the font scale fluidly between mobile and desktop */
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

/* LINE 1: Smart Communication. */
.hero__title span:first-child {
  display: block;
  color: #102136; 
  white-space: nowrap; /* Prevents "Communication" from dropping down */
}

/* LINE 2: Stronger Business */
.hero__title span:last-child {
  display: block;
  color: var(--image-blue);
  white-space: nowrap; /* Prevents "Business" from dropping down */
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569; 
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__cta { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.75rem; 
  justify-content: flex-start; 
}

/* --- MOBILE OPTIMIZATION (768px and smaller) --- */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    justify-content: center !important; 
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3rem;
  }

  .hero__content.container {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100%;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    text-align: center !important; /* Centered layout for mobile */
  }

  .hero__cta {
    justify-content: center !important;
    flex-direction: column; /* Stacks buttons on mobile */
  }

  .btn {
    width: 100%; /* Makes buttons full-width on mobile */
  }

  /* On very small screens, we allow wrapping so text doesn't go off the edge */
  @media (max-width: 400px) {
    .hero__title span:first-child,
    .hero__title span:last-child {
      white-space: normal;
    }
  }
}

.trust {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border-strong);
  background: linear-gradient(
    90deg,
    rgba(0, 40, 85, 0.07) 0%,
    rgba(0, 40, 85, 0.03) 50%,
    rgba(0, 40, 85, 0.07) 100%
  );
}
.trust__inner p {
  text-align: center;
  color: var(--brand-navy);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Features */
.features { background: var(--bg-elevated); }
.features__intro {
   text-align: center;
  max-width: 900px; /* Optional: keeps the paragraph readable */
  margin: 0 auto;
}
.features__catalog {
  margin-top: 3rem;
}
.features__catalog .eyebrow {
  margin-bottom: 1.5rem;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card { padding: 1.75rem; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover {
  border-color: rgba(245,185,4,0.45);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 10px;
  color: var(--brand-navy);
  margin-bottom: 1.25rem;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9375rem; }

/* Benefits */
.benefits { background: var(--bg-subtle); }
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.benefits__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
}
.benefits__list { display: flex; flex-direction: column; gap: 1.5rem; }
.benefits__list li { display: flex; gap: 1rem; }
.benefits__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 185, 4, 0.12);
  color: var(--brand-navy-mid);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
}
.benefits__list strong { display: block; margin-bottom: 0.25rem; }
.benefits__list p { color: var(--text-muted); font-size: 0.9375rem; }
.benefits__visual {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}
.benefits__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-mock__bar {
  display: flex; gap: 6px; margin-bottom: 1rem;
}
.dashboard-mock__bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(148,163,184,0.25);
}
.dashboard-mock__body { display: flex; gap: 1rem; min-height: 200px; }
.dashboard-mock__sidebar {
  width: 56px; border-radius: 8px;
  background: var(--accent-soft);
}
.dashboard-mock__main { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.dashboard-mock__chart {
  height: 100px; border-radius: 8px;
  background: linear-gradient(180deg, rgba(245,185,4,0.2), transparent);
}
.dashboard-mock__rows { display: flex; flex-direction: column; gap: 8px; }
.dashboard-mock__rows div {
  height: 12px; border-radius: 4px;
  background: rgba(148,163,184,0.12);
}
.dashboard-mock__rows div:nth-child(1) { width: 90%; }
.dashboard-mock__rows div:nth-child(2) { width: 70%; }
.dashboard-mock__rows div:nth-child(3) { width: 85%; }

/* Screenshot carousel */
.screenshot { background: var(--bg); }
.screenshot-carousel {
  max-width: 1080px;
  margin: 0 auto;
}
.screenshot-carousel__frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}
.screenshot-carousel__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.screenshot-carousel__chrome > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.screenshot-carousel__chrome > span:nth-child(1) { background: #ef4444; }
.screenshot-carousel__chrome > span:nth-child(2) { background: #eab308; }
.screenshot-carousel__chrome > span:nth-child(3) { background: #22c55e; }
.screenshot-carousel__url {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.screenshot-carousel__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-subtle);
}
.screenshot-carousel__track {
  position: absolute;
  inset: 0;
}
.screenshot-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}
.screenshot-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.screenshot-slide img {
  display: block;
  width: 100%;
  height: calc(100% - 2.5rem);
  object-fit: contain;
  object-position: top center;
  background: var(--bg-card);
}
.screenshot-slide figcaption {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.screenshot-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.screenshot-carousel__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--brand-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.screenshot-carousel__arrow:hover,
.screenshot-carousel__arrow:focus-visible {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
  outline: none;
}
.screenshot-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.screenshot-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 40, 85, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.screenshot-carousel__dot.is-active {
  width: 1.75rem;
  background: var(--brand-gold);
}
.screenshot-carousel__dot:hover,
.screenshot-carousel__dot:focus-visible {
  background: var(--brand-navy);
  outline: none;
}
.screenshot-carousel__dot.is-active:hover,
.screenshot-carousel__dot.is-active:focus-visible {
  background: var(--brand-gold);
}
@media (prefers-reduced-motion: reduce) {
  .screenshot-slide {
    transition: none;
  }
}

/* Mobile app */
.mobile-app {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-subtle) 100%);
}
.mobile-app__grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 3.5rem;
  align-items: center;
}
.mobile-app__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  margin-bottom: 1rem;
}
.mobile-app__copy .section__lead {
  margin-bottom: 2rem;
}
.mobile-app__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}
.mobile-app__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.mobile-app__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--brand-navy);
  font-size: 0.875rem;
}
.mobile-carousel-shell {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}
.mobile-carousel {
  position: relative;
}
.mobile-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  min-height: 480px;
  background: transparent;
}
.mobile-carousel__track {
  position: absolute;
  inset: 0;
}
.mobile-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}
.mobile-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.mobile-slide img {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  max-height: calc(100% - 2.25rem);
  min-height: 0;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 20px 40px rgba(0, 40, 85, 0.18));
}
.mobile-slide figcaption {
  flex-shrink: 0;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.mobile-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.mobile-carousel__arrow {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--brand-navy);
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.mobile-carousel__arrow:hover,
.mobile-carousel__arrow:focus-visible {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
  outline: none;
}
.mobile-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.mobile-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 40, 85, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.mobile-carousel__dot.is-active {
  width: 1.75rem;
  background: var(--brand-gold);
}
.mobile-carousel__dot:hover,
.mobile-carousel__dot:focus-visible {
  background: var(--brand-navy);
  outline: none;
}
.mobile-app {
  padding-bottom: 5.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-slide {
    transition: none;
  }
}

/* Integrations */
.integrations { background: var(--bg-subtle); }
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.integration-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 120px;
  transition: border-color 0.2s, transform 0.2s;
}
.integration-card:hover {
  border-color: rgba(245,185,4,0.3);
  transform: translateY(-2px);
}
.integration-card img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

/* Pricing */
.plans { background: var(--bg-subtle); }

.pricing-base {
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  border-color: rgba(245, 185, 4, 0.5);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(245, 185, 4, 0.2);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(245, 185, 4, 0.08) 100%);
}
.pricing-base__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.pricing-base__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}
.pricing-base h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
}
.pricing-base__price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  line-height: 1;
}
.pricing-base__price .pricing-base__currency,
.pricing-base h3 { color: var(--brand-navy); }
.pricing-base__price .pricing-base__unit { color: var(--text-muted); }
.pricing-base__currency { font-size: 0.55em; vertical-align: super; }
.pricing-base__unit {
  font-size: 0.35em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-base__note {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.pricing-base__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}
.pricing-base__features li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-base__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-weight: 700;
}

.pricing-addons { margin-bottom: 3.5rem; }
.pricing-addons__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pricing-addons__header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
}
.pricing-addons__lead {
  max-width: 22rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: right;
}
.pricing-addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.addon-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  transition: border-color 0.2s, transform 0.2s;
}
.addon-card:hover {
  border-color: rgba(245, 185, 4, 0.4);
  transform: translateY(-2px);
}
.addon-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.addon-card__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.addon-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}
.addon-card__price span { font-size: 1rem; vertical-align: super; }
.addon-card__unit {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing-minutes__header {
  margin-bottom: 1.5rem;
}
.pricing-minutes__header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.pricing-minutes__header p { color: var(--text-muted); font-size: 0.9375rem; }
.pricing-minutes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.minutes-card {
  padding: 1.75rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.minutes-card:hover {
  border-color: rgba(245, 185, 4, 0.4);
  transform: translateY(-2px);
}
.minutes-card--featured {
  border-color: rgba(245, 185, 4, 0.45);
  background: linear-gradient(180deg, rgba(245, 185, 4, 0.08), var(--bg-card));
}
.minutes-card__badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-radius: 999px;
  white-space: nowrap;
}
.minutes-card__total {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.minutes-card__total strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
}
.minutes-card__split {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.minutes-card__split li {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.minutes-card__split span {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-gold);
}
.minutes-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-navy);
}
.pricing-vat {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal[hidden] { display: none; }
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 85, 0.55);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  width: min(100%, 28rem);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 40, 85, 0.25);
  padding: 1.75rem;
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: var(--bg-subtle);
  color: var(--brand-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover {
  background: var(--accent-soft);
  color: var(--brand-navy);
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-navy);
  padding-right: 2.5rem;
  margin-bottom: 0.5rem;
}
.modal__lead {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.modal-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 0.5rem;
}
.modal-form label:first-of-type { margin-top: 0; }
.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0.15rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  resize: vertical;
}
.modal-form input::placeholder,
.modal-form textarea::placeholder { color: var(--text-muted); }
.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(245, 185, 4, 0.2);
  background: var(--bg-card);
}
.modal-form button[type="submit"] { margin-top: 0.75rem; }
.modal-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.modal-form__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.35rem;
}
body.modal-open { overflow: hidden; }

/* FAQ */
.faq {
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
}
.faq__layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq__intro {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.faq__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}
.faq__intro-text {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-reset: faq-counter;
}
.faq-item {
  counter-increment: faq-counter;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover {
  border-color: rgba(245, 185, 4, 0.35);
}
.faq-item[open] {
  border-color: rgba(245, 185, 4, 0.55);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.faq-item__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: var(--accent-soft);
  border-radius: 8px;
  transition: background 0.25s, color 0.25s;
}
.faq-item__num::before {
  content: counter(faq-counter, decimal-leading-zero);
}
.faq-item[open] .faq-item__num {
  background: var(--brand-gold);
  color: var(--brand-navy);
}
.faq-item__question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  line-height: 1.45;
  padding-top: 0.2rem;
}
.faq-item__toggle {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--brand-navy);
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-item[open] .faq-item__toggle {
  transform: rotate(180deg);
  background: var(--brand-navy);
  color: var(--brand-gold);
}
.faq-item__answer {
  padding: 0 1.25rem 1.25rem 4.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  border-top: 1px solid transparent;
  animation: faq-open 0.3s ease;
}
.faq-item[open] .faq-item__answer {
  border-top-color: var(--border);
  padding-top: 1rem;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-item__answer p { margin-bottom: 0.75rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul {
  margin: 0.5rem 0 0.75rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.faq-item__answer li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.55;
}
.faq-item__answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-gold);
}
.faq-item__answer li strong {
  color: var(--brand-navy);
  font-weight: 600;
}

/* Contact */
.contact { background: var(--bg-subtle); }
.contact__intro {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.contact__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.contact__intro .section__lead { margin-bottom: 0; }
.contact__details {
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  max-width: 22rem;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.contact__details strong { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact__details a { color: var(--brand-navy-mid); font-weight: 600; }
.contact__details a:hover { text-decoration: underline; }
.contact-form { padding: 2rem; display: flex; flex-direction: column; gap: 0.375rem; }
.contact-form h3 { margin-bottom: 0.75rem; color: var(--brand-navy); }
.contact-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 0.625rem;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  margin-bottom: 0.25rem;
  padding: 0.75rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(245, 185, 4, 0.2);
}
.contact-form button[type="submit"] { margin-top: 0.75rem; }

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-subtle) 100%);
  color: var(--brand-navy);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__nav a { font-size: 0.875rem; color: var(--text-muted); }
.footer__nav a:hover { color: var(--brand-navy); }
.footer__nav--legal {
  width: 100%;
  justify-content: center;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(0, 40, 85, 0.08);
}
.footer__nav--legal a {
  font-size: 0.8125rem;
}
.footer__nav--legal a[aria-current="page"] {
  color: var(--brand-navy);
  font-weight: 600;
}
.footer .logo__img { height: 40px; }

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: var(--bg);
  min-height: 60vh;
}
.legal-page__content {
  max-width: 760px;
  margin-inline: auto;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
}
.legal-page__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}
.legal-page__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-page__body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin: 2rem 0 0.75rem;
}
.legal-page__body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin: 1.5rem 0 0.5rem;
}
.legal-page__body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-page__body ul,
.legal-page__body ol {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0 0 1rem 1.25rem;
  padding-left: 1rem;
}
.legal-page__body li { margin-bottom: 0.375rem; }
.legal-page__body a {
  color: var(--brand-navy-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page__placeholder {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  background: var(--bg-subtle);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
}
.footer__legal {
  width: 100%;
  padding-top: 1.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 40, 85, 0.1);
  text-align: center;
}
.footer__tagline,
.footer__company {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.footer__tagline strong { color: var(--brand-navy); font-weight: 600; }
.footer__company {
  font-weight: 500;
  color: var(--brand-navy);
  margin-bottom: 0.875rem;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem 0.75rem;
  margin: 0 0 1.25rem;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 5px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(0, 40, 85, 0.1);
  box-shadow: 0 2px 8px rgba(0, 40, 85, 0.08);
  flex-shrink: 0;
}
.footer__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border-radius: 50%;
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-size: 0.9375rem;
  z-index: 200;
  animation: toast-in 0.3s ease;
}
.toast[hidden] { display: none; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}



/* Responsive */
@media (max-width: 900px) {
  .faq__layout { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .faq-item__answer { padding-left: 1.25rem; }
  .benefits__grid { grid-template-columns: 1fr; }
  .mobile-app__grid { grid-template-columns: 1fr; }
  .mobile-app { padding-bottom: 6rem; }
  .pricing-minutes__grid,
  .integrations__grid { grid-template-columns: 1fr; }
  .screenshot-carousel__viewport { aspect-ratio: 4 / 3; }
}




@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .header__actions .btn--ghost { display: none; }
  .nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav__list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list a { display: block; padding: 0.75rem 1rem; }
  .hero__content {
    max-width: none;
  }
   .hero {
    /* Increased to 80vh to give the image more room to fit without zooming too much */
    min-height: 80vh;
    
    /* SIGNIFICANTLY INCREASED: Pushes content down for Chrome, Firefox, and Edge */
    padding-top: calc(var(--header-h) + 6rem); 
    padding-bottom: 4rem;
    
    display: flex;
    align-items: center;
  }
  .hero__image { 
    object-fit: cover; 
    /* 70% is the new "Balance Point":
       - It is low enough to bring the TOP back into view for Edge.
       - It is high enough to keep the BOTTOM from cropping in Firefox. */
    object-position: 82% 70%; 
  }
  .pricing-addons__lead { text-align: left; }
  .pricing-base__header { flex-direction: column; }
  .footer__badge {
    width: 46px;
    height: 46px;
    padding: 4px;
  }
}




/* 1. Fix Footer Positioning */
.legal-page-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Forces body to be at least screen height */
  margin: 0;
}

.legal-main-content {
  flex: 1 0 auto; /* Pushes the footer to the bottom */
  /* 2. Fix Top Cropping */
  padding-top: calc(var(--header-h) + 3rem); 
  padding-bottom: 5rem;
  background: var(--bg);
}

.footer {
  flex-shrink: 0; /* Ensures footer doesn't squash */
}

/* 3. Card Styling inside the Legal Page */
.legal-page__content.card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* 4. Fresh Design Elements for Policy Text */
.policy-lead {
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--brand-navy);
  border-bottom: 2px solid var(--brand-gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.legal-note {
  background: var(--accent-soft);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-left: 4px solid var(--brand-gold);
}

/* 5. Footer Badge Alignment Fix */
.footer__bottom-full {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.badge {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.badge img {
  width: 100%;
  height: auto;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    text-decoration: underline;
    font-size: 0.85rem;
    font-weight: 500;
}