/* ============================================================
   HomeProMatcher — Landing Page Styles
   Design system: Inter font, blue primary, clean SaaS style
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --blue-primary: #2574c4;
  --blue-50:  #dbeafe;
  --blue-100: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

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

  --green-100: #d1fae5;
  --green-500: #10b981;

  --red-500: #ef4444;

  --orange-100: #ffedd5;
  --orange-500: #f97316;

  --gold: #f59e0b;

  --white: #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14), 0 6px 18px rgba(0,0,0,.08);

  --transition: 200ms ease;
}

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

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

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}

.navbar-links a:hover {
  color: var(--gray-900);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-links a:hover::after {
  transform: scaleX(1);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav open state */
#navLinks.open {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 24px 20px;
  box-shadow: var(--shadow-md);
}

#navLinks.open a {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

#navLinks.open a:last-child {
  border-bottom: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary */
.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

.btn-primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 4px 14px rgba(37, 116, 196, 0.40);
}

/* Secondary */
.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-800);
  border-color: var(--gray-100);
}

.btn-secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-200);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}

.btn-outline:hover {
  background: var(--blue-50);
}

/* Sizes */
.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
  border-radius: 8px;
}

/* Block */
.btn-block {
  display: flex;
  width: 100%;
}

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

.hero {
  background: linear-gradient(135deg, #e8f1fb 0%, #dbeafe 40%, #eff6ff 70%, #f0fdf4 100%);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,116,196,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--blue-100);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--blue-primary);
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.hero-stat .value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Hero service cards */
.hero-services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--blue-50);
  color: var(--blue-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-50);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   VALUE PROPS
   ============================================================ */

.value-props {
  padding: 88px 0;
  background: var(--white);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.prop-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
}

.prop-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
  transform: translateY(-4px);
}

.prop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.prop-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.prop-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section {
  padding: 88px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-large-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-large-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-primary);
  font-size: 1.7rem;
  margin-bottom: 22px;
}

.service-large-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-large-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.svc-stats .stat {
  text-align: left;
}

.svc-stats .stat .value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 3px;
}

.svc-stats .stat .label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

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

.how-it-works {
  padding: 88px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: steps;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  position: relative;
  transition: box-shadow var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 22px;
  box-shadow: 0 4px 12px rgba(37,116,196,.35);
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

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

.pricing {
  padding: 88px 0;
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow var(--transition), border-color var(--transition),
              transform var(--transition);
}

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

/* Featured / highlighted plan */
.pricing-card.featured {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(37,116,196,.10), var(--shadow-md);
  position: relative;
}

.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.pricing-card > p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}

.price-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
  margin-bottom: 28px;
}

.pricing-features {
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 7px 0;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 88px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span,
.testimonial-stars svg {
  color: var(--gold);
  font-size: 1rem;
}

blockquote {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  padding: 0;
  border: none;
}

blockquote::before {
  content: '\201C';
  font-size: 1.4em;
  color: var(--blue-100);
  font-style: normal;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}

blockquote::after {
  content: '\201D';
  font-size: 1.4em;
  color: var(--blue-100);
  font-style: normal;
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author .name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.testimonial-author .company {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.3;
}

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

.faq-section {
  padding: 88px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: var(--gray-50);
  color: var(--blue-primary);
}

.faq-item.open .faq-question {
  color: var(--blue-primary);
  background: var(--blue-50);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition),
              transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--blue-primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1),
              padding 320ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  padding: 88px 0;
  background: linear-gradient(135deg, #1a5fa8 0%, var(--blue-primary) 45%, var(--blue-500) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 20%, rgba(255,255,255,.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 60% at 10% 90%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
}

.cta-banner .section-header {
  margin-bottom: 36px;
}

.cta-banner .section-header .label {
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
}

.cta-banner .section-header h2,
.cta-banner h2 {
  color: var(--white);
}

.cta-banner .section-header p,
.cta-banner p {
  color: rgba(255,255,255,.85);
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--blue-primary);
  border-color: var(--white);
}

.cta-banner .btn-primary:hover {
  background: var(--gray-50);
  border-color: var(--gray-50);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-800);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-600);
}

.footer-bottom a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gray-300);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.82rem;
}

.footer-disclaimer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 20px 0;
}

.footer-disclaimer p {
  font-size: 0.76rem;
  color: var(--gray-700);
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   TRUST BADGES / GENERIC HELPERS
   ============================================================ */

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.trust-badge .check {
  color: var(--green-500);
  font-size: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.tag-blue   { background: var(--blue-50);    color: var(--blue-primary); }
.tag-green  { background: var(--green-100);  color: var(--green-500); }
.tag-orange { background: var(--orange-100); color: var(--orange-500); }
.tag-gray   { background: var(--gray-100);   color: var(--gray-600); }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {
  /* Nav */
  .navbar-links {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar-wrap {
    position: relative; /* allow absolute child to work */
  }

  /* Hero */
  .hero {
    padding: 64px 0 56px;
  }

  .hero-stats {
    gap: 28px;
  }

  /* Sections */
  .value-props,
  .services-section,
  .how-it-works,
  .pricing,
  .testimonials,
  .faq-section,
  .cta-banner {
    padding: 64px 0;
  }

  /* Grids → 1 or 2 col */
  .props-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Section header */
  .section-header {
    margin-bottom: 40px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 0 44px;
  }

  .hero-text h1 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .value {
    font-size: 1.5rem;
  }

  .hero-services {
    gap: 8px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 13px 22px;
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .pricing-card.featured {
    margin-top: 16px;
  }

  .footer {
    padding-top: 52px;
  }

  .footer-bottom-links {
    gap: 14px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .prop-card,
  .service-large-card {
    padding: 24px 20px;
  }
}
