/*
Theme Name: Alpha & Omega Building Constructions v2
Theme URI: https://alphaomega-bc.nl
Author: Alpha & Omega Building Constructions
Description: Professioneel thema voor Alpha & Omega Building Constructions
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: alpha-omega
*/

/* =========================================================
   CSS VARIABLES – Design System
   ========================================================= */
:root {
  --primary:        hsl(213, 52%, 25%);
  --primary-fg:     hsl(0, 0%, 100%);
  --secondary:      hsl(42, 48%, 60%);
  --secondary-fg:   hsl(213, 52%, 18%);
  --background:     hsl(0, 0%, 100%);
  --foreground:     hsl(213, 50%, 18%);
  --muted:          hsl(210, 20%, 96%);
  --muted-fg:       hsl(213, 20%, 40%);
  --border:         hsl(213, 20%, 88%);
  --destructive:    hsl(0, 84%, 60%);

  --gradient-hero:  linear-gradient(135deg, hsl(213, 60%, 15%, 0.92), hsl(213, 52%, 25%, 0.85));
  --gradient-gold:  linear-gradient(135deg, hsl(42, 55%, 65%), hsl(38, 50%, 50%));
  --shadow-card:    0 10px 40px -15px hsl(213, 52%, 25%, 0.25);
  --shadow-elegant: 0 20px 60px -20px hsl(213, 52%, 25%, 0.4);
  --radius:         0.5rem;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--secondary-fg);
  border-color: transparent;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-navy {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn-navy:hover { background: hsl(213,52%,18%); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }
.btn-outline-light {
  background: transparent;
  color: var(--primary-fg);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* =========================================================
   NAVBAR
   ========================================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navbar-brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.navbar-brand-text {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.2;
}
.navbar-brand-sub {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--muted-fg);
  font-weight: 500;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--secondary); }
.navbar-cta { display: block; }
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 0.25rem;
}
.navbar-toggle svg { width: 24px; height: 24px; }
.navbar-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}
.navbar-mobile.open { display: block; }
.navbar-mobile-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.navbar-mobile-inner a {
  font-size: 0.875rem;
  font-weight: 500;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--secondary);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
}
.hero-title span {
  display: block;
  color: var(--secondary);
  margin-top: 0.5rem;
}
.hero-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-label {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-top: 0.5rem;
  line-height: 1.2;
}
.section-title-light {
  color: white;
}
.section-desc {
  color: var(--muted-fg);
  margin-top: 1rem;
}
.text-center { text-align: center; }

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  padding: 6rem 0;
  background: var(--muted);
}
.services-header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card-icon svg { width: 28px; height: 28px; color: var(--secondary-fg); }
.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  text-decoration: none;
  transition: color 0.2s;
}
.service-card-title:hover { color: var(--secondary); }
.service-card-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.service-card-desc {
  color: var(--muted-fg);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.service-card-actions { display: flex; flex-direction: column; gap: 0.5rem; }

/* =========================================================
   WHY US
   ========================================================= */
.whyus-section { padding: 6rem 0; }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.whyus-text-title { margin-bottom: 1.5rem; }
.whyus-text-body { color: var(--muted-fg); font-size: 1.1rem; line-height: 1.7; }
.whyus-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.whyus-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--background);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s;
}
.whyus-card:hover { border-color: var(--secondary); }
.whyus-card-icon { width: 32px; height: 32px; color: var(--secondary); margin-bottom: 0.75rem; }
.whyus-card h3 { font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; font-size: 0.95rem; }
.whyus-card p { font-size: 0.85rem; color: var(--muted-fg); }

/* =========================================================
   WORK AREA
   ========================================================= */
.workarea-section {
  padding: 6rem 0;
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}
.workarea-dots {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, hsl(42,48%,60%) 1px, transparent 0);
  background-size: 32px 32px;
}
.workarea-header {
  max-width: 640px;
  margin: 0 auto 3rem;
}
.workarea-header .section-desc { color: rgba(255,255,255,0.75); }
.workarea-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.workarea-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s, color 0.25s;
  cursor: default;
}
.workarea-tag:hover { background: var(--secondary); color: var(--secondary-fg); }
.workarea-tag svg { width: 16px; height: 16px; color: var(--secondary); }
.workarea-tag:hover svg { color: var(--secondary-fg); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { padding: 6rem 0; background: var(--muted); }
.contact-grid-wrap { padding: 0 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 2.5rem; align-items: start; }
.contact-info-title { margin-bottom: 1.5rem; }
.contact-info-desc { color: var(--muted-fg); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; color: white; }
.contact-item-label { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.contact-item-value { color: var(--muted-fg); font-size: 0.875rem; }
.contact-item-value a { color: var(--muted-fg); transition: color 0.2s; }
.contact-item-value a:hover { color: var(--secondary); }
.contact-form {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--foreground);
  background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(213,52%,25%,0.12);
}
.form-group textarea { resize: vertical; }
.form-error { color: var(--destructive); font-size: 0.75rem; margin-top: 0.25rem; }
.form-success {
  background: hsl(142, 70%, 95%);
  border: 1px solid hsl(142, 60%, 70%);
  border-radius: var(--radius);
  padding: 1rem;
  color: hsl(142, 60%, 25%);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img {
  height: 56px; width: 56px; object-fit: contain;
  background: white; border-radius: var(--radius); padding: 4px;
}
.footer-brand-name { font-weight: 700; font-size: 1rem; }
.footer-brand-sub { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--secondary); }
.footer-col h4 { font-weight: 600; color: var(--secondary); margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-col ul li { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */
.service-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.service-hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
  color: white;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--secondary); }
.service-hero-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.service-hero-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
}
.service-hero-icon svg { width: 28px; height: 28px; color: var(--secondary-fg); }
.service-hero-price { color: var(--secondary); font-weight: 700; font-size: 1.1rem; }
.service-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; }
.service-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 640px; }

.service-intro-section { padding: 5rem 0; }
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.service-intro-label { margin-bottom: 0.5rem; }
.service-intro-h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
.service-intro-text { color: var(--muted-fg); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.service-features-box {
  background: var(--muted);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.service-features-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; }
.service-features-list { display: flex; flex-direction: column; gap: 0.75rem; }
.service-feature-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.service-feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-feature-check svg { width: 14px; height: 14px; color: var(--secondary-fg); }
.service-feature-text { color: var(--foreground); font-size: 0.95rem; }

.process-section { padding: 5rem 0; background: var(--muted); }
.process-header { max-width: 640px; margin: 0 auto 3rem; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.process-card {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.process-card-step { color: var(--secondary); font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
.process-card-text { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.5; }

.faq-section { padding: 5rem 0; }
.faq-header { max-width: 640px; margin: 0 auto 2.5rem; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--secondary); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 1.25rem;
  display: none;
}
.faq-answer.open { display: block; }

.related-services { padding: 5rem 0; background: var(--muted); }
.related-header { max-width: 640px; margin: 0 auto 2.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-grid-wrap { padding: 2.5rem 2rem 0; }
.related-card {
  background: var(--background);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s;
  text-decoration: none;
  display: block;
}
.related-card:hover { border-color: var(--secondary); }
.related-card-img { aspect-ratio: 4/3; overflow: hidden; }
.related-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-body { padding: 1.25rem; }
.related-card-title { font-weight: 700; color: var(--primary); transition: color 0.2s; }
.related-card:hover .related-card-title { color: var(--secondary); }
.related-card-price { color: var(--secondary); font-weight: 600; font-size: 0.875rem; margin-top: 0.25rem; }

.back-link { padding: 2.5rem 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .whyus-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .whyus-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TOAST / NOTIFICATION
   ========================================================= */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  animation: slideIn 0.3s ease;
  max-width: 320px;
}
.toast strong { display: block; margin-bottom: 0.25rem; }
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =========================================================
   DIENST PAGE – sv-* klassen
   ========================================================= */

/* Hero */
.sv-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sv-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,35,65,0.35) 0%, rgba(15,35,65,0.75) 100%);
}
.sv-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  color: white;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .bc-cur { color: white; font-weight: 600; }

/* Meta row: icon + price */
.sv-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.sv-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  opacity: 0.9;
}
.sv-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}
.sv-price {
  background: var(--secondary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Hero title & desc */
.sv-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.sv-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0;
}

/* Intro section */
.sv-intro {
  padding: 5rem 0;
}
.sv-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sv-intro-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin: 0.5rem 0 1rem;
}
.sv-intro-text {
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Features box */
.service-features-box {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 2rem;
}
.service-features-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.25rem;
}
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.service-feature-check {
  width: 22px;
  height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-feature-check svg {
  width: 12px;
  height: 12px;
  color: white;
}
.service-feature-text {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.4;
}

/* Back link */
.back-link { padding: 2rem 0; }

/* Responsive */
@media (max-width: 768px) {
  .sv-hero { height: 320px; }
  .sv-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sv-title { font-size: 1.75rem; }
}
