/* ============================================================
   WhatFlare — Premium Landing Page Stylesheet v2
   DoubleTick.io-Inspired Dark Theme · Flare Animations
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Core Dark Palette (DoubleTick-inspired) */
  --bg-hero: #021a0e;
  --bg-hero-gradient: radial-gradient(ellipse at 50% 0%, #004421 0%, #021a0e 70%);
  --bg-dark: #021a0e;
  --bg-dark-2: #031f11;
  --bg-dark-card: rgba(255, 255, 255, 0.04);
  --bg-dark-card-border: rgba(255, 255, 255, 0.1);
  --bg-light: #f8faf9;
  --bg-light-2: #ffffff;
  --bg-card: #ffffff;

  /* Text */
  --text-white: #ffffff;
  --text-white-90: rgba(255, 255, 255, 0.9);
  --text-white-70: rgba(255, 255, 255, 0.7);
  --text-white-50: rgba(255, 255, 255, 0.5);
  --text-white-30: rgba(255, 255, 255, 0.3);
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Accent */
  --accent: #25d366;
  --accent-dark: #1da855;
  --accent-glow: rgba(37, 211, 102, 0.25);
  --accent-glow-strong: rgba(37, 211, 102, 0.4);
  --flare-purple: rgba(168, 85, 247, 0.3);
  --flare-purple-solid: #a855f7;
  --flare-cyan: rgba(56, 189, 248, 0.25);
  --flare-cyan-solid: #38bdf8;
  --flare-emerald: rgba(16, 185, 129, 0.2);

  /* Borders */
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: #e2e8f0;
  --border-card: #e2e8f0;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 0 0 1px #3a8363, 0 1px 2px rgba(0, 0, 0, 0.64);
  --shadow-green-glow: 0 0 30px rgba(37, 211, 102, 0.2);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-hero: 3.25rem;

  /* Layout */
  --container: 1160px;
  --nav-h: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --dur: 300ms;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-light);
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
}


/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-dark-2 {
  background: var(--bg-dark-2);
  color: var(--text-white);
}

.section-light {
  background: var(--bg-light);
}

.section-white {
  background: var(--bg-light-2);
}

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


/* ── Section Headers ───────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-badge-dark {
  background: rgba(37, 211, 102, 0.1);
  color: var(--accent);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.section-badge-light {
  background: rgba(37, 211, 102, 0.08);
  color: var(--accent-dark);
  border: 1px solid rgba(37, 211, 102, 0.15);
}

.section-badge svg {
  width: 14px;
  height: 14px;
}

.section-heading {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-heading-dark {
  color: var(--text-white);
}

.section-heading-light {
  color: var(--text-dark);
}

.section-desc {
  font-size: var(--fs-md);
  line-height: 1.7;
  max-width: 560px;
}

.section-desc-dark {
  color: var(--text-white-50);
}

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

.text-center .section-desc {
  margin: 0 auto;
}

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


/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(74% 74% at 50% 0%, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-green), var(--shadow-green-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white-90);
  border: 1px solid var(--border-dark);
}

.btn-outline:hover {
  border-color: var(--text-white-50);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-card);
}

.btn-outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 14px 36px;
  font-size: var(--fs-base);
}


/* ── Scroll Animations ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-in.vis {
  opacity: 1;
  transform: translateY(0);
}

.fd1 {
  transition-delay: 80ms;
}

.fd2 {
  transition-delay: 160ms;
}

.fd3 {
  transition-delay: 240ms;
}

.fd4 {
  transition-delay: 320ms;
}

.fd5 {
  transition-delay: 400ms;
}


/* ══════════════════════════════════════════════════════════════
   NAVBAR (DoubleTick-style: dark transparent → adapts on scroll)
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--dur) ease, border-color var(--dur) ease, box-shadow var(--dur) ease;
}

.navbar.scrolled {
  background: rgba(2, 26, 14, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-brand svg {
  width: 28px;
  height: 28px;
}

.brand-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-white-70);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 150ms ease, background 150ms ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions .btn {
  font-size: var(--fs-sm);
  padding: 9px 22px;
}

.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: var(--radius-sm);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 26, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text-white-90);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════
   HERO (DoubleTick-style: Dark emerald with flare orbs)
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg-hero-gradient);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Smooth animated flare orbs */
.hero-flares {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.flare-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  top: -15%;
  right: 5%;
  animation: flareMove1 14s ease-in-out infinite;
}

.flare-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--flare-purple) 0%, transparent 70%);
  bottom: 5%;
  left: -8%;
  animation: flareMove2 16s ease-in-out infinite;
}

.flare-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--flare-cyan) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation: flareMove3 12s ease-in-out infinite;
}

.flare-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--flare-emerald) 0%, transparent 70%);
  top: 10%;
  left: 15%;
  animation: flareMove4 18s ease-in-out infinite;
}

@keyframes flareMove1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-40px, 30px) scale(1.1);
  }

  50% {
    transform: translate(20px, -20px) scale(0.95);
  }

  75% {
    transform: translate(-20px, -10px) scale(1.05);
  }
}

@keyframes flareMove2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -30px) scale(1.12);
  }

  66% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

@keyframes flareMove3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, 25px) scale(1.15);
  }
}

@keyframes flareMove4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(30px, -40px) scale(1.08);
  }

  80% {
    transform: translate(-20px, 20px) scale(0.96);
  }
}

/* Circuit-style decorative lines */
.hero-circuits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(37, 211, 102, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 211, 102, 0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.hero-partner-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow-strong);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-partner-badge span {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-white-70);
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: var(--fs-md);
  color: var(--text-white-50);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Feature tabs & Showcase Frame (DoubleTick Style) */
.hero-showcase {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(37, 211, 102, 0.12);
}

.hero-tabs {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: rgba(4, 39, 23, 0.95);
}

.hero-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-white-50);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  position: relative;
}

.hero-tab:last-child {
  border-right: none;
}

.hero-tab svg {
  width: 22px;
  height: 22px;
  opacity: 0.5;
  transition: all var(--dur) ease;
}

.hero-tab:hover {
  color: var(--text-white-90);
  background: rgba(255, 255, 255, 0.05);
}

.hero-tab:hover svg {
  opacity: 0.8;
  transform: translateY(-1px);
}

.hero-tab.active {
  color: var(--accent);
  background: rgba(37, 211, 102, 0.12);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.hero-tab.active svg {
  opacity: 1;
  color: var(--accent);
  transform: scale(1.05);
}

.showcase-window {
  background: #042717;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.showcase-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(4, 39, 23, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.showcase-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 8px;
  letter-spacing: 0.02em;
}

.showcase-body {
  position: relative;
  width: 100%;
  background: #042717;
  overflow: hidden;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-view {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
}

.showcase-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.showcase-view img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 3rem 0;
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.trust-bar .container {
  text-align: center;
}

.trust-label {
  font-size: var(--fs-sm);
  color: var(--text-white-30);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.35;
}

.trust-logos:hover {
  opacity: 0.55;
}

.trust-logo {
  font-size: var(--fs-md);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}

.trust-logo svg {
  width: 22px;
  height: 22px;
}


/* ══════════════════════════════════════════════════════════════
   FEATURES (Light section with dark bordered cards)
   ══════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--flare-cyan-solid));
  opacity: 0;
  transition: opacity var(--dur) ease;
}

.feature-card:hover {
  border-color: rgba(37, 211, 102, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.fi-green {
  background: rgba(37, 211, 102, 0.1);
  color: var(--accent);
}

.fi-purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--flare-purple-solid);
}

.fi-cyan {
  background: rgba(56, 189, 248, 0.1);
  color: var(--flare-cyan-solid);
}

.fi-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.fi-rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}

.fi-indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.feature-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS (Dark section)
   ══════════════════════════════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--flare-cyan-solid), var(--flare-purple-solid));
  opacity: 0.25;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step:nth-child(1) .step-num {
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

.step:nth-child(2) .step-num {
  background: var(--flare-cyan-solid);
  box-shadow: 0 0 24px var(--flare-cyan);
}

.step:nth-child(3) .step-num {
  background: var(--flare-purple-solid);
  box-shadow: 0 0 24px var(--flare-purple);
}

.step h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: var(--fs-sm);
  color: var(--text-white-50);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   PRICING (WhatChimp-style with monthly/yearly toggle + 3 tiers)
   ══════════════════════════════════════════════════════════════ */
.pricing {
  background: var(--bg-dark-2);
  position: relative;
  overflow: hidden;
}

.pricing-flare {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

/* Toggle */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 3rem;
  position: relative;
}

.toggle-option {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-white-50);
  transition: all var(--dur) ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.toggle-option.active {
  color: #fff;
  background: var(--accent);
  box-shadow: var(--shadow-green);
}

.toggle-save {
  font-size: 10px;
  font-weight: 700;
  background: rgba(37, 211, 102, 0.2);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  transition: all var(--dur) ease;
}

.toggle-option.active .toggle-save {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
  border-color: var(--accent);
  background: rgba(37, 211, 102, 0.05);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.1);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-card-name {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-white-90);
  margin-bottom: 0.5rem;
}

.pricing-card-desc {
  font-size: var(--fs-sm);
  color: var(--text-white-50);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: var(--fs-sm);
  color: var(--text-white-50);
}

.price-billed {
  font-size: var(--fs-xs);
  color: var(--text-white-30);
  margin-bottom: 2rem;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 2rem;
}

.pricing-features {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--text-white-70);
  padding: 0.5rem 0;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.pricing-features li.disabled {
  color: var(--text-white-30);
}

.pricing-features li.disabled svg {
  color: var(--text-white-30);
}

/* Pricing comparison badge */
.pricing-compare-note {
  margin-top: 2.5rem;
  text-align: center;
}

.pricing-compare-note p {
  font-size: var(--fs-sm);
  color: var(--text-white-50);
}

.pricing-compare-note strong {
  color: var(--accent);
  font-weight: 700;
}


/* ══════════════════════════════════════════════════════════════
   INTEGRATIONS
   ══════════════════════════════════════════════════════════════ */
.int-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.int-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
}

.int-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.int-item svg {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}

.int-item:hover svg {
  opacity: 1;
}

.int-item span {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS (Dark section)
   ══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #f59e0b;
}

.t-stars svg {
  width: 16px;
  height: 16px;
}

.t-quote {
  font-size: var(--fs-sm);
  color: var(--text-white-70);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-xs);
  color: #fff;
}

.t-av-g {
  background: var(--accent);
}

.t-av-p {
  background: var(--flare-purple-solid);
}

.t-av-c {
  background: var(--flare-cyan-solid);
}

.t-info h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-white-90);
}

.t-info p {
  font-size: var(--fs-xs);
  color: var(--text-white-50);
}


/* ══════════════════════════════════════════════════════════════
   FAQ (DoubleTick-style accordion card expand)
   ══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid var(--border-card);
  border-radius: 4px;
  margin-bottom: 1.25rem;
  background: var(--bg-card);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.faq-item:hover {
  border-color: #0d8a4e;
}

.faq-item:not(.open) .faq-q:hover {
  background: rgba(37, 211, 102, 0.035);
  color: #0d8a4e;
}

.faq-item.open {
  border-color: var(--border-card);
  background: #f6f5f0;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  background: #ffffff;
  transition: color var(--dur) ease, background var(--dur) ease;
}

.faq-item.open .faq-q {
  color: #0d8a4e;
  background: #ffffff;
  border-bottom: 1px solid #e2dfd7;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.35rem;
  font-weight: 300;
  transition: transform var(--dur) var(--ease), color var(--dur) ease;
}

.faq-icon-minus {
  display: none;
}

.faq-item.open .faq-icon-plus {
  display: none;
}

.faq-item.open .faq-icon-minus {
  display: block;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms var(--ease);
  background: #f4f3ed;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 1.5rem 1.75rem;
}

.faq-a-card {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e2e0d8;
  padding: 1.4rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════
   FINAL CTA (Dark with flares)
   ══════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.cta-flare-1,
.cta-flare-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta-flare-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  top: -100px;
  left: -80px;
  animation: flareMove1 10s ease-in-out infinite;
}

.cta-flare-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--flare-purple) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  animation: flareMove2 12s ease-in-out infinite;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: var(--fs-md);
  color: var(--text-white-50);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}

.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: var(--fs-base);
  font-family: var(--font);
  outline: none;
  transition: border-color 150ms ease;
}

.cta-input::placeholder {
  color: var(--text-white-30);
}

.cta-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.cta-note {
  font-size: var(--fs-xs);
  color: var(--text-white-30);
}


/* ══════════════════════════════════════════════════════════════
   FOOTER (DoubleTick-style: light + structured)
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: var(--text-white-50);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .nav-brand {
  color: #fff;
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: var(--text-white-50);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white-50);
  background: rgba(255, 255, 255, 0.05);
  transition: all 150ms ease;
}

.footer-social a:hover {
  color: var(--accent);
  background: rgba(37, 211, 102, 0.1);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-white-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-white-50);
  padding: 5px 0;
  transition: color 150ms ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--text-white-30);
}

/* Parent-company link in the copyright line. The global `a` rule is
   color:inherit + no underline, so without this the link is invisible. */
.footer-bottom p a {
  color: var(--text-white-50);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  transition: color .18s ease, text-decoration-color .18s ease;
}

.footer-bottom p a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--text-white-30);
}

.footer-links a:hover {
  color: var(--accent);
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --fs-hero: 2.75rem;
    --fs-3xl: 2rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

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

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

  .pricing-cards .pricing-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .int-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-tabs {
    flex-wrap: wrap;
  }

  .hero-tab {
    flex: 0 0 33.33%;
    border-bottom: 1px solid var(--border-dark);
  }
}

@media (max-width: 768px) {
  :root {
    --fs-hero: 2.25rem;
    --fs-3xl: 1.75rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
  }

  .features-grid,
  .pricing-cards,
  .testimonials-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .pricing-cards .pricing-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

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

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

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

  .hero-tabs {
    display: none;
  }

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

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

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

  .cta-input {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-hero: 1.875rem;
  }

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

  .trust-logos {
    gap: 1.5rem;
  }
}

/* ── Reduced Motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}


/* ══════════════════════════════════════════════════════════════
   INNER PAGES (About Us & Contact Us)
   ══════════════════════════════════════════════════════════════ */
.active-link {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.inner-page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  min-height: auto;
}

.inner-page-hero .fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* Stat Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.stat-card {
  background: rgba(4, 39, 23, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all var(--dur) var(--ease);
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.25);
  background: #042717;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 15px var(--accent-glow-strong);
}

.stat-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}

.about-card:hover {
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-md);
}

.about-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-icon-box svg {
  width: 26px !important;
  height: 26px !important;
}

.about-card h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-card p {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Parent Company Section */
.company-banner {
  background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.08) 0%, rgba(2, 26, 14, 0.02) 100%), #ffffff;
  border: 1.5px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.company-content h2 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text-dark);
  margin: 1rem 0;
}

.company-content p {
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.company-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.c-tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(37, 211, 102, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 211, 102, 0.25);
}

/* Contact Page Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--dur) ease;
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.06);
}

.info-icon {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.info-icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.info-details p {
  font-size: var(--fs-sm);
  color: var(--text-white-50);
  line-height: 1.6;
}

.contact-link {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-top: 0.5rem;
  transition: transform var(--dur) ease;
}

.contact-link:hover {
  transform: translateX(3px);
}

.email-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--text-white-70);
}

/* Contact Form Card */
.contact-form-card {
  background: #042717;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-subtext {
  font-size: var(--fs-sm);
  color: var(--text-white-50);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-white-70);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: var(--fs-sm);
  outline: none;
  transition: all 150ms ease;
}

.form-control::placeholder {
  color: var(--text-white-30);
}

.form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 12px var(--accent-glow);
}

.form-select option {
  background: #042717;
  color: #ffffff;
}

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

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-top: 1rem;
}

.form-status.success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form-status.error {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid #f43f5e;
  color: #f43f5e;
}

/* Responsive inner pages */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .company-banner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}