/* /angi-alternative page styles — builds on theme.css variables */

/* — NAV ADDITIONS — */
.nav-logo { text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--fg); }
.nav-link--active { color: var(--accent); font-weight: 600; }
.nav-cta-btn {
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--accent);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-cta-btn:hover { background: var(--accent-light); }

/* — SHARED CONTAINER — */
.aa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.aa-section-title {
  text-align: left;
  margin: 0 0 8px 0;
}

/* — HERO — */
.aa-hero {
  padding: 140px 32px 100px;
  background: var(--bg);
}

.aa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(27, 77, 62, 0.08);
  border: 1px solid rgba(27, 77, 62, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.aa-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 820px;
}

.aa-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.aa-hero-cta-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.aa-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.aa-btn-primary:hover { background: var(--accent-light); }

.aa-btn-secondary {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.aa-btn-secondary:hover { color: var(--fg); border-color: var(--fg-muted); }

/* — CALLOUT BAND — */
.aa-callout-band {
  padding: 80px 32px;
  background: #1A1A1A;
  color: white;
}

.aa-callout-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.aa-callout-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
  max-width: 700px;
}

.aa-callout-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 48px;
}

.aa-burned-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}

.aa-burned-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px;
}

.aa-burned-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 146, 10, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.aa-burned-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.aa-burned-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.aa-callout-source {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* — COMPARISON TABLE — */
.aa-comparison {
  padding: 100px 32px;
  background: var(--bg-alt);
}

.aa-comparison-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 12px;
  margin-bottom: 48px;
}

.aa-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.aa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 680px;
}

.aa-table thead tr {
  background: var(--fg);
}

.aa-table th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.aa-table th:last-child { border-right: none; }

.aa-th-feature { color: rgba(255,255,255,0.4); }
.aa-th-leadlocal { color: var(--gold-light) !important; }

.aa-th-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aa-th-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
}

.aa-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.aa-table tbody tr:last-child { border-bottom: none; }
.aa-table tbody tr:hover { background: rgba(27, 77, 62, 0.03); }

.aa-table td {
  padding: 20px 24px;
  color: var(--fg-muted);
  vertical-align: top;
  border-right: 1px solid var(--border);
}

.aa-table td:last-child { border-right: none; }

.aa-td-feature {
  color: var(--fg) !important;
}

.aa-td-feature strong {
  display: block;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3px;
  font-size: 14px;
}

.aa-td-feature span {
  font-size: 12px;
  color: var(--fg-muted);
}

.aa-td-leadlocal {
  background: rgba(27, 77, 62, 0.04);
  font-weight: 600;
  color: var(--accent) !important;
}

.aa-check { color: #16A34A; font-weight: 700; }
.aa-x { color: #DC2626; font-weight: 700; }
.aa-highlight { color: var(--accent); font-weight: 600; }

/* — DIFFERENTIATOR CARDS — */
.aa-diff {
  padding: 100px 32px;
  background: var(--bg);
}

.aa-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.aa-diff-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 44px 36px;
  transition: background 0.2s ease;
}

.aa-diff-card:hover { background: white; }

.aa-diff-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.aa-diff-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 24px;
}

.aa-diff-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.aa-diff-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.aa-diff-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aa-diff-bullets li {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  padding-left: 18px;
  position: relative;
}

.aa-diff-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* — FORM SECTION — */
.aa-form-section {
  padding: 100px 32px;
  background: var(--bg-alt);
}

.aa-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.aa-form-header {
  margin-bottom: 40px;
}

/* vertical dropdown inherits form-group styles */
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C5C5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

/* — RESPONSIVE — */
@media (max-width: 900px) {
  .aa-diff-grid { grid-template-columns: 1fr; }
  .aa-burned-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .aa-hero { padding: 120px 24px 80px; }
  .aa-hero-headline { font-size: clamp(28px, 8vw, 40px); }
  .aa-callout-band { padding: 60px 24px; }
  .aa-comparison { padding: 60px 24px; }
  .aa-diff { padding: 60px 24px; }
  .aa-form-section { padding: 60px 24px; }
  .aa-container { padding: 0 24px; }
  .nav-tagline { display: none; }
  .nav-links { gap: 12px; }
}

@media (max-width: 480px) {
  .aa-hero-cta-wrap { flex-direction: column; align-items: flex-start; }
  .aa-btn-primary { width: 100%; text-align: center; }
}
