/*
Theme Name: Watchtower Theme
Theme URI: https://watchtowerlocal.com
Description: A custom minimalist theme for Watchtower, matching the branding of the GBP Tracker app.
Author: Google Deepmind
Author URI: https://deepmind.google
Version: 2.0.0
Text Domain: watchtower-theme
*/

:root {
  /* Colors */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;

  --emerald-500: #10b981;
  --emerald-600: #059669;
  --red-500: #ef4444;

  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --red-100: #fee2e2;
  --red-600: #dc2626;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;

  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --white: #ffffff;

  /* Semantic */
  --primary: var(--blue-600);
  --primary-hover: var(--blue-700);
  --background: var(--white);
  --background-alt: var(--gray-50);
  --foreground: var(--gray-900);
  --foreground-muted: var(--gray-500);
  --border-color: var(--gray-200);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}


/* ==============================
   RESET & BASE
   ============================== */

html,
body {
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ==============================
   UTILITIES
   ============================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.responsive-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.responsive-split.align-start {
  align-items: start;
}

@media (max-width: 768px) {
  .responsive-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ==============================
   TYPOGRAPHY
   ============================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--foreground);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 0;
  margin-bottom: 0.75em;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--foreground-muted);
}


/* ==============================
   BUTTONS
   ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: white;
  border-color: var(--gray-200);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}


/* ==============================
   HEADER
   ============================== */

.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
  color: var(--foreground);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
  transition: color 0.2s;
}

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

.mobile-menu-toggle.active {
  color: var(--primary);
}

/* Header Navigation Wrapper */
.header-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground-muted);
}

.main-navigation a:hover {
  color: var(--primary);
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    z-index: 101;
  }

  .header-nav-wrapper {
    position: fixed;
    top: var(--header-height);
    right: 0;
    transform: translateX(100%);
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    visibility: hidden;
  }

  .header-nav-wrapper.active {
    transform: translateX(0);
    visibility: visible;
  }

  .main-navigation {
    width: 100%;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .main-navigation li {
    width: 100%;
  }

  .main-navigation a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .header-login-btn {
    width: 100%;
    text-align: center;
  }

  .site-title-text {
    font-size: 1.1rem !important;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .main-navigation ul {
    gap: 1.5rem;
  }

  .main-navigation a {
    font-size: 0.9rem;
  }

  .header-nav-wrapper {
    gap: 1.5rem;
  }
}


/* ==============================
   HERO SECTION
   ============================== */

.wt-hero {
  background: linear-gradient(to bottom right, var(--slate-900) 0%, var(--slate-800) 50%, var(--slate-900) 100%);
  position: relative;
  padding: 3.5rem 0 3rem;
  color: white;
  text-align: center;
  overflow: hidden;
}

.wt-hero__bg-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(96px);
  opacity: 0.12;
  pointer-events: none;
}

.wt-hero__bg-glow--right {
  top: 0;
  right: 0;
  background: var(--blue-500);
}

.wt-hero__bg-glow--left {
  bottom: 0;
  left: 0;
  background: #6366f1;
}

.wt-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.wt-hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wt-hero__logo-card {
  background: var(--blue-500);
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.wt-hero__logo-img {
  height: 3.5rem;
  width: 3.5rem;
  display: block;
  filter: brightness(0) invert(1);
}

.wt-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: white;
  text-align: left;
}

.wt-hero__tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Benefit bullets */
.wt-hero__benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  max-width: 580px;
  text-align: left;
}

.wt-hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.35rem 0;
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.wt-hero__benefits li strong {
  color: white;
}

.wt-hero__benefit-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA Buttons */
.wt-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wt-hero__btn {
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Google-branded primary button */
.wt-hero__btn--google {
  background: white;
  color: #1a1a2e;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.wt-hero__btn--google:hover {
  background: #f0f0f0;
  color: #1a1a2e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.wt-hero__google-icon {
  flex-shrink: 0;
}

.wt-hero__btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wt-hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-1px);
}

/* Trust line */
.wt-hero__trust {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .wt-hero {
    padding: 4rem 0 3rem;
  }

  .wt-hero__brand {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .wt-hero__logo-card {
    padding: 0.5rem;
    border-radius: 8px;
  }

  .wt-hero__logo-img {
    height: 3.5rem;
    width: 3.5rem;
  }

  .wt-hero__title {
    font-size: 2.25rem;
  }

  .wt-hero__tagline {
    font-size: 1.2rem;
  }

  .wt-hero__benefits li {
    font-size: 0.95rem;
  }

  .wt-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .wt-hero__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}


/* ==============================
   FEATURE CARDS
   ============================== */

.wt-features {
  padding: 6rem 0;
  background: var(--background);
}

.wt-features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.wt-features__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.wt-features__header p {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  margin: 0;
}

.wt-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wt-feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.wt-feature-card:hover {
  background: white;
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.wt-feature-card__icon--red {
  background: var(--red-100);
  color: var(--red-600);
}

.wt-feature-card__icon--amber {
  background: var(--amber-100);
  color: var(--amber-600);
}

.wt-feature-card__icon--blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.wt-feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.wt-feature-card__desc {
  color: var(--foreground-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .wt-features {
    padding: 4rem 0;
  }

  .wt-features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ==============================
   DASHBOARD PREVIEW
   ============================== */

.wt-preview {
  padding: 6rem 0;
  background: var(--gray-50);
}

.wt-preview__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.wt-preview__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.wt-preview__header p {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  margin: 0;
}

.wt-preview__tabs {
  text-align: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.wt-preview__tab-bar {
  display: inline-flex;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.wt-preview__tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
  color: var(--foreground-muted);
  white-space: nowrap;
}

.wt-preview__tab-btn:hover {
  background: var(--gray-100);
  color: var(--foreground);
}

.wt-preview__tab-btn.active {
  background: var(--blue-500) !important;
  color: white !important;
  font-weight: 700;
}

.wt-preview__content {
  max-width: 1000px;
  margin: 0 auto;
}

.wt-preview__pane {
  display: none;
  animation: wtFadeIn 0.4s ease;
}

.wt-preview__pane.active {
  display: block;
}

.wt-preview__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

@keyframes wtFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 768px) {
  .wt-preview {
    padding: 4rem 0;
  }

  .wt-preview__tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}


/* ==============================
   HOW IT WORKS
   ============================== */

.wt-how {
  padding: 6rem 0;
  background: var(--background);
  text-align: center;
}

.wt-how__header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.wt-how__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.wt-how__header p {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  margin: 0;
}

.wt-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.wt-how__step {
  position: relative;
  padding: 0 0.5rem;
}

/* Icon card above the step number */
.wt-how__step-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.wt-how__step-icon--white {
  background: white;
  border: 1px solid var(--gray-200);
}

.wt-how__step-icon--blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.wt-how__step-icon--emerald {
  background: #d1fae5;
  color: var(--emerald-600);
}

.wt-how__step-icon--amber {
  background: var(--amber-100);
  color: var(--amber-600);
}

.wt-how__step-num {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

/* Connector line between steps */
.wt-how__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 2px;
  background: var(--gray-200);
  z-index: 1;
}

.wt-how__step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wt-how__step p {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 968px) {
  .wt-how__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Hide connector on 2-column */
  .wt-how__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .wt-how {
    padding: 4rem 0;
  }

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


/* ==============================
   COMPARISON TABLE
   ============================== */

.wt-comparison {
  padding: 6rem 0;
  background: var(--gray-50);
  text-align: center;
}

.wt-comparison__header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.wt-comparison__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comparison-table-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th,
.comp-table td {
  padding: 1.25rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.comp-table th {
  background: var(--gray-50);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  font-weight: 600;
}

.comp-table th.brand-col {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 800;
  border-bottom: 2px solid var(--blue-200);
}

.comp-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  width: 40%;
}

.comp-table td.brand-col {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 600;
}

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

.wt-comparison__cta {
  margin-top: 3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .wt-comparison {
    padding: 4rem 0;
  }

  .comp-table th,
  .comp-table td {
    padding: 1rem;
    font-size: 0.85rem;
  }
}


/* ==============================
   FINAL CTA
   ============================== */

.wt-cta {
  padding: 6rem 0;
  text-align: center;
  background: var(--slate-900);
  color: white;
}

.wt-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.wt-cta__btn {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
  .wt-cta {
    padding: 4rem 0;
  }

  .wt-cta h2 {
    font-size: 1.75rem;
  }
}


/* ==============================
   FOOTER
   ============================== */

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: auto;
  background: var(--gray-50);
}

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

.footer-column h4 {
  color: var(--foreground);
}

.footer-column a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--blue-600);
}

.footer-bottom {
  font-size: 0.875rem;
}

.footer-bottom a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--blue-600);
}

@media (max-width: 640px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

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

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


/* ==============================
   PRICING PAGE
   ============================== */

.pricing-header-section {
  padding: 6rem 0 4rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--blue-50) 0%, transparent 60%);
}

.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: -3rem auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
  z-index: 2;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.plan-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground-muted);
}

.plan-desc {
  color: var(--foreground-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.plan-features {
  margin: 2rem 0;
  list-style: none;
  padding: 0;
  text-align: left;
}

.plan-features li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.plan-features li svg {
  color: var(--emerald-500);
  flex-shrink: 0;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Add-on Card */
.pricing-card.addon {
  background: var(--blue-50);
  border: 2px dashed var(--blue-200);
  box-shadow: none;
}

.pricing-card.addon .plan-name {
  color: var(--blue-700);
}

.pricing-card.addon:hover {
  transform: translateY(-3px);
  border-color: var(--blue-400);
}


/* ==============================
   FAQ
   ============================== */

.faq-section {
  padding: 6rem 0;
  background: var(--background);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--foreground-muted);
}