/* ============================================
   FORESIGHT CRE — Landing Page Styles
   Brand-aligned with foresight-software.com
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Primary Colors */
  --navy-dark: #1B2B4D;
  --navy: #1E3A6E;
  --navy-mid: #2A4A7F;
  --navy-light: #3A5A8F;

  /* Teal / Cyan Accent */
  --teal: #4CBFB5;
  --teal-light: #5CC8BC;
  --teal-bright: #6DD4C8;
  --teal-pale: #E8F8F5;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--teal) 100%);
  --gradient-brand-horizontal: linear-gradient(90deg, var(--navy-dark) 0%, var(--teal) 100%);
  --gradient-subtle: linear-gradient(135deg, #f8fafc 0%, var(--teal-pale) 100%);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-300: #94A3B8;
  --gray-400: #64748B;
  --gray-500: #475569;
  --gray-600: #334155;
  --gray-700: #1E293B;

  /* Text Colors */
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-on-dark: #F1F5F9;
  --text-on-dark-muted: #CBD5E1;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}


/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-20) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
  color: var(--navy-dark);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto var(--space-12);
  line-height: 1.8;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--teal);
  color: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(76, 191, 181, 0.3);
}

.btn--primary:hover {
  background: var(--teal-bright);
  box-shadow: 0 4px 16px rgba(76, 191, 181, 0.4);
  transform: translateY(-1px);
}

.btn--primary-dark {
  background: var(--teal);
  color: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(76, 191, 181, 0.25);
}

.btn--primary-dark:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(76, 191, 181, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg {
  font-size: var(--text-lg);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-xl);
}

.btn--sm {
  font-size: var(--text-sm);
  padding: 0.5rem 1.25rem;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

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


/* ============================================
   TRUST BANNER
   ============================================ */
.trust-banner {
  background: var(--navy-dark);
  color: var(--text-on-dark-muted);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  text-align: center;
  border-bottom: 1px solid rgba(76, 191, 181, 0.2);
}

.trust-banner__text {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.trust-banner__shield {
  display: inline-block;
  vertical-align: -2px;
  margin-right: var(--space-1);
  stroke: var(--teal-light);
}

.trust-banner__link {
  color: var(--teal-light);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.trust-banner__link:hover {
  color: var(--teal-bright);
  text-decoration: underline;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: var(--white);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-100);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(27, 43, 77, 0.12));
}

.nav__logo-text {
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--navy);
}

.nav__cta {
  font-size: var(--text-sm);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--navy-dark);
}


/* ============================================
   DOMAIN VERIFICATION CALLOUT
   ============================================ */
.verification {
  background: var(--off-white);
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--gray-100);
}

.verification__card {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-6);
  background: var(--white);
  border: 1px solid var(--teal);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: 0 2px 12px rgba(76, 191, 181, 0.1);
}

.verification__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.verification__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
}

.verification__content {
  flex: 1;
}

.verification__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-3);
}

.verification__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.verification__text a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.verification__text a:hover {
  color: var(--navy);
}

.verification__assurance {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: var(--space-4);
}

.verification__assurance svg {
  stroke: var(--teal);
  flex-shrink: 0;
}

.verification__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.verification__link:hover {
  color: var(--navy);
  text-decoration: underline;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: var(--gradient-brand);
  padding: var(--space-24) 0 var(--space-20);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(76, 191, 181, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(92, 200, 188, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 191, 181, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero__domain-note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-6);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero__domain-note svg {
  display: inline-block;
  vertical-align: -2px;
  stroke: var(--teal-light);
  margin-right: var(--space-1);
}

.hero__domain-note strong {
  color: rgba(255, 255, 255, 0.85);
}

.hero__domain-note a {
  color: var(--teal-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.hero__domain-note a:hover {
  color: var(--white);
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__title-accent {
  color: var(--teal-light);
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.hero__supporting-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-2);
}


/* ============================================
   METRICS BAR
   ============================================ */
.metrics {
  background: var(--white);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--gray-100);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.metrics__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.metrics__number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.metrics__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}


/* ============================================
   PRODUCT VISUAL
   ============================================ */
.product-visual {
  background: var(--off-white);
}

.product-visual__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.product-visual__copy {
  max-width: 480px;
}

.product-visual__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.product-visual__text:last-of-type {
  margin-bottom: var(--space-8);
  font-weight: 600;
  color: var(--navy-dark);
}

/* Mockup Window */
.mockup-window {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.mockup-window__bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}

.mockup-dot:first-child { background: #FF6058; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #27CA40; }

.mockup-window__url {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-left: var(--space-4);
  background: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}

.mockup-window__body {
  display: flex;
  min-height: 320px;
}

.mockup-sidebar {
  width: 56px;
  background: var(--navy-dark);
  padding: var(--space-4) var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.mockup-sidebar__item {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.mockup-sidebar__item--active {
  background: var(--teal);
}

.mockup-content {
  flex: 1;
  padding: var(--space-6);
}

.mockup-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.mockup-heading-block {
  width: 180px;
  height: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.mockup-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--teal-pale);
  color: var(--teal);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--teal);
}

.mockup-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.mockup-data-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.mockup-data-label {
  width: 60%;
  height: 10px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-bottom: var(--space-2);
}

.mockup-data-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-dark);
}

.mockup-data-value--highlight {
  color: var(--teal);
}

.mockup-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mockup-table-row {
  height: 24px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.mockup-table-row--header {
  background: var(--navy-dark);
  opacity: 0.1;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--white);
}

.steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  max-width: 280px;
  flex: 0 1 280px;
}

.step-card__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.step-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-3);
}

.step-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: var(--space-12);
  color: var(--gray-300);
}

.step-connector svg {
  width: 40px;
  height: 24px;
}


/* ============================================
   SERVICES / FEATURES SECTION
   ============================================ */
.services {
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand-horizontal);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-3);
}

.feature-card__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================
   BEFORE / AFTER COMPARISON
   ============================================ */
.comparison {
  background: var(--white);
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.comparison__column {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
}

.comparison__column--before {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.comparison__column--after {
  background: var(--teal-pale);
  border: 1px solid var(--teal);
}

.comparison__heading {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid;
}

.comparison__column--before .comparison__heading {
  color: var(--gray-500);
  border-color: var(--gray-300);
}

.comparison__column--after .comparison__heading {
  color: var(--navy-dark);
  border-color: var(--teal);
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.comparison__list li {
  font-size: var(--text-base);
  line-height: 1.6;
  padding-left: var(--space-8);
  position: relative;
}

.comparison__column--before .comparison__list li {
  color: var(--text-muted);
}

.comparison__column--before .comparison__list li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--gray-300);
  font-size: var(--text-sm);
  font-weight: 600;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  top: 2px;
}

.comparison__column--after .comparison__list li {
  color: var(--navy-dark);
  font-weight: 500;
}

.comparison__column--after .comparison__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  top: 2px;
}


/* ============================================
   WHO WE SERVE
   ============================================ */
.audience {
  background: var(--off-white);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.audience-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.audience-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-pale);
  transform: translateY(-2px);
}

.audience-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.audience-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-2);
}

.audience-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================
   SECURITY & TRUST
   ============================================ */
.security {
  background: var(--navy-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.security::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 191, 181, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.security .section-title {
  color: var(--white);
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.security-item {
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

.security-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(76, 191, 181, 0.12);
  border: 1px solid rgba(76, 191, 181, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.security-item__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-item__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-1);
}

.security-item__text {
  font-size: var(--text-xs);
  color: var(--text-on-dark-muted);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--white);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq__item[open] {
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(76, 191, 181, 0.1);
}

.faq__question {
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-fast);
}

.faq__question:hover {
  background: var(--off-white);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--teal);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq__item[open] .faq__question::after {
  content: '\2212';
}

.faq__answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq__answer a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--gradient-subtle);
  position: relative;
}

.final-cta__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__body {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-10);
}

/* Calendly Placeholder */
.calendly-placeholder {
  margin-bottom: var(--space-8);
}

.calendly-placeholder__inner {
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
}

.calendly-placeholder__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.calendly-placeholder__note {
  font-size: var(--text-xs);
  color: var(--gray-300);
  margin-top: var(--space-4);
}

.final-cta__secondary {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.final-cta__secondary a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.final-cta__secondary a:hover {
  color: var(--teal);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-700);
  color: var(--text-on-dark-muted);
  padding: var(--space-12) 0 var(--space-8);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.footer__logo-mark {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(76, 191, 181, 0.3));
}

.footer__logo-text {
  line-height: 1;
}

.footer__domain-note {
  font-size: var(--text-sm);
  color: var(--gray-300);
  text-align: center;
}

.footer__domain-note a {
  color: var(--teal-light);
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--teal-light);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.footer__unsubscribe {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.footer__unsubscribe a {
  color: var(--gray-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__unsubscribe a:hover {
  color: var(--teal-light);
}


/* ============================================
   MOBILE FLOATING CTA
   ============================================ */
.mobile-cta {
  display: none;
}


/* ============================================
   RESPONSIVE — Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .security__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .product-visual__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .product-visual__copy {
    max-width: 100%;
    text-align: center;
  }

  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .why__grid,
  .steps__grid {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }

  .steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}


/* ============================================
   RESPONSIVE — Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-20: 3.5rem;
    --space-24: 4rem;
  }

  /* Keep nav sticky on mobile */
  .nav {
    position: sticky;
    top: 0;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-100);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__mobile-toggle {
    display: block;
  }

  /* Mobile floating CTA */
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    padding: var(--space-3) var(--space-6);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-100);
    text-align: center;
  }

  .mobile-cta__btn {
    width: 100%;
  }

  .verification__card {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-6);
  }

  .verification__icon {
    width: 40px;
    height: 40px;
  }

  .verification__icon svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: auto;
    padding: var(--space-16) 0 var(--space-12);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
  }

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

  .audience__grid {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: var(--text-2xl);
  }

  .comparison__grid {
    grid-template-columns: 1fr;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .trust-banner {
    font-size: var(--text-xs);
    padding: var(--space-2) 0;
  }

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

  /* Add padding at bottom for floating CTA */
  .footer {
    padding-bottom: calc(var(--space-8) + 60px);
  }
}


/* ============================================
   RESPONSIVE — Small Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__title {
    font-size: var(--text-2xl);
  }

  .security__grid {
    grid-template-columns: 1fr;
  }

  .btn--lg {
    width: 100%;
  }

  .metrics__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .trust-banner,
  .nav,
  .mobile-cta {
    display: none;
  }

  .hero {
    background: var(--navy-dark) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .section {
    padding: 2rem 0;
  }
}
