/* ============================================
   Deal Duplicate Finder — Design System
   ============================================ */

/* CSS Custom Properties */
:root {
  --brand-orange: #41C0C1;
  --brand-orange-dark: #2BA8A9;
  --brand-orange-light: #EAF7F7;
  --brand-navy: #152638;
  --brand-navy-mid: #1E3550;
  --brand-navy-light: #2F5070;
  --accent-green: #61CE70;
  --accent-blue: #3BADB5;
  --accent-purple: #91509F;

  --text-primary: #000000;
  --text-secondary: #4A5568;
  --text-muted: #8A97A8;
  --text-inverse: #FFFFFF;

  --surface-base: #FFFFFF;
  --surface-raised: #F8FAFB;
  --surface-sunken: #F1F5F9;
  --surface-border: #E4EAF0;

  --shadow-xs: 0 1px 3px rgba(21, 38, 56, 0.06);
  --shadow-sm: 0 2px 8px rgba(21, 38, 56, 0.08);
  --shadow-md: 0 8px 24px rgba(21, 38, 56, 0.10);
  --shadow-lg: 0 16px 48px rgba(21, 38, 56, 0.12);
  --shadow-xl: 0 32px 64px rgba(21, 38, 56, 0.14);
  --shadow-brand: 0 8px 32px rgba(65, 192, 193, 0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--surface-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Accessibility Utilities
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brand-navy);
  color: #fff;
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Typography Scale
   ============================================ */
.text-display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.text-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-body {
  font-size: 1rem;
  line-height: 1.65;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

.text-brand {
  color: var(--brand-orange);
}

.text-navy {
  color: var(--brand-navy);
}

.text-muted {
  color: var(--text-muted);
}

.text-secondary {
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #91509F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-orange-light);
  color: var(--brand-orange-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand-orange);
  color: white;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--brand-orange-dark);
  box-shadow: 0 12px 40px rgba(65, 192, 193, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-outline:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

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

.ptb100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.ptb50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228, 234, 240, 0.8);
  transition: all var(--transition-base);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--brand-navy);
}

.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand-orange), #91509F);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(65, 192, 193, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-navy);
  background: var(--surface-raised);
}

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

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #0B1520 0%, #152638 50%, #0C1A2B 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 60% 40%, rgba(65, 192, 193, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(59, 173, 181, 0.08) 0%, transparent 70%);
}

.hero-grid {
  position: relative;
  display: flex;
  gap: 64px;
  align-items: center;
}

.hero-content,
.hero-visual {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(65, 192, 193, 0.15);
  border: 1px solid rgba(65, 192, 193, 0.3);
  color: #7DD5D6;
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' rx='10' fill='%233BADB5' fill-opacity='0.15'/%3E%3Cg clip-path='url(%23clip0_50_1769)'%3E%3Cpath d='M13.5078 8.49369C13.6473 8.21393 13.6709 7.89607 13.5744 7.59873C13.4778 7.30137 13.272 7.05814 12.9948 6.91385C12.8291 6.82756 12.7117 6.66592 12.6809 6.48148C12.6294 6.17311 12.4619 5.90207 12.2091 5.71828C11.9563 5.53451 11.647 5.45877 11.3379 5.5051C11.1531 5.53277 10.9633 5.47104 10.83 5.33994C10.6072 5.12074 10.3124 5 10 5C9.68757 5 9.3928 5.12072 9.17001 5.33992C9.03675 5.47104 8.84694 5.53277 8.66208 5.50508C8.35311 5.45879 8.0437 5.53449 7.79093 5.71826C7.53815 5.90205 7.37059 6.17309 7.31909 6.48146C7.28829 6.6659 7.17095 6.82754 7.00518 6.91383C6.72802 7.05813 6.5222 7.30135 6.42563 7.59871C6.32909 7.89605 6.35274 8.21391 6.49221 8.49367C6.57563 8.661 6.57563 8.8608 6.49221 9.02813C6.35274 9.30789 6.32909 9.62574 6.42563 9.92309C6.52218 10.2204 6.72802 10.4637 7.00518 10.608C7.17095 10.6943 7.28829 10.8559 7.31909 11.0403C7.35354 11.2466 7.44016 11.436 7.56925 11.594L6.60257 13.6703C6.48554 13.9012 6.74296 14.1713 6.97891 14.0653L8.16284 13.5806L8.55364 14.7995C8.62448 15.0484 8.99612 15.0722 9.09796 14.8338L10 12.8965L10.9021 14.8338C11.0039 15.0722 11.3756 15.0483 11.4464 14.7995L11.8372 13.5806L13.0211 14.0653C13.2571 14.1713 13.5145 13.9012 13.3974 13.6703L12.4307 11.594C12.5599 11.4361 12.6465 11.2467 12.6809 11.0404C12.7117 10.8559 12.8291 10.6943 12.9948 10.608C13.272 10.4637 13.4778 10.2205 13.5744 9.92311C13.6709 9.62576 13.6473 9.30791 13.5078 9.02814C13.4244 8.86082 13.4244 8.66102 13.5078 8.49369ZM8.8829 13.9079L8.62386 13.0999C8.57661 12.9407 8.38628 12.852 8.23411 12.9182L7.44934 13.2395L8.05112 11.9469C8.24313 12.0233 8.45266 12.0481 8.66208 12.0167C8.84688 11.989 9.03677 12.0508 9.17001 12.1819C9.28534 12.2954 9.42007 12.3822 9.56645 12.4398L8.8829 13.9079ZM11.7659 12.9182C11.6138 12.852 11.4234 12.9407 11.3762 13.0999L11.1171 13.9079L10.4335 12.4398C10.5799 12.3822 10.7147 12.2954 10.83 12.1819C10.9632 12.0508 11.1531 11.9891 11.3379 12.0168C11.5473 12.0481 11.7569 12.0233 11.9489 11.947L12.5507 13.2395L11.7659 12.9182ZM12.7245 10.088C12.3964 10.2588 12.1641 10.5787 12.1032 10.9438C12.0498 11.2639 11.7453 11.4852 11.4246 11.4371C11.0589 11.3823 10.6831 11.5045 10.4194 11.764C10.1881 11.9915 9.81188 11.9915 9.58063 11.764C9.35846 11.5454 9.05679 11.4243 8.74852 11.4243C8.69089 11.4243 8.63296 11.4285 8.57534 11.4371C8.25464 11.4852 7.95024 11.2639 7.8968 10.9438C7.83587 10.5787 7.6036 10.2588 7.27552 10.088C6.98782 9.93826 6.87157 9.58018 7.01634 9.28982C7.18145 8.95865 7.18145 8.56322 7.01634 8.23205C6.87157 7.94168 6.98784 7.58357 7.27552 7.43383C7.60362 7.26303 7.83589 6.94312 7.89682 6.57809C7.95026 6.25801 8.25479 6.03666 8.57538 6.08475C8.9411 6.13951 9.31694 6.01734 9.58065 5.75787C9.8119 5.53035 10.1881 5.53035 10.4194 5.75787C10.6831 6.01732 11.0588 6.13953 11.4247 6.08473C11.7454 6.03672 12.0498 6.25799 12.1032 6.57807C12.1641 6.94311 12.3964 7.26301 12.7245 7.43383C13.0122 7.58359 13.1284 7.94168 12.9837 8.23203C12.8186 8.5632 12.8186 8.95863 12.9837 9.2898C13.1284 9.58018 13.0122 9.93826 12.7245 10.088Z' fill='%233BADB5'/%3E%3Cpath d='M10.3754 8.2743L9.82009 8.83L9.58173 8.59147C9.46735 8.47703 9.28194 8.47701 9.16757 8.59147C9.05319 8.70592 9.05319 8.89147 9.16757 9.00592L9.61302 9.45168C9.72208 9.5652 9.91812 9.5652 10.0272 9.45168L10.7896 8.68875C10.904 8.57432 10.904 8.38875 10.7896 8.27432C10.6752 8.15989 10.4898 8.15985 10.3754 8.2743Z' fill='%233BADB5'/%3E%3Cpath d='M10.0001 6.53369C8.77287 6.53369 7.77441 7.53283 7.77441 8.76094C7.77441 9.98904 8.77287 10.9882 10.0001 10.9882C11.2274 10.9882 12.2258 9.98904 12.2258 8.76094C12.2258 7.53283 11.2274 6.53369 10.0001 6.53369ZM10.0001 10.4021C9.09582 10.4021 8.36014 9.66584 8.36014 8.76092C8.36014 7.856 9.09582 7.1198 10.0001 7.1198C10.9044 7.1198 11.6401 7.85602 11.6401 8.76094C11.6401 9.66586 10.9044 10.4021 10.0001 10.4021Z' fill='%233BADB5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_50_1769'%3E%3Crect width='10' height='10' fill='white' transform='translate(5 5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  font-size: 0;
  background-size: 24px;
}

.hero-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #91509F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item-value {
  color: white;
  font-weight: 700;
}

/* Hero Dashboard Mockup */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(65, 192, 193, 0.08);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dots {
  display: flex;
  gap: 7px;
}

.mockup-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
  background: #FF5F56;
}

.mockup-dots span:nth-child(2) {
  background: #FFBD2E;
}

.mockup-dots span:nth-child(3) {
  background: #27C93F;
}

.mockup-url {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
}

.mockup-body {
  padding: 20px;
}

.mockup-stats-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-stat {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px;
}

.mockup-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.mockup-stat-val.orange {
  color: var(--brand-orange);
}

.mockup-stat-val.green {
  color: var(--accent-green);
}

.mockup-stat-val.blue {
  color: var(--accent-blue);
}

.mockup-stat-lbl {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mockup-table-header {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

.mockup-th {
  flex: 1;
  min-width: 0;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.mockup-th:first-child {
  flex: 2;
}

.mockup-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  align-items: center;
  transition: background var(--transition-fast);
}

.mockup-cell {
  flex: 1;
  min-width: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.mockup-cell:first-child {
  flex: 2;
}

.mockup-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.mockup-cell.deal-name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
}

.badge-warning {
  background: rgba(145, 80, 159, 0.15);
  color: #91509F;
}

.badge-success {
  background: rgba(97, 206, 112, 0.15);
  color: #61CE70;
}

.badge-processing {
  background: rgba(59, 173, 181, 0.15);
  color: #3BADB5;
}

.mockup-progress {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.progress-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-orange), #7DD5D6);
  border-radius: var(--radius-full);
  width: 72%;
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Floating badge on hero visual */
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-green), #3BAF4D);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.float-badge-text strong {
  display: block;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.float-badge-text span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ============================================
   Social Proof / Logos Strip
   ============================================ */
.logos-strip {}

.logos-strip-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 28px;
}

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

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.logo-placeholder:hover {
  opacity: 0.75;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  background: var(--brand-navy);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-number.accent {
  background: linear-gradient(135deg, var(--brand-orange), #7DD5D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================
   Features Grid
   ============================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  color: var(--brand-navy);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: var(--surface-base);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  border-color: rgba(65, 192, 193, 0.2);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(65, 192, 193, 0.08);
  transform: translateY(-4px);
}

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

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  color: var(--brand-navy);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Feature block (alternating) */
.features-alt {
  background: var(--surface-raised);
}

.feature-block {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 96px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.flip {
  flex-direction: row-reverse;
}

.feature-text,
.feature-visual {
  flex: 1;
  min-width: 0;
}


.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.feature-block h2 {
  color: var(--brand-navy);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.feature-block p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(97, 206, 112, 0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Feature visual panels */

.feature-visual-panel {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-visual-panel img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   How It Works / Steps
   ============================================ */
.how-section {
  background: var(--surface-base);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}

.step-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% - 12px);
  right: calc(12.5% - 12px);
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--brand-orange) 0,
      var(--brand-orange) 8px,
      transparent 8px,
      transparent 16px);
  opacity: 0.3;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-brand);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  color: var(--brand-navy);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Steps alternate layout (detailed) */
.steps-alt {
  background: var(--surface-raised);
}

.step-row {
  display: flex;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--surface-border);
  align-items: flex-start;
}

.step-row-content {
  flex: 1;
  min-width: 0;
}

.step-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-num-circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--brand-navy);
  color: white;
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-row-content h2 {
  color: var(--brand-navy);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-row-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 5px 12px;
  background: var(--surface-base);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.chip.chip-brand {
  background: var(--brand-orange-light);
  border-color: rgba(65, 192, 193, 0.2);
  color: var(--brand-orange-dark);
}

.section-header--compact {
  margin-bottom: 56px;
}

.timeline-list {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-row {
  border-bottom: 1px solid var(--surface-border);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.timeline-duration {
  min-width: 120px;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: .9375rem;
}

.timeline-title {
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: .9375rem;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-section {
  background: var(--surface-base);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.toggle-track {
  width: 52px;
  height: 28px;
  background: var(--brand-orange);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-base);
}

.toggle-thumb {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.toggle-track.annual .toggle-thumb {
  transform: translateX(24px);
}

.save-badge {
  background: rgba(97, 206, 112, 0.12);
  color: var(--accent-green);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: var(--surface-base);
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all var(--transition-base);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 1px var(--brand-orange), var(--shadow-lg), var(--shadow-brand);
  background: linear-gradient(160deg, #EAF7F7 0%, white 100%);
}

.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: white;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.price-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-amount-wrap {
  margin-bottom: 8px;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  vertical-align: top;
  line-height: 2;
}

.price-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period-txt {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.price-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--surface-border);
}

.price-feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.price-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(97, 206, 112, 0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-cross {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--surface-raised);
}

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

.faq-item {
  background: var(--surface-base);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.faq-item:hover {
  border-color: rgba(65, 192, 193, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23F1F5F9'/%3E%3Cpath d='M4.54021 7.74717C4.53964 7.84592 4.55857 7.94381 4.59591 8.03523C4.63324 8.12664 4.68826 8.20979 4.7578 8.2799L9.25972 12.7818C9.4003 12.9216 9.59047 13 9.78869 13C9.98692 13 10.1771 12.9216 10.3177 12.7818L14.8196 8.2799C14.9425 8.13636 15.0067 7.95173 14.9994 7.76289C14.9921 7.57405 14.9139 7.39492 14.7802 7.26129C14.6466 7.12767 14.4675 7.04938 14.2786 7.04209C14.0898 7.0348 13.9052 7.09903 13.7616 7.22195L9.79244 11.1911L5.82325 7.22195C5.71876 7.11659 5.58536 7.04458 5.43994 7.01503C5.29452 6.98548 5.1436 6.99971 5.00627 7.05593C4.86894 7.11215 4.75136 7.20783 4.6684 7.33087C4.58544 7.45391 4.54083 7.59878 4.54021 7.74717Z' fill='%238A97A8'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  font-size: 0;
}

.faq-item.open .faq-chevron {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_55_1878)'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2341C0C1'/%3E%3Cpath d='M4.54021 12.2528C4.53964 12.1541 4.55857 12.0562 4.59591 11.9648C4.63324 11.8734 4.68826 11.7902 4.7578 11.7201L9.25972 7.21819C9.4003 7.07844 9.59047 7 9.78869 7C9.98692 7 10.1771 7.07844 10.3177 7.21819L14.8196 11.7201C14.9425 11.8636 15.0067 12.0483 14.9994 12.2371C14.9921 12.4259 14.9139 12.6051 14.7802 12.7387C14.6466 12.8723 14.4675 12.9506 14.2786 12.9579C14.0898 12.9652 13.9052 12.901 13.7616 12.778L9.79244 8.80886L5.82325 12.778C5.71876 12.8834 5.58536 12.9554 5.43994 12.985C5.29452 13.0145 5.1436 13.0003 5.00627 12.9441C4.86894 12.8879 4.75136 12.7922 4.6684 12.6691C4.58544 12.5461 4.54083 12.4012 4.54021 12.2528Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_55_1878'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-top: 1px solid var(--surface-border);
  padding-top: 16px;
  margin-top: -4px;
}

/* ============================================
   Contact
   ============================================ */
.contact-section {
  background: var(--surface-base);
}

.contact-wrapper {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-info h2 {
  color: var(--brand-navy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface-raised);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-method:hover {
  border-color: rgba(65, 192, 193, 0.25);
  box-shadow: var(--shadow-sm);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-method-val {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.contact-method-val a {
  color: var(--brand-orange);
  transition: color var(--transition-fast);
}

.contact-method-val a:hover {
  color: var(--brand-orange-dark);
  text-decoration: underline;
}

/* Contact Form */
.contact-form-card {
  flex: 1.5;
  min-width: 0;
  background: var(--surface-base);
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.contact-form-card fieldset {
  border: 0;
}

.contact-form-card h3 {
  color: var(--brand-navy);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row>.form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--brand-orange);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--surface-base);
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(65, 192, 193, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Contact page extras */
.contact-quickstart {
  padding: 20px;
  background: var(--brand-orange-light);
  border: 1px solid rgba(65, 192, 193, .2);
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.contact-quickstart-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 14px;
}

.contact-quickstart-title {
  font-weight: 700;
  color: var(--brand-navy);
}

.contact-quickstart-text {
  color: var(--text-secondary);
  font-size: .9375rem;
}

.contact-quickstart .btn {
  margin-top: 14px;
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .8125rem;
  margin-top: 12px;
}

.contact-resources {
  background: var(--surface-raised);
}

.feature-card-link {
  color: var(--brand-orange);
  font-weight: 600;
  font-size: .9375rem;
  margin-top: 16px;
  display: inline-block;
}

.feature-card-link:hover {
  color: var(--brand-orange-dark);
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-section {
  background: var(--surface-raised);
}

.legal-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--surface-base);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--surface-border);
}

.legal-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-card ul,
.legal-card ol {
  margin-left: 20px;
  margin-bottom: 14px;
}

.legal-card li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-card a {
  color: var(--brand-orange);
  text-decoration: underline;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--surface-border);
}

/* ============================================
   Page Header (inner pages)
   ============================================ */
.page-header {
  padding: 120px 0 120px;
  background: linear-gradient(160deg, var(--brand-navy) 0%, #162B41 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(65, 192, 193, 0.10) 0%, transparent 70%);
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.3;
}

.page-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-header .section-label,
.cta-section .section-label {
  background: rgba(65, 192, 193, .15);
  color: #7DD5D6;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0C1A2B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(65, 192, 193, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
}

.cta-section h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #091320;
  padding: 72px 0 32px;
}

.footer-top {
  display: flex;
  gap: 24px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-top>div:first-child {
  flex: 2;
  min-width: 0;
}

.footer-col {
  flex: 1;
  min-width: 0;
}

.footer-col ul {
  list-style: none;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: white;
  font-size: 1.0625rem;
  margin-bottom: 14px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--brand-orange), #91509F);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(65, 192, 193, 0.15);
  color: var(--brand-orange);
}

.footer-col .footer-col-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer-col li:not(:last-child) a {
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Status Badges (for merge history page context)
   ============================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-pending {
  background: rgba(237, 179, 0, 0.12);
  color: #D4A017;
}

.status-processing {
  background: rgba(59, 173, 181, 0.12);
  color: var(--accent-blue);
}

.status-merged {
  background: rgba(97, 206, 112, 0.12);
  color: var(--accent-green);
}

.status-failed {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}

/* ============================================
   Testimonials
   ============================================ */


.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: var(--surface-base);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--brand-orange);
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-primary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-navy);
}

.author-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {

  .feature-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .price-card {
    flex: 1 1 calc(50% - 12px);
  }

  .stat-item {
    flex: 1 1 calc(50% - 12px);
  }

  .step-card {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-top>div:first-child {
    flex: 0 0 100%;
  }

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 1023px) {
  .ptb100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pt100 {
    padding-top: 80px;
  }

  .pb100 {
    padding-bottom: 80px;
  }

  .ptb50 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pt50 {
    padding-top: 40px;
  }

  .pb50 {
    padding-bottom: 40px;
  }

  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    margin-bottom: 40px;
  }

  .hero {
    padding: 80px 0 50px;
  }

  .hero-grid {
    flex-direction: column;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero-trust {
    gap: 16px;
    padding-top: 24px;
    justify-content: center;
  }


  .feature-card,
  .testimonial-card {
    flex: 1 1 100%;
    padding: 20px;
  }

  .feature-block,
  .feature-block.flip {
    flex-direction: column;
    gap: 40px;
  }

  .price-card {
    flex: 1 1 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-card {
    flex: 1 1 calc(50% - 12px);
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-top>div:first-child {
    flex: 0 0 100%;
  }

  .footer-col {
    flex: 1 1 calc(50% - 15px);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-float-badge {
    display: none;
  }

  .logos-row {
    gap: 32px;
  }

  .stat-item {
    flex: 1 1 calc(50% - 12px);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin: 0 auto;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 767px) {
  .ptb100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pt100 {
    padding-top: 60px;
  }

  .pb100 {
    padding-bottom: 60px;
  }

  .ptb50 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .pt50 {
    padding-top: 30px;
  }

  .pb50 {
    padding-bottom: 30px;
  }

  .step-card,
  .footer-col {
    flex: 1 1 100%;
  }

  .feature-text,
  .feature-visual {
    width: 100%;
  }

  .logos-row {
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-up {
  animation: fade-up 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}