/* ============================================
   agitru — Responsible & Secure AI for SMBs
   Light Theme Design System & Styles
   ============================================ */

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

:root {
  /* Canvas — Light */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fb;
  --bg-tertiary: #f0f1f5;
  --bg-elevated: #ffffff;

  /* Borders */
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --border-accent: rgba(0, 166, 167, 0.3);

  /* Text — Dark on light */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-accent: #00A6A7;

  /* Accents — agitru brand: navy + teal */
  --accent-violet: #00A6A7;
  --accent-blue: #062661;
  --accent-indigo: #1D4ED8;
  --gradient-start: #1D4ED8;
  --gradient-mid: #2563EB;
  --gradient-end: #00A6A7;

  /* Glow — Very subtle on light */
  --glow-violet: rgba(0, 166, 167, 0.07);
  --glow-blue: rgba(6, 38, 97, 0.05);

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1200px, 90vw);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows — for light theme depth */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Background --- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
  background-size: 48px 48px;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb--hero-1 {
  width: 700px;
  height: 700px;
  background: rgba(0, 166, 167, 0.07);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
}

.bg-orb--hero-2 {
  width: 500px;
  height: 500px;
  background: rgba(6, 38, 97, 0.05);
  top: 50px;
  right: -150px;
}

.bg-orb--services {
  width: 500px;
  height: 500px;
  background: rgba(0, 166, 167, 0.05);
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
}

.bg-orb--cta {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 166, 167, 0.07), rgba(6, 38, 97, 0.04));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- Container --- */
.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Typography --- */
.display-serif {
  font-family: 'Source Serif 4', serif;
}

.section-pretitle {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-pretitle::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-violet);
}

.section-title {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 166, 167, 0.3), 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(0, 166, 167, 0.4), 0 2px 4px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 8px 0;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  transition: all 0.4s var(--ease-out);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled::before {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 3px;
}

.lang-btn {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-sans);
}

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

.lang-btn.active {
  background: var(--text-accent);
  color: #fff;
}

.lang-toggle--mobile {
  margin-top: 8px;
  align-self: flex-start;
}

.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: all 0.3s;
}

.nav-mobile-toggle span::before,
.nav-mobile-toggle span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  left: 0;
  transition: all 0.3s;
}

.nav-mobile-toggle span::before { top: -6px; }
.nav-mobile-toggle span::after { top: 6px; }

.nav-mobile-toggle.active span { background: transparent; }
.nav-mobile-toggle.active span::before { top: 0; transform: rotate(45deg); background: var(--text-primary); }
.nav-mobile-toggle.active span::after { top: 0; transform: rotate(-45deg); background: var(--text-primary); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 var(--section-pad);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(29, 78, 216, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(6, 38, 97, 0.07) 0%, transparent 70%),
    #ffffff;
}

.hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-pretitle {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 166, 167, 0.25);
  border-radius: 100px;
  background: rgba(0, 166, 167, 0.05);
}

.hero-pretitle .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-violet);
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.12;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-headline .gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .alert-text {
  background: linear-gradient(135deg, #e85d3e, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-brand {
  color: var(--text-accent);
  font-weight: 700;
}

.hero-hl {
  color: var(--text-primary);
  font-weight: 600;
}

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

/* --- Trust Bar --- */
.trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}

.trust-item:hover {
  color: var(--text-primary);
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.trust-item-icon svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  color: var(--accent-violet);
}

/* --- Problem Section --- */
.problem {
  padding: var(--section-pad) 0;
}

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

.problem-left h3 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.problem-left p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.problem-right {
  position: sticky;
  top: 100px;
}

.problem-img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.problem-highlight {
  padding: 24px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-violet);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem-highlight strong {
  color: var(--text-primary);
}

/* --- Value Props --- */
.values {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  padding: 36px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  opacity: 0;
  transition: opacity 0.4s;
}

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

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

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 166, 167, 0.07);
  border: 1px solid rgba(0, 166, 167, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-violet);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* --- Services --- */
.services {
  padding: var(--section-pad) 0;
  position: relative;
}

.services-intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 56px;
}

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

.service-card {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.service-card-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.service-card-badge--accent {
  background: rgba(0, 166, 167, 0.1);
  border-color: rgba(0, 166, 167, 0.3);
  color: var(--accent-violet);
}

.service-card--gateway {
  border-color: rgba(0, 166, 167, 0.25);
  background: linear-gradient(160deg, #ffffff 60%, rgba(0, 166, 167, 0.04));
}

.service-card--gateway:hover {
  border-color: rgba(0, 166, 167, 0.45);
}

.service-card--gateway .service-card-number {
  color: var(--accent-violet);
}

.service-card h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-deliverables {
  margin-bottom: 24px;
}

.service-card-deliverables h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service-card-deliverables li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.service-card-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-violet);
  opacity: 0.5;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card-price span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-violet);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out);
}

.service-card-link:hover {
  gap: 10px;
}

/* --- Team --- */
.team {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}

.team-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
  min-height: 400px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}

.team-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-text .section-pretitle { margin-bottom: 16px; }
.team-text .section-title { margin-bottom: 24px; }

.team-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-certs {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.team-certs-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.team-certs-body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .team-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-image {
    position: static;
    max-height: 280px;
  }

  .team-img {
    max-height: 280px;
  }

  .team-certs {
    position: static;
  }
}

/* --- How It Works --- */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
}

.how-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.how-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

.how-content .section-pretitle { margin-bottom: 16px; }
.how-content .section-title { margin-bottom: 16px; }
.how-content .section-desc { margin: 0 0 40px; text-align: left; }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
  opacity: 0.2;
}

.step {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.step-number span {
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-violet);
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.step-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 166, 167, 0.07);
  color: var(--accent-violet);
  margin-top: 12px;
}

/* --- Pricing --- */
.pricing {
  padding: var(--section-pad) 0;
}

.pricing-table-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 700px;
}

.pricing-table thead {
  background: var(--bg-secondary);
}

.pricing-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.pricing-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--bg-secondary);
}

.pricing-table .package-name {
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-table .price {
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-table .type-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0, 166, 167, 0.07);
  color: var(--accent-violet);
}

.pricing-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- FAQ --- */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  margin-top: 56px;
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent-violet);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-violet);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: left;
}

.cta-content .section-title {
  margin-bottom: 16px;
}

.cta-content .section-desc {
  margin: 0 0 32px;
  text-align: left;
}

.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: stretch;
}

.cta-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

.cta-channels {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cta-channel svg {
  width: 18px;
  height: 18px;
  color: var(--accent-violet);
  flex-shrink: 0;
}

.cta-regions {
  margin-top: 32px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid #e2e8f0;
  background: #f1f5f9;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e2e8f0;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: #475569;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #1e293b;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
}
.footer-sister {
  flex-basis: 100%;
  order: 1;
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 700px;
}

.footer-bottom .footer-sister a {
  color: var(--text-accent);
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom .footer-sister a:hover {
  text-decoration: underline;
}
.footer-copyright {
  font-size: 0.8125rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Keyframes --- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 100px 32px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

.mobile-menu .btn {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

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

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .hero-ctas .btn {
    justify-content: center;
  }

  .trust-bar-items {
    gap: 24px;
  }

  .how-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-image {
    position: static;
    max-height: 280px;
  }

  .how-img {
    max-height: 280px;
  }

  .cta-image { display: none; }

  .cta-content { text-align: center; }
  .cta-content .section-desc { text-align: center; margin: 0 auto 32px; }

  .steps::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cta-channels {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .trust-bar-items {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 0 16px;
  }

  .pricing-table-wrap {
    margin-left: -5vw;
    margin-right: -5vw;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}
