/* ============================================
   Total Capture AI — Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Core Blues */
  --color-primary: #0f4c81;
  --color-primary-dark: #0a3560;
  --color-primary-light: #1a6bb5;
  --color-accent: #00b4d8;
  --color-accent-dark: #0096b7;

  /* Accent Palette */
  --color-violet: #7c3aed;
  --color-violet-light: #a78bfa;
  --color-amber: #f59e0b;
  --color-coral: #f43f5e;
  --color-emerald: #06d6a0;

  /* Dark Palette */
  --color-dark: #0b1120;
  --color-dark-surface: #111827;
  --color-dark-lighter: #1e293b;

  /* Neutrals */
  --color-white: #ffffff;
  --color-off-white: #f8fafc;
  --color-light-gray: #e2e8f0;
  --color-mid-gray: #64748b;
  --color-dark-gray: #1e293b;
  --color-text: #0f172a;
  --color-text-light: #475569;

  /* Status */
  --color-success: #06d6a0;
  --color-warning: #f59e0b;
  --color-danger: #f43f5e;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00b4d8, #7c3aed);
  --gradient-warm: linear-gradient(135deg, #f59e0b, #f43f5e);
  --gradient-cool: linear-gradient(135deg, #06d6a0, #00b4d8);
  --gradient-subtle: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(124,58,237,0.08));

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-glow-cyan: 0 4px 24px rgba(0, 180, 216, 0.25);
  --shadow-glow-violet: 0 4px 24px rgba(124, 58, 237, 0.25);
  --shadow-card-hover: 0 20px 50px rgba(15, 76, 129, 0.12), 0 8px 20px rgba(0,0,0,0.06);

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

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;
  --container-max: 1200px;
  --section-padding: 100px 0;
}


/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
}


/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-padding); position: relative; }
.section--alt {
  background: linear-gradient(180deg, var(--color-off-white) 0%, #f1f5f9 100%);
  position: relative;
}
.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-light-gray), transparent);
}


/* ---- Keyframes ---- */
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -25px) scale(1.02); }
  66% { transform: translate(-10px, 15px) scale(0.98); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  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; }


/* ---- Gradient Text Utility ---- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Inline Brand Mark ---- */
.brand-inline {
  font-weight: 900;
  font-size: 1.05em;
  white-space: nowrap;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-inline span {
  font-weight: 900;
}


/* ---- Header / Nav ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header--scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

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

.nav__logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.02em;
}
.nav__logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.3s ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a:hover,
.nav__links a.active { color: var(--color-text); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle svg { width: 28px; height: 28px; color: var(--color-text); }


/* ---- Hero ---- */
.hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(ellipse 700px 700px at 75% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 100%),
    radial-gradient(ellipse 500px 500px at 15% 80%, rgba(0, 180, 216, 0.12) 0%, transparent 100%),
    radial-gradient(ellipse 400px 400px at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 100%),
    linear-gradient(160deg, #0b1120 0%, #0f2847 35%, #1a0b3d 65%, #0b1120 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.4), rgba(124, 58, 237, 0.4), transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero__mockup {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.7);
}
.hero__badge strong {
  color: var(--color-accent);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.08;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00b4d8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 580px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  background-size: 200% 200%;
}
.btn--primary:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.35);
  background-position: 100% 50%;
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn--dark:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-light-gray);
}
.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}


/* ---- Stats Bar ---- */
.stats-bar {
  padding: 56px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), rgba(124, 58, 237, 0.3), transparent);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat__number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}


/* ---- Section Headers ---- */
.section__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.section__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.section__header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}


/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 180, 216, 0.15);
}
.card:hover::after { transform: scaleX(1); }

.card__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-white);
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.2);
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ---- Problem/Solution ---- */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.problem-solution__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 20px;
  font-weight: 800;
}
.problem-solution__content p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.problem-solution__visual {
  background: linear-gradient(145deg, var(--color-off-white), #f1f5f9);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  border: 1px solid var(--color-light-gray);
}


/* ---- Check List ---- */
.check-list { margin: 24px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.check-list li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--gradient-cool);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}


/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 100px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial__stars {
  color: var(--color-amber);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
  position: relative;
}
.testimonial__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.testimonial__author {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
}
.testimonial__role {
  font-size: 0.85rem;
  color: var(--color-mid-gray);
}


/* ---- CTA Section ---- */
.cta-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 600px 600px at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 100%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 100%),
    var(--color-dark);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(0, 180, 216, 0.3), transparent);
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 800;
}
.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-section .quirky-tagline {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  font-style: italic;
}


/* ---- Footer ---- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 30px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer__brand span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer__tagline {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  font-style: italic;
}
.footer h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul li { margin-bottom: 12px; }
.footer ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer ul li a:hover { color: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}


/* ---- Forms ---- */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--color-white);
  color: var(--color-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-mid-gray);
}


/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  position: relative;
}
.pricing-card--featured {
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: scale(1.03);
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 6px 22px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-glow-cyan);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.pricing-card__price {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 4px;
  letter-spacing: -0.02em;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--color-mid-gray);
}
.pricing-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(244, 63, 94, 0.1));
  color: var(--color-amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin: 8px 0 4px;
}
.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--color-mid-gray);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-card ul {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-off-white);
  font-size: 0.95rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li::before {
  content: '\2713';
  color: var(--color-emerald);
  font-weight: 700;
  font-size: 0.85rem;
}


/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 500px 500px at 80% 30%, rgba(124, 58, 237, 0.12) 0%, transparent 100%),
    radial-gradient(ellipse 400px 400px at 20% 70%, rgba(0, 180, 216, 0.08) 0%, transparent 100%),
    var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), rgba(124, 58, 237, 0.3), transparent);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 800;
  position: relative;
}
.page-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.7;
  position: relative;
}


/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.blog-card__img {
  height: 200px;
  background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(124, 58, 237, 0.2) 100%);
}
.blog-card__body { padding: 28px; }
.blog-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gradient-subtle);
  color: var(--color-violet);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.blog-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.35;
}
.blog-card__body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}


/* ---- Contact Grid ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info__item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-info__icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.contact-info__item:hover .contact-info__icon {
  transform: scale(1.05);
}
.contact-info__text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-info__text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}


/* ---- Proof/Data Points ---- */
.proof-grid {
  max-width: 720px;
  margin: 0 auto;
}
.proof-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: background 0.3s ease;
}
.proof-item:hover {
  background: var(--color-off-white);
}
.proof-item__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.proof-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ---- FAQ Section ---- */
.faq-item {
  border-bottom: 1px solid var(--color-light-gray);
  padding: 28px 16px;
  transition: background 0.3s ease;
  border-radius: var(--radius-sm);
}
.faq-item:hover {
  background: var(--color-off-white);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-text);
}
.faq-item p {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ---- Notification Cards (Problem Section) ---- */
.notification-card {
  padding: 16px 18px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.notification-card:hover {
  transform: translateX(4px);
}
.notification-card--danger { border-left-color: var(--color-coral); }
.notification-card--warning { border-left-color: var(--color-amber); }
.notification-card--muted { border-left-color: var(--color-mid-gray); }
.notification-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.notification-card--danger .notification-card__title { color: var(--color-coral); }
.notification-card--warning .notification-card__title { color: var(--color-amber); }
.notification-card--muted .notification-card__title { color: var(--color-mid-gray); }
.notification-card__desc {
  font-size: 0.8rem;
  color: var(--color-mid-gray);
}


/* ---- Trade Cards ---- */
.trade-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.trade-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: left;
}
.trade-card--hvac::after { background: var(--gradient-cool); }
.trade-card--plumbing::after { background: var(--gradient-primary); }
.trade-card--electrical::after { background: var(--gradient-warm); }
.trade-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.trade-card:hover::after { transform: scaleX(1); }


/* ---- Brand Strip ---- */
.brand-strip {
  background: var(--color-dark);
  position: relative;
  padding: 52px 0;
  text-align: center;
  overflow: hidden;
}
.brand-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 20% 50%, rgba(124, 58, 237, 0.15), transparent),
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(0, 180, 216, 0.12), transparent);
  pointer-events: none;
}
.brand-strip__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}
.brand-strip__text em {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-strip__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
}

/* ---- Dark Section Variant ---- */
.section--dark {
  padding: var(--section-padding);
  background:
    radial-gradient(ellipse 600px 500px at 70% 30%, rgba(124, 58, 237, 0.14) 0%, transparent 100%),
    radial-gradient(ellipse 500px 500px at 20% 70%, rgba(0, 180, 216, 0.1) 0%, transparent 100%),
    radial-gradient(ellipse 400px 300px at 90% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 100%),
    var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), rgba(124, 58, 237, 0.3), transparent);
}
.section--dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(0, 180, 216, 0.3), transparent);
}
.section--dark .section__header h2 { color: var(--color-white); }
.section--dark .section__header p { color: rgba(255,255,255,0.6); }
.section--dark .card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.section--dark .card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 180, 216, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 180, 216, 0.08);
}
.section--dark .card h3 { color: var(--color-white); }
.section--dark .card p { color: rgba(255, 255, 255, 0.6); }


/* ---- Colorful Testimonial Accents ---- */
.testimonial--cyan { border-left: 3px solid var(--color-accent); }
.testimonial--violet { border-left: 3px solid var(--color-violet); }
.testimonial--emerald { border-left: 3px solid var(--color-emerald); }

.testimonial--cyan::before { background: var(--gradient-cool); -webkit-background-clip: text; background-clip: text; opacity: 0.15; }
.testimonial--violet::before { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; opacity: 0.15; }
.testimonial--emerald::before { background: var(--gradient-cool); -webkit-background-clip: text; background-clip: text; opacity: 0.15; }

.testimonial--cyan:hover { box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 180, 216, 0.08); }
.testimonial--violet:hover { box-shadow: var(--shadow-lg), 0 0 30px rgba(124, 58, 237, 0.08); }
.testimonial--emerald:hover { box-shadow: var(--shadow-lg), 0 0 30px rgba(6, 214, 160, 0.08); }


/* ---- Gradient-Tinted Proof Section ---- */
.section--gradient-tint {
  padding: var(--section-padding);
  background:
    radial-gradient(ellipse 500px 400px at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(0, 180, 216, 0.05) 0%, transparent 100%),
    linear-gradient(180deg, var(--color-white) 0%, #f0f4ff 50%, var(--color-white) 100%);
  position: relative;
}

.proof-item--glow .proof-item__icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.25);
}
.proof-item--warm .proof-item__icon {
  background: var(--gradient-warm);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
}
.proof-item--cool .proof-item__icon {
  background: var(--gradient-cool);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(6, 214, 160, 0.25);
}
.proof-item--violet .proof-item__icon {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}


/* ---- Phone Mockup ---- */
.phone-mockup {
  width: 280px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}
.phone-mockup__notch {
  width: 100px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone-mockup__screen {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}
.phone-mockup__header {
  padding: 16px 16px 12px;
  background: rgba(0, 180, 216, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-mockup__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.phone-mockup__caller {
  flex: 1;
}
.phone-mockup__caller-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
}
.phone-mockup__caller-status {
  font-size: 0.68rem;
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-mockup__caller-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-emerald);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.phone-mockup__chat {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.5;
  animation: bubble-in 0.5s ease-out both;
  opacity: 0;
}
.chat-bubble--ai {
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble--customer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble:nth-child(1) { animation-delay: 0.8s; }
.chat-bubble:nth-child(2) { animation-delay: 2.5s; }
.chat-bubble:nth-child(3) { animation-delay: 4.5s; }
.chat-bubble:nth-child(4) { animation-delay: 6s; }
.chat-bubble:nth-child(5) { animation-delay: 8s; }
.chat-bubble:nth-child(6) { animation-delay: 10s; }
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.phone-mockup__booked {
  margin: 12px 16px 16px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.15), rgba(0, 180, 216, 0.1));
  opacity: 0;
  animation: bubble-in 0.5s ease-out both;
  animation-delay: 11.5s;
  border: 1px solid rgba(6, 214, 160, 0.25);
  border-radius: 12px;
  text-align: center;
}
.phone-mockup__booked-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-emerald);
  font-weight: 700;
  margin-bottom: 4px;
}
.phone-mockup__booked-detail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}


/* ---- Dashboard Mockup ---- */
.dashboard-mockup {
  max-width: 900px;
  margin: 0 auto;
  background: #1e293b;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.dashboard-mockup__chrome {
  padding: 12px 16px;
  background: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-mockup__dots {
  display: flex;
  gap: 6px;
}
.dashboard-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dashboard-mockup__dots span:nth-child(1) { background: #f43f5e; }
.dashboard-mockup__dots span:nth-child(2) { background: #f59e0b; }
.dashboard-mockup__dots span:nth-child(3) { background: #06d6a0; }
.dashboard-mockup__url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 8px;
}
.dashboard-mockup__body {
  padding: 24px;
}
.dashboard-mockup__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.dash-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}
.dash-stat__number {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.dash-stat__number--cyan { color: var(--color-accent); }
.dash-stat__number--emerald { color: var(--color-emerald); }
.dash-stat__number--amber { color: var(--color-amber); }
.dash-stat__number--violet { color: var(--color-violet-light); }
.dash-stat__label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dashboard-mockup__activity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dash-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 18px;
}
.dash-panel__title {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  font-weight: 600;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.dash-row:last-child { border-bottom: none; }
.dash-row__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.dash-row__value {
  font-size: 0.78rem;
  font-weight: 600;
}
.dash-row__value--emerald { color: var(--color-emerald); }
.dash-row__value--amber { color: var(--color-amber); }
.dash-row__value--cyan { color: var(--color-accent); }
.dash-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 8px;
  overflow: hidden;
}
.dash-bar__fill {
  height: 100%;
  border-radius: 3px;
}
.dash-bar__fill--cyan { background: var(--gradient-primary); width: 87%; }
.dash-bar__fill--emerald { background: var(--gradient-cool); width: 92%; }
.dash-bar__fill--amber { background: var(--gradient-warm); width: 68%; }
.dash-bar__fill--violet { background: linear-gradient(90deg, #7c3aed, #a78bfa); width: 75%; }


/* ---- Quirky Callout Box ---- */
.quirky-callout {
  background: var(--gradient-subtle);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  position: relative;
}
.quirky-callout strong {
  color: var(--color-text);
}


/* ---- Responsive ---- */
@media (max-width: 992px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .problem-solution { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__mockup { justify-content: center; }
  .dashboard-mockup__stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard-mockup__activity { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }
  .hero { padding: 80px 0 64px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-light-gray);
    box-shadow: var(--shadow-lg);
  }
  .nav__links.active { display: flex; }
  .nav__links a::after { display: none; }
  .nav__toggle { display: block; }

  .card-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section__header { margin-bottom: 48px; }

  .phone-mockup { width: 260px; }
  .phone-mockup__screen { min-height: 380px; }
  .dashboard-mockup__body { padding: 16px; }
  .dashboard-mockup__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dash-stat { padding: 14px 10px; }
  .dash-stat__number { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stat { padding: 12px 0; }

  .phone-mockup { width: 240px; }
  .chat-bubble { font-size: 0.72rem; }
  .dashboard-mockup__url { display: none; }
  .dash-row__label { font-size: 0.7rem; }
}
