:root {
  --brand-dark: #111111;
  --brand-accent: #111111;
  --brand-mid: #333333;
  --brand-light: #F9FAFB;
  --text-primary: #111111;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 69, 96, 0.2);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--brand-accent); }

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--brand-accent) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.08) 0%, transparent 50%);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  position: relative;
}

.hero-cta {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 69, 96, 0.4);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.hero-badge {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-badge strong {
  display: block;
  color: var(--white);
  font-size: 1.6rem;
  font-family: 'Space Grotesk', sans-serif;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--brand-mid);
  text-decoration: none;
}

.breadcrumbs a:hover { text-decoration: underline; }

/* ===== CONTENT ===== */
.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin: 3rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.content h3 {
  font-size: 1.3rem;
  color: var(--brand-mid);
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}

.content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.content ul, .content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.content li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.content strong { color: var(--text-primary); }

/* ===== FEATURE GRID ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--brand-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin: 0 0 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.pricing-card.popular {
  border-color: var(--brand-accent);
  position: relative;
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  margin: 0 0 0.5rem;
  color: var(--brand-dark);
}

.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.pricing-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

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

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--brand-accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0 0;
}

.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  font-size: 2rem;
  margin: 0 0 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-button {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 69, 96, 0.4);
}

/* ===== FAQ ===== */
.faq { margin: 3rem 0; }

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

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin: 0 0 0.5rem;
  cursor: pointer;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.testimonial {
  background: var(--brand-light);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--brand-accent);
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text-secondary);
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-dark);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer p, .footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 2;
  display: block;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  counter-reset: step;
}

.process-step {
  background: var(--brand-light);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(233, 69, 96, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.process-step h3 {
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin: 0 0 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.blog-card h3 a {
  color: var(--brand-dark);
  text-decoration: none;
}

.blog-card h3 a:hover { color: var(--brand-accent); }

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== INTERNAL LINK BOXES ===== */
.related-services {
  background: var(--brand-light);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
}

.related-services h3 {
  margin: 0 0 1rem;
  color: var(--brand-dark);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.related-links a {
  display: block;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--brand-mid);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.related-links a:hover { border-color: var(--brand-accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 3rem 1.5rem; }
  .content { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-badges { flex-direction: column; gap: 1rem; }
}
