/* ============================================
   EndHigher LLC — Premium Credit Repair
   Design: Deep Navy + Gold, Luxury Fintech
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== TOKENS ===== */
:root,
[data-theme='dark'] {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Navy-Gold palette */
  --color-bg: #0b0e1a;
  --color-surface: #0f1220;
  --color-surface-2: #141828;
  --color-surface-offset: #1a1f30;
  --color-border: #252a3e;
  --color-text: #e8e6e0;
  --color-text-muted: #8a8a9a;
  --color-text-faint: #4a4d5e;
  --color-text-inverse: #0b0e1a;

  --color-gold: #c9a227;
  --color-gold-light: #f0c842;
  --color-gold-hover: #e8b930;
  --color-gold-muted: rgba(201, 162, 39, 0.15);
  --color-gold-border: rgba(201, 162, 39, 0.3);

  --color-navy: #0b1e4a;
  --color-navy-mid: #0d2560;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.5rem, 1rem + 5vw, 5rem);

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  --content-default: 1100px;
  --content-narrow: 720px;
}

[data-theme='light'] {
  --color-bg: #f5f4f0;
  --color-surface: #ffffff;
  --color-surface-2: #f9f8f4;
  --color-surface-offset: #eeeae2;
  --color-border: #ddd9d0;
  --color-text: #1a1a2e;
  --color-text-muted: #5a5a6e;
  --color-text-faint: #9a9aaa;
  --color-text-inverse: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  transition: background-color 0.3s, color 0.3s;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }

::selection { background: var(--color-gold-muted); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== LAYOUT ===== */
.container {
  width: min(var(--content-default), 100% - var(--space-8));
  margin-inline: auto;
}
.section-pad { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }

/* ===== TYPOGRAPHY ===== */
.gold-text {
  background: linear-gradient(135deg, #f0c842 0%, #c9a227 50%, #e8b930 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}
.section-header .section-sub { margin-inline: auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, #f0c842 0%, #c9a227 100%);
  color: #0b0e1a;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.5);
  filter: brightness(1.05);
}
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  border: 1.5px solid var(--color-gold-border);
  color: var(--color-gold-light);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-muted);
}

.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover { background: var(--color-surface-offset); color: var(--color-text); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg, #0b0e1a) l c h / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.header--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 72px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { width: 180px; height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--color-gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-4); list-style: none; }
.mobile-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  display: block;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-cta { margin-top: var(--space-4); text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 10, 20, 0.92) 0%,
    rgba(8, 10, 20, 0.75) 50%,
    rgba(8, 10, 20, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-24);
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-6);
}
.hero-sub {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
  color: rgba(232,230,224,0.85);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(232,230,224,0.65);
  letter-spacing: 0.05em;
  margin-top: 0;
  white-space: nowrap;
}
.stat-divider { width: 1px; height: 48px; background: rgba(201,162,39,0.25); }
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
  padding-block: var(--space-5);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.trust-items .dot { color: var(--color-gold); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: center;
}
.about-visual { position: relative; }
.about-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.about-badge-float {
  position: absolute;
  bottom: -var(--space-6);
  right: -var(--space-6);
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, #f0c842, #c9a227);
  color: #0b0e1a;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.badge-icon { font-size: 1.5rem; }
.about-badge-float strong { display: block; font-size: var(--text-sm); font-weight: 700; }
.about-badge-float p { font-size: var(--text-xs); opacity: 0.75; margin: 0; }
.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: none;
}
.about-values { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-6); }
.value-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}
.value-item strong { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-1); }
.value-item p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; max-width: none; }

/* ===== SERVICES ===== */
.services { background: var(--color-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--color-gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(201,162,39,0.08);
}
.featured-card {
  border-color: var(--color-gold-border);
  background: linear-gradient(135deg, var(--color-surface-2) 0%, rgba(201,162,39,0.05) 100%);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  max-width: none;
}
.service-bullets { display: flex; flex-direction: column; gap: var(--space-2); list-style: none; }
.service-bullets li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.service-bullets li::before {
  content: '→';
  color: var(--color-gold);
  font-size: 0.8em;
  flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process { background: var(--color-bg); }
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin-inline: auto; }
.step-item { display: grid; grid-template-columns: 64px 2px 1fr; gap: var(--space-6); align-items: start; position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  text-align: right;
  padding-top: var(--space-1);
}
.step-connector {
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), rgba(201,162,39,0.1));
  min-height: 120px;
  margin-top: 4px;
}
.step-connector.last-step { background: linear-gradient(to bottom, var(--color-gold-border), transparent); }
.step-content { padding-bottom: var(--space-8); }
.step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.step-content p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }

/* ===== RESULTS ===== */
.results { background: var(--color-surface); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}
.result-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.result-card:hover { border-color: var(--color-gold-border); transform: translateY(-4px); }
.highlight-card {
  border-color: var(--color-gold-border);
  background: linear-gradient(135deg, var(--color-surface-2), rgba(201,162,39,0.06));
  box-shadow: var(--shadow-gold);
}
.result-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: var(--space-3);
  line-height: 1;
}
.result-label {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.result-sub { font-size: var(--text-xs); color: var(--color-text-muted); max-width: none; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--color-gold-border); transform: translateY(-3px); }
.featured-testimonial {
  border-color: var(--color-gold-border);
  background: linear-gradient(135deg, var(--color-surface), rgba(201,162,39,0.06));
  box-shadow: var(--shadow-gold);
}
.stars { color: var(--color-gold); font-size: var(--text-lg); letter-spacing: 2px; margin-bottom: var(--space-4); }
.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
  max-width: none;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c842, #c9a227);
  color: #0b0e1a;
  font-weight: 700;
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: var(--text-sm); font-weight: 600; }
.testimonial-author span { display: block; font-size: var(--text-xs); color: var(--color-gold); }

/* ===== FAQ ===== */
.faq { background: var(--color-bg); }
.faq-inner { max-width: var(--content-narrow); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold-light); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform 0.3s;
}
.faq-question[aria-expanded='true'] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-bottom: var(--space-6);
  line-height: 1.75;
  max-width: none;
}

/* ===== CONTACT ===== */
.contact { background: var(--color-surface); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: start;
}
.contact-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.75;
  max-width: none;
}
.contact-info { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.contact-detail svg { color: var(--color-gold); flex-shrink: 0; }
.contact-detail a:hover { color: var(--color-gold-light); }

.contact-form {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-surface-offset);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-faint);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer { font-size: var(--text-xs); color: var(--color-text-faint); text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(var(--space-8), 4vw, var(--space-12));
  padding-block: var(--space-16);
}
.footer-brand .logo-svg { width: 160px; height: 40px; margin-bottom: var(--space-4); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
  max-width: 28ch;
}
.footer-links h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: var(--space-3); list-style: none; }
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-gold-light); }
.footer-contact h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-contact p, .footer-contact a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-gold-light); }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-icon:hover { border-color: var(--color-gold-border); color: var(--color-gold); background: var(--color-gold-muted); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-5);
  text-align: center;
}
.footer-bottom p { font-size: var(--text-xs); color: var(--color-text-faint); }

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Intersection observer fade-in for sections */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .hero-stats { gap: var(--space-4); }
  .stat-divider { display: none; }
  .hero-content { padding-block: var(--space-16); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .step-item { grid-template-columns: 48px 2px 1fr; gap: var(--space-4); }
}

/* ===== PRICING ===== */
.pricing { background: var(--color-bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: var(--color-gold-border); }

.diamond-card {
  border-color: var(--color-gold-border);
  background: linear-gradient(160deg, var(--color-surface) 0%, rgba(201,162,39,0.07) 100%);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}
.diamond-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f0c842, #c9a227);
  color: #0b0e1a;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pkg-header { margin-bottom: var(--space-6); }
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.gold-badge {
  background: rgba(201,162,39,0.12);
  color: var(--color-gold);
  border: 1px solid var(--color-gold-border);
}
.diamond-badge {
  background: linear-gradient(135deg, rgba(240,200,66,0.2), rgba(201,162,39,0.1));
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold-border);
}
.pkg-price { margin-bottom: var(--space-3); }
.pkg-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #f0c842, #c9a227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pkg-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.pkg-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}
.feature-highlight {
  color: var(--color-text) !important;
  font-weight: 600;
}
.feature-gold {
  color: var(--color-gold-light) !important;
  font-weight: 600;
}
.feature-gold svg { color: var(--color-gold-light) !important; }

.pkg-monitoring-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}
.pkg-monitoring-note svg { flex-shrink: 0; color: var(--color-gold); margin-top: 1px; }
.diamond-monitoring {
  border-color: var(--color-gold-border);
  background: rgba(201,162,39,0.05);
  color: var(--color-text-muted) !important;
}

.pkg-btn { width: 100%; justify-content: center; }
.pricing-card .btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-4);
  font-size: var(--text-base);
  font-weight: 600;
}

.pricing-callout {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-10);
}
.callout-icon { font-size: 2rem; flex-shrink: 0; }
.pricing-callout p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; line-height: 1.7; }
.pricing-callout strong { color: var(--color-gold-light); }

/* ===== CREDIT COMPARISON ===== */
.credit-compare { background: var(--color-surface); }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.compare-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.compare-header { padding: var(--space-6); border-bottom: 1px solid var(--color-border); }
.compare-score-badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.win-badge { background: rgba(109,170,69,0.15); color: #6daa45; border: 1px solid rgba(109,170,69,0.3); }
.trap-badge { background: rgba(187,101,59,0.15); color: #bb653b; border: 1px solid rgba(187,101,59,0.3); }
.low-badge { background: rgba(161,44,123,0.12); color: #d163a7; border: 1px solid rgba(161,44,123,0.25); }

.compare-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.compare-sub { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }

.compare-win .compare-header { background: rgba(109,170,69,0.05); border-bottom-color: rgba(109,170,69,0.15); }
.compare-trap .compare-header { background: rgba(187,101,59,0.05); border-bottom-color: rgba(187,101,59,0.15); }
.compare-low .compare-header { background: rgba(161,44,123,0.05); border-bottom-color: rgba(161,44,123,0.15); }

.compare-list {
  list-style: none;
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.compare-list li div { flex: 1; }
.compare-list strong { color: var(--color-text); }
.pro-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(109,170,69,0.15);
  color: #6daa45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}
.con-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(161,44,123,0.12);
  color: #d163a7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}
.compare-trap .con-icon { background: rgba(187,101,59,0.12); color: #bb653b; }

.compare-cta {
  text-align: center;
  margin-top: var(--space-12);
  padding: var(--space-10) var(--space-8);
  background: linear-gradient(135deg, rgba(201,162,39,0.06), rgba(201,162,39,0.02));
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-xl);
}
.compare-cta p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  max-width: none;
}

/* ===== 24/5 SUPPORT BANNER ===== */
.support-banner {
  background: linear-gradient(135deg, #0a1228 0%, #0b1535 50%, #0c1840 100%);
  border-block: 1px solid var(--color-gold-border);
  padding-block: var(--space-8);
}
.support-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.support-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f0c842, #c9a227);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0e1a;
  flex-shrink: 0;
}
.support-text { flex: 1; min-width: 200px; }
.support-text strong {
  display: block;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: var(--space-1);
}
.support-text span { font-size: var(--text-sm); color: var(--color-text-muted); }
.support-badge-row { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.support-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6daa45;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1000px) {
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .diamond-card { margin-top: var(--space-6); }
  .pricing-callout { flex-direction: column; text-align: center; }
  .support-inner { flex-direction: column; text-align: center; }
  .support-badge-row { justify-content: center; }
}
