/* =========================================
   moveAI — Global Stylesheet
   Professional Canadian Tech Company
   ========================================= */

/* --- Root Variables --- */
:root {
  --navy:       #0D2545;
  --navy-mid:   #1A3A6B;
  --red:        #D62828;
  --sky:        #0077B6;
  --sky-light:  #00B4D8;
  --white:      #FFFFFF;
  --off-white:  #F4F7FB;
  --light-gray: #E8EDF5;
  --mid-gray:   #8A9AB5;
  --text:       #1C2B3A;
  --text-light: #4A5D72;
  --border:     #D8E2EE;
  --shadow-sm:  0 2px 8px rgba(13, 37, 69, 0.08);
  --shadow-md:  0 6px 24px rgba(13, 37, 69, 0.12);
  --shadow-lg:  0 16px 48px rgba(13, 37, 69, 0.16);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 0.25s ease;
  --font-main:  'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-light); line-height: 1.75; }

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 640px;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--gray {
  background: var(--off-white);
}

.section--dark {
  background: var(--navy);
}

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

.section__header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}

.section__header h2 { margin-bottom: 16px; }
.section__header p  { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
.btn-primary:hover {
  background: #005f8e;
  border-color: #005f8e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 119, 182, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: #b51f1f;
  border-color: #b51f1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(214, 40, 40, 0.35);
}

/* --- Pill / Badge --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge--sky   { background: rgba(0,180,216,0.12); color: var(--sky); }
.badge--red   { background: rgba(214,40,40,0.10); color: var(--red); }
.badge--navy  { background: rgba(13,37,69,0.08);  color: var(--navy); }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav__logo span.accent { color: var(--sky); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

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

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 0;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--light-gray);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--sky); }
.nav__mobile .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* =========================================
   HERO — HOME
   ========================================= */
.hero {
  padding: 160px 0 96px;
  background: linear-gradient(160deg, #f4f7fb 0%, #e8f0f9 50%, #d6e6f5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,182,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,119,182,0.08);
  border: 1px solid rgba(0,119,182,0.18);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sky);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sky-light);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--navy);
}

.hero h1 .highlight {
  color: var(--sky);
  position: relative;
}

.hero p.lead {
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__metrics {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__metric-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.hero__metric-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

.hero__visual {
  position: relative;
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero__card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__chart-bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 120px;
  margin-bottom: 20px;
}

.hero__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: opacity var(--transition);
}

.hero__bar:nth-child(1) { height: 45%; background: var(--light-gray); }
.hero__bar:nth-child(2) { height: 65%; background: var(--light-gray); }
.hero__bar:nth-child(3) { height: 50%; background: var(--light-gray); }
.hero__bar:nth-child(4) { height: 80%; background: var(--sky-light); }
.hero__bar:nth-child(5) { height: 95%; background: var(--sky); }
.hero__bar:nth-child(6) { height: 72%; background: var(--sky); }
.hero__bar:nth-child(7) { height: 88%; background: var(--sky); }

.hero__card-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--light-gray);
}

.hero__card-stat:first-of-type { border-top: none; }

.hero__stat-label { font-size: 0.88rem; color: var(--text-light); }
.hero__stat-value { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.hero__stat-change { font-size: 0.8rem; font-weight: 600; color: #16a34a; }

.floating-tag {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
}

.floating-tag--tl { top: -20px; left: -20px; }
.floating-tag--br { bottom: -16px; right: -16px; }
.floating-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; }

/* =========================================
   TRUST BAR
   ========================================= */
.trustbar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trustbar__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 28px;
}

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

.trustbar__logo-item {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light-gray);
  letter-spacing: -0.02em;
  filter: grayscale(1);
  opacity: 0.45;
  transition: opacity var(--transition);
}

.trustbar__logo-item:hover { opacity: 0.7; }

/* =========================================
   FEATURE CARDS
   ========================================= */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0,119,182,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 0.92rem; }

/* =========================================
   PRODUCT SHOWCASE (COMPAREAI)
   ========================================= */
.product-hero {
  padding: 160px 0 96px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.product-hero .hero__eyebrow {
  background: rgba(0,180,216,0.12);
  border-color: rgba(0,180,216,0.25);
  color: var(--sky-light);
}

.product-hero h1 { color: var(--white); }
.product-hero p.lead { color: rgba(255,255,255,0.75); }

.product-hero__visual {
  position: relative;
}

.compare-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.compare-widget__header {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-widget__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.compare-widget__dot:nth-child(1) { background: #ff5f57; }
.compare-widget__dot:nth-child(2) { background: #febc2e; }
.compare-widget__dot:nth-child(3) { background: #28c840; }

.compare-widget__title {
  margin-left: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.compare-widget__body { padding: 24px; }

.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
}

.compare-row:last-child { border-bottom: none; }

.compare-row__product {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.compare-row__prices {
  display: flex;
  gap: 20px;
}

.compare-row__price {
  text-align: center;
  min-width: 72px;
}

.compare-row__price .label {
  font-size: 0.72rem;
  color: var(--mid-gray);
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}

.compare-row__price .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.compare-row__price .value.lower { color: var(--red); }
.compare-row__price .value.updated { color: #16a34a; }

.compare-row__arrow {
  color: var(--sky);
  font-size: 1rem;
}

.compare-widget__footer {
  background: var(--off-white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.compare-widget__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #16a34a;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2); }
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky-light), var(--sky));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 36px 20px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

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

.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(0, 119, 182, 0.3);
}

.step-card h4 { margin-bottom: 10px; font-size: 1rem; }
.step-card p  { font-size: 0.88rem; }

/* =========================================
   INTEGRATIONS
   ========================================= */
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.integration-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.integration-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-sm);
}

.integration-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}

.integration-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.integration-card__type {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* =========================================
   PRICING
   ========================================= */
.pricing-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--navy) 0%, #0e2d5a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero h1 { color: var(--white); }
.pricing-hero p.lead { color: rgba(255,255,255,0.72); margin: 0 auto; max-width: 560px; }
.pricing-hero .hero__eyebrow { margin: 0 auto 24px; }

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px;
  margin-top: 32px;
}

.pricing-toggle__label {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  user-select: none;
}

.pricing-toggle__label.active {
  background: var(--white);
  color: var(--navy);
}

.pricing-toggle__save {
  background: var(--sky-light);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: -6px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  position: relative;
}

.pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--sky) 0%, var(--sky-light) 100%);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__plan {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
  min-height: 48px;
}

.pricing-card__price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 8px;
}

.pricing-card__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-light);
  align-self: flex-end;
  padding-bottom: 6px;
}

.pricing-card__billing-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 6px;
}

.pricing-card__features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card__feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,119,182,0.1);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.65rem;
}

.pricing-card__feature .check--na {
  background: var(--light-gray);
  color: var(--mid-gray);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

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

.pricing-card__enterprise .pricing-card__number {
  font-size: 2rem;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
}

.comparison-table thead th:first-child {
  background: var(--navy-mid);
  width: 35%;
}

.comparison-table thead th.featured-col {
  background: var(--sky);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child { border-bottom: none; }

.comparison-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.comparison-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.comparison-table td.featured-col {
  background: rgba(0,119,182,0.05);
}

.tick   { color: #16a34a; font-weight: 700; font-size: 1rem; }
.cross  { color: var(--mid-gray); font-size: 1rem; }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__question {
  padding: 22px 28px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

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

.faq__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--sky);
  transition: transform var(--transition), background var(--transition);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--sky);
  color: var(--white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

.faq__item.open .faq__answer {
  max-height: 400px;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--sky) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner__content { max-width: 560px; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.72); margin: 0; }

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-hero h1 { margin-bottom: 20px; }
.about-hero p   { margin-bottom: 16px; }

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 3px solid var(--sky);
  box-shadow: var(--shadow-sm);
}

.value-card h4 { margin-bottom: 8px; color: var(--navy); }
.value-card p  { font-size: 0.88rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

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

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.team-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 0.82rem; color: var(--sky); font-weight: 500; margin-bottom: 8px; }
.team-card p     { font-size: 0.82rem; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-strip__item {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}

.stat-strip__value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-strip__label {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand { }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer__logo .accent { color: var(--sky-light); }

.footer__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer__location svg {
  width: 14px;
  height: 14px;
  stroke: var(--sky-light);
  fill: none;
  stroke-width: 2;
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: rgba(255,255,255,0.65); }

.footer__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works__steps { grid-template-columns: repeat(2, 1fr); }
  .how-it-works__steps::before { display: none; }
  .integrations__grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 40px; }
  .cta-banner__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner,
  .product-hero__inner,
  .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .features__grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__desc { max-width: 100%; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__metrics { flex-wrap: wrap; gap: 20px; }
  .trustbar__logos { gap: 28px; }
  .integrations__grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th,
  .comparison-table td { padding: 12px 14px; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in--delay-1 { animation-delay: 0.1s; }
.animate-in--delay-2 { animation-delay: 0.2s; }
.animate-in--delay-3 { animation-delay: 0.3s; }
.animate-in--delay-4 { animation-delay: 0.4s; }

/* =========================================
   PAYMENT MODAL (Razorpay Pre-Checkout)
   ========================================= */

/* Overlay */
.pay-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 37, 69, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1100;
}
.pay-overlay.open { display: block; }

/* Modal container */
.pay-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(13, 37, 69, 0.22);
  z-index: 1200;
  overflow: hidden;
}
.pay-modal.open {
  display: block;
  animation: payModalIn 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

@keyframes payModalIn {
  from { opacity: 0; transform: translate(-50%, -44%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* Close button */
.pay-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--light-gray);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.pay-modal__close:hover {
  background: var(--border);
  color: var(--navy);
}

/* Header */
.pay-modal__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 32px 32px 24px;
  text-align: center;
}

.pay-modal__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.pay-modal__logo span { color: var(--sky-light); }

.pay-modal__header h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.pay-modal__header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
}

/* Plan summary strip */
.pay-modal__plan-summary {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
}

.pay-modal__plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.pay-modal__plan-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.pay-modal__plan-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sky);
}

.pay-modal__trial-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 600;
}

.pay-modal__trial-note i { font-size: 0.75rem; }

/* Form area */
.pay-modal__form {
  padding: 24px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pay-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pay-modal__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.pay-modal__field label span {
  color: var(--red);
}

.pay-modal__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pay-modal__input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--mid-gray);
  font-size: 0.85rem;
  pointer-events: none;
}

.pay-modal__input-wrap input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.pay-modal__input-wrap input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}

.pay-modal__input-wrap input::placeholder {
  color: var(--mid-gray);
}

.pay-modal__submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  font-size: 1rem;
  margin-top: 4px;
}

.pay-modal__secure-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pay-modal__secure-note i {
  color: var(--sky);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 520px) {
  .pay-modal {
    max-width: calc(100% - 32px);
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .pay-modal.open {
    animation: payModalSlideUp 0.3s ease forwards;
  }
  @keyframes payModalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .pay-modal__form { padding: 20px 20px 32px; }
  .pay-modal__header { padding: 28px 20px 20px; }
  .pay-modal__plan-summary { padding: 12px 20px; }
}

/* =========================================
   Integration card icon sizing fix (FA)
   ========================================= */
.integration-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
