/* ===== SUNIL KUMAR PV - Custom Modern Design ===== */
/* Color Palette: Deep Navy, Electric Violet, Warm Gold, Soft Neutrals */

:root {
  --primary: #6c3ce0;
  --primary-dark: #4a1fb8;
  --primary-light: #a78bfa;
  --secondary: #f59e0b;
  --accent: #06b6d4;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --gray-900: #1a1a2e;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #6c3ce0 0%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-3: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --shadow-sm: 0 2px 8px rgba(108, 60, 224, 0.08);
  --shadow-md: 0 8px 30px rgba(108, 60, 224, 0.12);
  --shadow-lg: 0 20px 60px rgba(108, 60, 224, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== Base Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark); font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
section { padding: 100px 0; }

.section-header { margin-bottom: 50px; }
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(108, 60, 224, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; }
.section-subtitle { color: var(--gray-500); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== Header ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 60, 224, 0.05);
  padding: 16px 0;
  transition: all 0.4s ease;
  z-index: 9999;
}
.scrolled .header { padding: 10px 0; box-shadow: var(--shadow-sm); }

.header .logo .sitename {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.navmenu ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.navmenu a {
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.navmenu a:hover, .navmenu a.active { color: var(--primary); background: rgba(108, 60, 224, 0.08); }

.btn-getstarted {
  padding: 10px 28px;
  background: var(--gradient-1);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 60, 224, 0.3);
}
.btn-getstarted:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108, 60, 224, 0.4); }

.mobile-nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(160deg, #f8f6ff 0%, #eef2ff 50%, #faf5ff 100%);
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.08) 0%, transparent 70%);
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(108, 60, 224, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--dark);
}
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.2rem; color: var(--gray-500); max-width: 500px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary-custom {
  padding: 14px 32px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(108, 60, 224, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(108, 60, 224, 0.4); color: var(--white); }

.btn-outline-custom {
  padding: 14px 32px;
  border: 2px solid var(--gray-300);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover { border-color: var(--primary); color: var(--primary); }

.hero-visual {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.15;
  animation: pulse 4s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: float 6s ease-in-out infinite;
}
.floating-card i { font-size: 1.4rem; color: var(--primary); }
.card-1 { top: 15%; left: 10%; animation-delay: 0s; }
.card-2 { top: 50%; right: 5%; animation-delay: 2s; }
.card-3 { bottom: 15%; left: 20%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== Clients ===== */
.clients { padding: 60px 0; background: var(--white); }
.client-img { opacity: 0.5; filter: grayscale(100%); transition: all 0.3s ease; padding: 10px 20px; }
.client-img:hover { opacity: 1; filter: grayscale(0); }

/* ===== About ===== */
.about { background: var(--white); }
.about-img-wrapper { position: relative; }
.about-img-wrapper img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-1);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.experience-badge .number { display: block; font-size: 2.2rem; font-weight: 800; font-family: var(--font-heading); }
.experience-badge .text { font-size: 0.8rem; font-weight: 500; opacity: 0.9; }

.about-desc { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(108, 60, 224, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.feature-item h5 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* ===== Stats ===== */
.stats { background: var(--dark); padding: 80px 0; }
.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.stat-card:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-5px); }
.stat-icon { font-size: 2rem; color: var(--primary-light); margin-bottom: 12px; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--white); font-family: var(--font-heading); }
.stat-card p { color: rgba(255, 255, 255, 0.7); margin: 8px 0 0; font-size: 0.95rem; }

/* ===== Why Us ===== */
.why-us { background: var(--gray-100); }
.why-box { padding-right: 30px; }
.why-box p { color: var(--gray-500); margin: 20px 0 30px; font-size: 1.05rem; }
.why-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.why-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* ===== CTA ===== */
.cta {
  background: var(--gradient-1);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-content h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 16px; }
.cta-content p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); color: var(--primary-dark); }

/* ===== Services ===== */
.services { background: var(--white); }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(108, 60, 224, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--gradient-1); color: var(--white); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 16px; }
.service-link { font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ===== Portfolio ===== */
.portfolio { background: var(--gray-100); }
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.portfolio-filters li {
  padding: 8px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-500);
  background: var(--white);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-300);
}
.portfolio-filters li:hover, .portfolio-filters .filter-active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.portfolio-card img { width: 100%; height: 260px; object-fit: cover; transition: all 0.4s ease; }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: all 0.4s ease;
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.portfolio-overlay p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin: 0; }

/* ===== Testimonials ===== */
.testimonials { background: var(--white); }
.testimonial-card {
  background: var(--gray-100);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-stars { margin-bottom: 20px; color: var(--secondary); font-size: 1rem; }
.testimonial-card > p { font-size: 1.1rem; color: var(--gray-700); font-style: italic; line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial-author span { font-size: 0.85rem; color: var(--gray-500); }
.swiper-pagination { margin-top: 30px; position: relative; }
.swiper-pagination-bullet { width: 10px; height: 10px; background: var(--gray-300); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ===== Team ===== */
.team { background: var(--gray-100); }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img img { width: 100%; height: 280px; object-fit: cover; }
.team-info { padding: 24px; }
.team-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info span { color: var(--primary); font-size: 0.9rem; font-weight: 500; }
.team-social { margin-top: 16px; display: flex; gap: 12px; justify-content: center; }
.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.team-social a:hover { background: var(--primary); color: var(--white); }

/* ===== Contact ===== */
.contact { background: var(--white); }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--gray-100);
  padding: 28px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

.contact-form label { font-weight: 500; font-size: 0.9rem; margin-bottom: 6px; display: block; color: var(--gray-700); }
.contact-form .form-control {
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--gray-100);
}
.contact-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108, 60, 224, 0.1); background: var(--white); }
.btn-submit {
  padding: 14px 40px;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 60, 224, 0.3);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(108, 60, 224, 0.4); }

.contact-form .loading, .contact-form .error-message, .contact-form .sent-message { display: none; }
.contact-form .sent-message { color: #28a745; padding: 15px; margin-bottom: 15px; background: #d4edda; border-radius: var(--radius-sm); }
.contact-form .error-message { color: #dc3545; padding: 15px; margin-bottom: 15px; background: #f8d7da; border-radius: var(--radius-sm); }

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}
.footer h3, .footer h4 { color: var(--white); }
.footer-brand h3 { font-size: 1.4rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer h4 { font-size: 1.1rem; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 14px; font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--primary-light); margin-top: 4px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 50px; padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.9rem; margin: 0; }
.footer-bottom strong { color: var(--primary-light); }

/* ===== Scroll Top ===== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--gradient-1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); color: var(--white); }

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-300);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Mobile Nav ===== */
@media (max-width: 1199px) {
  .mobile-nav-toggle { display: block; }
  .navmenu ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    gap: 4px;
    z-index: 9998;
  }
  .mobile-nav-active .navmenu ul { right: 0; }
  .navmenu a { padding: 12px 18px; font-size: 1rem; }
  .btn-getstarted { display: none; }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .section-header h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero-visual { height: 300px; margin-top: 40px; }
  .hero-circle { width: 200px; height: 200px; }
  .floating-card { padding: 12px 18px; font-size: 0.8rem; }
  .experience-badge { bottom: -10px; right: -10px; padding: 18px; }
  .experience-badge .number { font-size: 1.8rem; }
  .stat-number { font-size: 2rem; }
  .cta-content h2 { font-size: 2rem; }
  .testimonial-card { padding: 30px; }
  .team-img img { height: 240px; }
}

@media (max-width: 767px) {
  section { padding: 50px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .section-subtitle { font-size: 1rem; }
  .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-visual { height: 250px; }
  .hero-btns { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom { text-align: center; justify-content: center; }
  .about-img-wrapper { margin-bottom: 40px; }
  .stat-card { padding: 24px 12px; }
  .stat-number { font-size: 1.8rem; }
  .stat-card p { font-size: 0.85rem; }
  .why-box { padding-right: 0; margin-bottom: 30px; }
  .cta-content h2 { font-size: 1.6rem; }
  .testimonial-card { padding: 24px; }
  .testimonial-card > p { font-size: 1rem; }
  .team-img img { height: 220px; }
  .portfolio-card img { height: 200px; }
  .portfolio-filters { gap: 8px; }
  .portfolio-filters li { padding: 6px 16px; font-size: 0.8rem; }
  .footer { padding: 50px 0 20px; }
  .contact-form .form-control { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .floating-card { padding: 10px 14px; font-size: 0.75rem; }
  .floating-card i { font-size: 1.1rem; }
  .hero-circle { width: 160px; height: 160px; }
  .stat-number { font-size: 1.5rem; }
  .service-card { padding: 24px 20px; }
}

/* ===== Legal Pages ===== */
.legal-content { max-width: 800px; }
.legal-content h4 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--dark); }
.legal-content p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.legal-content a { color: var(--primary); font-weight: 500; }

/* ===== Utility for scroll-margin ===== */
section[id] { scroll-margin-top: 80px; }
