/* File: /assets/styles.css */
/* Outfitry - Dark Professional Theme */
/* Minimal, Black, No Colors */

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
  /* Dark Theme Colors */
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --bg-hover: #1a1a1a;

  --text: #fafafa;
  --text-secondary: #a1a1a1;
  --text-muted: #6b6b6b;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* No accent colors - just white/gray */
  --accent: #ffffff;
  --accent-muted: #888888;

  /* Typography */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

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

  /* Layout */
  --container: 1100px;
  --container-narrow: 680px;
  --header-height: 60px;
}

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

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

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--accent);
  color: var(--bg);
  padding: var(--space-2) var(--space-4);
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 42px;
  font-weight: 600;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ specific headings */
.faq-category {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: var(--space-6) 0 var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  letter-spacing: -0.01em;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  color: var(--text-secondary);
  padding: var(--space-3) 0;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.faq-item.is-open .faq-item__question,
.faq-item__question:focus {
  color: var(--text);
}

.faq-item__answer p {
  color: var(--text-secondary);
  padding: var(--space-3) 0 var(--space-6) 0;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.15s;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  padding-left: var(--space-6);
}

li {
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

strong {
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }
}

/* ========================================
   Layout
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

main {
  padding-top: var(--header-height);
}

section {
  padding: var(--space-20) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-12) 0;
  }
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.header__logo:hover {
  opacity: 1;
}

.header__logo img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav>.btn {
  margin-top: 0;
  align-self: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  padding: 0;
  margin: 0;
}

.nav__link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  padding: var(--space-2) 0;
  display: flex;
  align-items: center;
  height: 36px;
}

.nav__link:hover {
  color: var(--text);
  opacity: 1;
}

.nav__link--active {
  color: var(--text);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--text);
  left: 0;
}

.nav__toggle span::before {
  top: -5px;
}

.nav__toggle span::after {
  top: 5px;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: block;
  }

  .nav__list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: var(--space-6);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    gap: 0;
  }

  .nav__list.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list li {
    margin: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__list li:last-child {
    border: none;
  }

  .nav__link {
    display: block;
    padding: var(--space-4) 0;
    font-size: 15px;
  }

  .nav .btn {
    display: none;
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text);
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 10px 0;
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(255, 193, 7, 0.15);
}

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

/* Feature Card */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(255, 193, 7, 0.2);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-color: transparent;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 10px 25px -8px rgba(255, 193, 7, 0.5);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon svg {
  transform: scale(1.1);
}

.feature-card__title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: var(--space-2);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-card__title {
  color: #fff;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-card__desc {
  color: var(--text-secondary);
}

/* Pricing Card */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(255, 193, 7, 0.2);
}

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

.pricing-card--featured {
  border-color: #ffc107;
  box-shadow: 0 0 30px -10px rgba(255, 193, 7, 0.3);
}

.pricing-card--featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
}

.pricing-card__badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.pricing-card__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.pricing-card__price {
  font-size: 40px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
}

.pricing-card__period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  text-align: left;
}

.pricing-card__features li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card__features li:last-child {
  border: none;
}

/* ========================================
   Grid
   ======================================== */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

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

@media (max-width: 900px) {

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

@media (max-width: 600px) {

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Hero
   ======================================== */
.hero {
  min-height: calc(100vh - var(--header-height));
  padding: var(--space-12) 0;
  background: var(--bg);
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
}

.hero__content {
  max-width: 480px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.hero__title {
  font-size: 48px;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Dashboard Preview */
.preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
}

.preview__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.preview__dots {
  display: flex;
  gap: 6px;
}

.preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
}

.preview__title {
  font-size: 12px;
  color: var(--text-muted);
}

.preview__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.stat {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.stat__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.stat__value {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-mono);
}

.preview__section {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.preview__section-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.preview__chips {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.chip {
  padding: 4px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__visual {
    display: none;
  }
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__title {
  margin-bottom: var(--space-3);
}

.section-header__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ========================================
   Steps (How It Works)
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.step {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: var(--bg-card);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(255, 193, 7, 0.2);
}

.step:hover::before {
  opacity: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-mono);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step:hover .step__number {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-color: transparent;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 10px 25px -8px rgba(255, 193, 7, 0.5);
}

.step__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: var(--space-2);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.step:hover .step__title {
  color: #fff;
}

.step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.step:hover .step__desc {
  color: var(--text-secondary);
}

/* Connecting Lines Between Steps */
.steps::after {
  display: none;
  /* Can be enabled for a connecting line effect */
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .step {
    padding: var(--space-5);
  }

  .step:hover {
    transform: none;
  }
}

/* ========================================
   Accordion Table
   ======================================== */
.accordion-table {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.accordion-table__wrapper {
  overflow-x: auto;
}

.accordion-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.accordion-table thead tr {
  background: var(--bg-hover);
}

.accordion-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.accordion-table th.text-right {
  text-align: right;
}

.accordion-table th.toggle-col {
  width: 48px;
  padding: 12px 8px;
}

.accordion-table tbody tr {
  transition: background 0.15s;
}

.accordion-table tbody tr:hover {
  background: var(--bg-hover);
}

.accordion-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.accordion-table td.text-right {
  text-align: right;
}

.accordion-table td.name-cell {
  color: var(--text);
  font-weight: 500;
}

.accordion-table td.value-cell {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text);
}

.accordion-table td.id-cell {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 13px;
}

.accordion-table__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s;
}

.accordion-table__toggle:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.accordion-table__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.accordion-table__toggle.is-open svg {
  transform: rotate(90deg);
}

.accordion-table__toggle:disabled {
  opacity: 0.3;
  cursor: default;
}

.accordion-table__children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  opacity: 0;
  background: var(--bg);
}

.accordion-table__children.is-open {
  max-height: 1000px;
  opacity: 1;
}

.accordion-table__children th {
  font-size: 10px;
  padding: 8px 16px;
  border-top: 1px solid var(--border);
}

.accordion-table__children td {
  font-size: 13px;
  padding: 10px 16px;
}

.accordion-table__children .indent-cell {
  width: 48px;
  padding: 10px 8px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-category {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: var(--space-8) 0 var(--space-4) 0;
  padding-top: var(--space-4);
  border-top: 2px solid var(--primary);
}

.faq-category:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

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

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
}

.faq-item__question:hover {
  color: var(--text-secondary);
}

.faq-item__icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding-bottom: var(--space-5);
  font-size: 14px;
  color: var(--text-muted);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-16) 0;
  text-align: center;
}

.cta-section__title {
  margin-bottom: var(--space-3);
}

.cta-section__text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg);
  padding: var(--space-20) 0 var(--space-8);
  border-top: 1px solid var(--border);
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-4);
}

.footer__logo:hover {
  opacity: 1;
}

.footer__logo img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
}

.footer__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* Social Links */
.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: all 0.15s;
}

.footer__social-link:hover {
  border-color: var(--text-muted);
  color: var(--text);
  opacity: 1;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Sections Grid */
.footer__sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.footer__section {}

.footer__heading {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-5);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: var(--space-3);
}

.footer__list a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.15s;
}

.footer__list a:hover {
  color: var(--text);
  opacity: 1;
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--text);
  opacity: 1;
}

@media (max-width: 1000px) {
  .footer__main {
    flex-direction: column;
    gap: var(--space-10);
  }

  .footer__brand {
    max-width: 100%;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ========================================
   Blog
   ======================================== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.blog-card:hover {
  border-color: var(--border-strong);
}

.blog-card__image {
  height: 140px;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.blog-card__image svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.blog-card__content {
  padding: var(--space-5);
}

.blog-card__meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.blog-card__title {
  font-size: 16px;
  margin-bottom: var(--space-2);
}

.blog-card__title a {
  color: var(--text);
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

/* Article */
.article {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
}

.article__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.article__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.article__title {
  font-size: 32px;
  margin-bottom: var(--space-4);
}

.article__intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.article__content h2 {
  font-size: 22px;
  margin: var(--space-10) 0 var(--space-4);
}

.article__content p {
  margin-bottom: var(--space-4);
}

.article__content ul,
.article__content ol {
  margin-bottom: var(--space-4);
}

.quick-answer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.quick-answer__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.quick-answer__text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.key-facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.key-facts__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.key-facts__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-facts__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.key-facts__icon {
  font-size: 14px;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
}

.legal h1 {
  font-size: 32px;
  margin-bottom: var(--space-2);
}

.legal__date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-10);
}

.legal h2 {
  font-size: 20px;
  margin: var(--space-10) 0 var(--space-4);
}

.legal p {
  margin-bottom: var(--space-4);
}

.legal ul {
  margin-bottom: var(--space-4);
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb__sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb__current {
  color: var(--text-secondary);
}

/* ========================================
   Contact
   ======================================== */
.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}

.contact-info__title {
  font-size: 18px;
  margin-bottom: var(--space-3);
}

.contact-info__email {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}

/* ========================================
   Utilities
   ======================================== */
.text-center {
  text-align: center;
}

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

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

/* Table */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-hover);
}

.table__check {
  color: var(--text);
  font-weight: 500;
}

.table__x {
  color: var(--text-muted);
}

/* ========================================

   GEO - Generative Engine Optimization
   ======================================== */

/* GEO Summary - AI engines extract this content */
.geo-summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-muted);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
  max-width: 800px;
}

.geo-summary::before {
  content: "Quick Answer";
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

/* Hero section specific geo-summary */
.hero__content .geo-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  margin-top: var(--space-4);
}

/* Section header specific geo-summary */
.section-header .geo-summary {
  margin: var(--space-4) auto var(--space-6);
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .geo-summary {
    font-size: 14px;
    padding: var(--space-4) var(--space-5);
  }
}


/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.testimonials__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.testimonials__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.testimonials__subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Columns Container */
.testimonials__columns {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  max-height: 700px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.testimonials__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  animation: scroll-up 20s linear infinite;
}

.testimonials__column:nth-child(2) {
  animation-duration: 25s;
}

.testimonials__column:nth-child(3) {
  animation-duration: 22s;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Testimonial Card */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  max-width: 300px;
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: var(--border-strong);
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials__columns {
    gap: var(--space-4);
  }

  .testimonials__column:nth-child(3) {
    display: none;
  }
}

@media (max-width: 600px) {
  .testimonials__column:nth-child(2) {
    display: none;
  }

  .testimonial-card {
    max-width: 280px;

  }
}

/* ========================================
   Enhanced Hero Section
   ======================================== */

/* Animated Background Glows */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  top: -200px;
  right: -100px;
  animation: float-glow 8s ease-in-out infinite;
}

.hero__glow--2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ffb300 0%, #ff6f00 100%);
  bottom: -150px;
  left: -100px;
  animation: float-glow 10s ease-in-out infinite reverse;
}

@keyframes float-glow {

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

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

/* Badge with Pulse Animation */
.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge__pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.badge__pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.4;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

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

/* Glowing CTA Button */
.btn--glow {
  position: relative;
  overflow: hidden;
}

.btn--glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #ffc107, #ff9800, #ffb300, #ff6f00);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  animation: gradient-rotate 3s linear infinite;
  background-size: 200% 200%;
}

.btn--glow:hover::before {
  opacity: 0.6;
}

@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hero Stats */
.hero__stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual (Phone Image) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__phone-wrapper {
  position: relative;
  z-index: 2;
}

.hero__phone-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Responsive for new Hero */
@media (max-width: 900px) {
  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero__stats {
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .hero__stat {
    flex: 1 1 30%;
    text-align: center;
  }

  .hero__glow {
    opacity: 0.1;
  }
}

/* ========================================
   Contact Form Styles
   ======================================== */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.contact-form__title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-3);
  color: var(--text);
}

.contact-form__subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  font-size: 15px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.form-label__icon {
  font-size: 16px;
}

.form-label__optional {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-form__submit {
  width: 100%;
  margin-top: var(--space-4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.btn__loading {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.form-message {
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  margin-top: var(--space-6);
}

.form-message h3 {
  font-size: 20px;
  margin-bottom: var(--space-2);
}

.form-message p {
  color: var(--text-secondary);
  font-size: 14px;
}

.form-message__icon {
  font-size: 48px;
  display: block;
  margin-bottom: var(--space-4);
}

.form-message--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message--success h3 {
  color: #22c55e;
}

.form-message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message--error h3 {
  color: #ef4444;
}

.form-message--error a {
  color: #ef4444;
  text-decoration: underline;
}

.contact-info {
  text-align: center;
  padding: var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-info__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.contact-info__email {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #ffc107;
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.contact-info__email:hover {
  background: rgba(255, 193, 7, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .contact-form {
    padding: var(--space-6);
  }

  .contact-form__title {
    font-size: 24px;
  }

  .form-input {
    padding: 10px 14px;
  }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-20) 0;
  text-align: center;
}

.cta-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text);
}

.cta-section__text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cta-section__title {
    font-size: 28px;
  }
  .cta-section__text {
    font-size: 16px;
  }
  .cta-section__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
