*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; -webkit-tap-highlight-color: transparent; }
input, textarea { font-family: inherit; }

:root {
  --primary: #0f2b4c;
  --primary-light: #1e4d7b;
  --primary-dark: #091a30;
  --accent: #d4a843;
  --accent-light: #f0d68a;
  --accent-hover: #c49a2e;
  --text-dark: #1a1a2e;
  --text-light: #f0f0f0;
  --text-muted: #6b7280;
  --bg-light: #ffffff;
  --bg-section: #f5f7fa;
  --bg-warm: #faf8f4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1250px;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ===== Top Bar ===== */
.top-bar {
  position: relative; z-index: 1001;
  background: var(--primary-dark);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.top-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 1.8rem; flex-wrap: wrap;
}
.top-bar a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.85); transition: var(--transition);
}
.top-bar a:hover { color: var(--accent); }
.top-bar svg { width: 13px; height: 13px; fill: currentColor; }
.top-bar .license {
  border-right: 2px solid var(--accent);
  padding-right: 1.2rem;
  font-weight: 500;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: top 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  border-bottom-color: rgba(0,0,0,0.04);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.navbar-logo img { height: 54px; width: auto; transition: var(--transition); filter: brightness(0) invert(1); }
.navbar.scrolled .navbar-logo img { filter: none; }
.custom-logo-link img { height: 54px; width: auto; transition: var(--transition); filter: brightness(0) invert(1); }
.navbar.scrolled .custom-logo-link img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1rem; font-weight: 500; font-size: 0.95rem;
  color: #fff; border-radius: var(--radius-sm); transition: var(--transition);
  white-space: nowrap;
}
.navbar.scrolled .nav-links > li > a { color: var(--primary); }
.nav-links > li > a:hover { background: rgba(255,255,255,0.1); color: var(--accent); }
.navbar.scrolled .nav-links > li > a:hover { background: var(--bg-section); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 230px;
  padding: 0.6rem; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition); z-index: 100;
}
.nav-links > li:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 0.55rem 1rem; font-size: 0.88rem;
  color: var(--text-dark); border-radius: var(--radius-sm);
}
.dropdown-menu li a:hover { background: var(--bg-section); color: var(--accent); }
.dropdown-arrow {
  width: 10px; height: 10px; fill: currentColor;
  margin-right: 0.3rem; transition: var(--transition);
}
.navbar:not(.scrolled) .dropdown-arrow { fill: #fff; }
.nav-links > li:hover .dropdown-arrow { transform: rotate(180deg); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #fff;
  padding: 0.65rem 1.6rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 2px 12px rgba(212,168,67,0.3);
}
.btn-cta:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}
.btn-cta svg { width: 14px; height: 14px; fill: currentColor; }
button.btn-cta, button.btn-dark { border: none; cursor: pointer; font-family: inherit; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #fff;
  padding: calc(0.65rem - 2px) 1.8rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.4); transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 0.75rem; z-index: 1100;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  margin-left: -0.5rem;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--primary); }
.hamburger.active span { background: var(--primary) !important; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-cta-mobile { display: none; }
.mobile-nav {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--bg-section); z-index: 999;
  padding: 1rem 0 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto; box-shadow: var(--shadow-xl);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: transparent; z-index: 998;
  pointer-events: none;
}
.mobile-nav-backdrop.open { pointer-events: auto; }
.mobile-nav > ul { display: flex; flex-direction: column; gap: 0; width: 90%; margin: 0 auto; }
.mobile-nav > ul > li > a {
  display: block; padding: 0.9rem 0; font-weight: 600;
  color: var(--primary); font-size: 1.05rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav > ul > li:last-child > a { border-bottom: none; }
.mobile-nav > ul > li > a:hover { color: var(--accent); }
.mobile-nav > ul > li > a.mobile-sub-toggle { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; cursor: pointer; }
.mobile-sub-arrow { width: 12px; height: 12px; fill: var(--text-muted); transition: transform 0.3s ease; flex-shrink: 0; }
.mobile-sub-toggle.open .mobile-sub-arrow { transform: rotate(180deg); }
.mobile-dropdown {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.mobile-dropdown.open { max-height: 300px; }
.mobile-dropdown a {
  display: block; padding: 0.65rem 1.2rem; font-size: 0.9rem;
  font-weight: 400; color: var(--text-muted);
}
.mobile-dropdown a:hover { color: var(--accent); }

.mobile-nav-contact {
  width: 90%; margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.mobile-nav-contact a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0; font-size: 0.92rem; color: var(--text-muted);
  font-weight: 500;
}
.mobile-nav-contact a:hover { color: var(--accent); }
.mobile-nav-contact svg {
  width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  padding: 120px 0 80px;
}
@media (hover: none) and (pointer: coarse) {
  .hero { background-attachment: scroll; }
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9,26,48,0.82) 0%,
    rgba(15,43,76,0.7) 40%,
    rgba(15,43,76,0.75) 70%,
    rgba(9,26,48,0.92) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 720px; padding: 2rem;
  color: #fff;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,67,0.15);
  color: var(--accent-light);
  padding: 0.45rem 1.4rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(212,168,67,0.25);
  backdrop-filter: blur(8px);
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--accent); }
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem; line-height: 1.9;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { text-align: center; }
.hero-stat .number {
  display: block; font-size: 2.2rem; font-weight: 800;
  color: var(--accent); line-height: 1.1;
}
.hero-stat .label {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  font-weight: 400; margin-top: 0.3rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 28px; height: 28px; fill: rgba(255,255,255,0.4); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Lead Form ===== */
.lead-form-bar {
  position: relative; z-index: 3;
  background: var(--accent);
  padding: 1.8rem 0;
}
.lead-form-inner {
  display: flex; align-items: center; gap: 2rem;
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
}
.lead-form-inner h2 {
  font-size: 0.95rem; font-weight: 700; color: var(--primary-dark);
  white-space: nowrap; flex-shrink: 0;
}
.lead-form {
  display: flex; gap: 0.8rem; flex: 1; align-items: center;
}
.form-group { flex: 1; }
.form-group input {
  width: 100%; border: none;
  border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.9rem;
  transition: var(--transition); background: rgba(255,255,255,0.85);
  outline: none; color: var(--text-dark);
}
.form-group input:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}
.form-group input::placeholder { color: #999; }
.lead-form .btn-cta {
  padding: 0.65rem 1.8rem; flex-shrink: 0;
  background: var(--primary-dark); color: #fff;
  box-shadow: none;
}
.lead-form .btn-cta:hover { background: var(--primary); }

/* ===== Section Styles ===== */
.section-header {
  text-align: center; margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.6rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--primary); line-height: 1.3;
}
.section-header p {
  color: var(--text-muted); margin-top: 0.8rem;
  font-size: 1.05rem; max-width: 550px; margin-inline: auto;
}

/* ===== Services ===== */
.services { padding: 5rem 0 5.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.service-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.6rem; border-radius: var(--radius-sm);
  transition: background 0.8s ease, transform 0.35s ease;
  text-align: right; cursor: pointer;
  background: transparent;
}
.service-card:hover { background: var(--bg-section); }
.service-text { position: relative; min-height: 2.8em; }
.service-text p, .service-more {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-text p { margin: 0; }
.service-more {
  position: absolute; bottom: 0; right: 0;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.84rem; font-weight: 600; color: var(--accent);
  opacity: 0; transform: translateX(8px);
}
.service-more svg { width: 14px; height: 14px; fill: var(--accent); transition: transform 0.3s ease; }
.service-card:hover .service-text p { opacity: 0; }
.service-card:hover .service-more { opacity: 1; transform: translateX(0); }
.service-card:hover .service-more svg { transform: translateX(-4px); }
.service-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(212,168,67,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--accent); }
.service-card h3 {
  font-size: 0.98rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem;
}
.service-card p {
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.6;
}

/* ===== Why Us ===== */
.why-us {
  padding: 6rem 0;
  background: var(--primary);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30,77,123,0.3) 0%, transparent 50%);
}
.why-us .container {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 4rem;
}
.why-us-content { color: #fff; }
.why-us-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.why-us-text { flex: 1; }
.why-us-content .section-label { color: var(--accent-light); }
.why-us-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; margin-bottom: 0.8rem; color: #fff;
}
.why-us-content > .why-us-text > p {
  font-weight: 300; color: rgba(255,255,255,0.75);
  line-height: 1.9; font-size: 1.05rem;
}
.benefits { display: flex; flex-direction: column; gap: 1rem; }
.benefit {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.benefit:last-child { border-bottom: none; }
.benefit-dot {
  width: 10px; height: 10px; flex-shrink: 0;
  border: 2px solid var(--accent); border-radius: 50%;
}
.benefit-text h4 { font-size: 1rem; font-weight: 600; color: #fff; }
.benefit-text p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

.why-us-visual {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.stats-grid {
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 3rem;
}
.stat-card {
  text-align: center; flex: 1;
  padding: 0 2rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-card:last-child { border-left: none; }
.stat-card .stat-number {
  display: block; font-size: 2.6rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  margin-top: 0.5rem; font-weight: 400;
}

/* ===== About ===== */
.about { padding: 6rem 0; background: var(--bg-warm); }
.about .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-wrapper img {
  width: 100%; height: 400px; object-fit: cover;
}
.about-accent {
  position: absolute; top: -16px; right: -16px;
  width: 100px; height: 100px;
  border: 3px solid var(--accent); border-radius: var(--radius-md);
  z-index: -1; opacity: 0.4;
}
.about-content .section-label { text-align: right; }
.about-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--primary); margin-bottom: 1.5rem;
}
.about-content p {
  color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 1.02rem;
}
.about-buttons { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #fff;
  padding: 0.65rem 2rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(15,43,76,0.2);
}
.btn-dark:hover {
  background: var(--primary-light); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,43,76,0.3);
}
.btn-dark svg { width: 14px; height: 14px; fill: currentColor; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--primary);
  padding: calc(0.65rem - 2px) 2rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  border: 2px solid rgba(15,43,76,0.2); transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== FAQ ===== */
.faq { padding: 6rem 0; background: var(--bg-light); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--bg-section); border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition);
  border: 1px solid transparent;
}
.faq-item.active {
  background: #fff; border-color: rgba(212,168,67,0.3);
  box-shadow: 0 4px 24px rgba(212,168,67,0.08);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.6rem; cursor: pointer;
  font-weight: 600; font-size: 1.02rem; color: var(--primary);
  transition: var(--transition); gap: 1rem;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(15,43,76,0.06); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-icon {
  background: var(--accent); border-radius: 50%;
}
.faq-icon svg { width: 13px; height: 13px; fill: var(--primary); transition: var(--transition); }
.faq-item.active .faq-icon svg { fill: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer-inner {
  padding: 0 1.6rem 1.6rem; color: var(--text-muted); line-height: 1.85; font-size: 0.95rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 5rem 0; background: var(--bg-section);
}
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg); padding: 4rem 3rem;
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(212,168,67,0.12) 0%, transparent 60%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem;
}
.cta-card p {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  margin-bottom: 2rem; max-width: 500px; margin-inline: auto;
}
.cta-card .btn-cta {
  font-size: 1rem; padding: 0.8rem 2.5rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark); color: var(--text-light); padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-col h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--accent);
}
.footer-about p {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  line-height: 1.85; margin-bottom: 1.5rem;
}
.footer-about img { height: 55px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-about .custom-logo-link img { height: 55px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-ministry {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.04); padding: 0.8rem 1rem;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.06);
}
.footer-ministry img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-ministry span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-contact ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
}
.footer-contact li a:hover { color: var(--accent); }
.footer-contact svg { width: 15px; height: 15px; fill: var(--accent); flex-shrink: 0; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-links h4 {
  font-size: 0.92rem; font-weight: 600; margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.8);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); }
.footer-links li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 1.2rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: var(--accent); }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 54px; height: 54px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  html { scroll-padding-top: 90px; }
  .nav-links, .nav-desktop-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav, .mobile-nav-backdrop { display: block; }
  .mobile-nav { top: 74px; }
  .nav-cta-mobile { display: block; margin-top: 1.5rem; width: 90%; margin-inline: auto; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.06); }
  .nav-cta-mobile .btn-cta { width: 100%; justify-content: center; }
  .hero-stats { gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-content { grid-template-columns: 1fr; }
  .why-us-text { text-align: center; }
  .why-us-text .btn-cta { margin-inline: auto; }
  .why-us-content .section-label { text-align: center; }
  .benefits { align-items: center; }
  .stats-grid { flex-wrap: wrap; justify-content: center; }
  .stat-card { min-width: 40%; padding: 1.5rem; }
  .about .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }
  .about-content { text-align: center; }
  .about-content .section-label { text-align: center; }
  .about-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  html { scroll-padding-top: 64px; }
  .container, .lead-form-inner, .hero-inner, .top-bar .container,
  .cta-card, .faq-list, .lead-form { width: 90%; max-width: 90%; padding-inline: 0; margin-inline: auto; box-sizing: border-box; }
  .top-bar { display: none; }
  .navbar { top: 0 !important; background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.08) !important; }
  .navbar .container { height: 56px; }
  .navbar-logo img { height: 38px !important; filter: none !important; }
  .custom-logo-link img { height: 38px !important; filter: none !important; }
  .nav-links > li > a { color: var(--primary) !important; }
  .hamburger span { background: var(--primary) !important; }
  .hero { min-height: auto; padding: 80px 0 50px; background-attachment: scroll; }
  .scroll-indicator { display: none; }
  .mobile-nav { top: 56px; }
  .hero h1 { font-size: 2rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 1.8rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center;
    margin-top: 2.5rem; padding-top: 2rem; }
  .hero-stat .number { font-size: 1.6rem; }
  .hero-stat .label { font-size: 0.75rem; }
  .lead-form-bar { padding: 1.5rem 0; }
  .lead-form-inner { flex-direction: column; gap: 0.8rem; }
  .lead-form-inner h2 { white-space: normal; text-align: center; font-size: 0.95rem; }
  .lead-form { flex-direction: column; width: 100% !important; max-width: 100% !important; }
  .lead-form .form-group, .lead-form .form-group input { width: 100%; }
  .lead-form .form-group input { font-size: 16px; padding: 0.8rem 1rem; }
  .lead-form .btn-cta { width: 100%; justify-content: center; padding: 0.85rem 1.8rem; font-size: 0.95rem; }
  .services { padding: 3.5rem 0 4rem; }
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .service-card { padding: 1.2rem; }
  .service-more { display: none; }
  .why-us { padding: 4rem 0; }
  .why-us-content { gap: 2rem; grid-template-columns: 1fr; }
  .why-us-text { text-align: center; }
  .why-us-text .btn-cta { margin-inline: auto; }
  .why-us-content h2 { font-size: 1.5rem; }
  .benefits { align-items: stretch; }
  .benefit { justify-content: center; text-align: center; flex-direction: column; gap: 0.3rem; }
  .benefit-dot { display: none; }
  .benefit-text h4 { font-size: 1.05rem; }
  .benefit-text p { font-size: 0.82rem; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    border-top: none; padding-top: 2rem; }
  .stat-card { text-align: center; padding: 0; border-left: none; }
  .stat-card .stat-number { font-size: 1.8rem; }
  .stat-card .stat-label { margin-top: 0.3rem; font-size: 0.8rem; }
  .about { padding: 4rem 0; }
  .about-image-wrapper img { height: 250px; }
  .about-content h2 { font-size: 1.5rem; }
  .faq { padding: 4rem 0; }
  .faq-question { font-size: 0.92rem; padding: 1rem 1.2rem; }
  .faq-answer-inner { padding: 0 1.2rem 1.2rem; font-size: 0.88rem; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .cta-card h2 { font-size: 1.4rem; }
  .footer { padding: 3rem 0 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-contact ul { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-ministry { justify-content: center; }
  .footer-links-grid { gap: 1.5rem; }
  .whatsapp-float { bottom: 1.2rem; left: 1.2rem; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 0 50px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-tagline { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; gap: 0.7rem; }
  .hero-buttons a,
  .hero-buttons button { width: 100%; justify-content: center; padding: 0.85rem 1.6rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat .number { font-size: 1.4rem; }
  .top-bar .container { gap: 1rem; }
  .about-image-wrapper img { height: 200px; }
  .about-accent { display: none; }
  .about-buttons { flex-direction: column; gap: 0.7rem; width: 100%; }
  .about-buttons a,
  .about-buttons button { width: 100%; justify-content: center; }
  .footer-bottom { font-size: 0.78rem; gap: 0.6rem; }
  .footer-bottom > * { line-height: 1.5; }
  .cta-card .btn-cta { width: 100%; justify-content: center; }
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
  position: relative;
  background: var(--primary);
  padding: 140px 0 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30,77,123,0.3) 0%, transparent 50%);
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; color: #fff;
  margin-bottom: 0.8rem;
}
.page-hero p {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 500px; margin-inline: auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { fill: rgba(255,255,255,0.3); transform: scaleX(-1); }
.breadcrumb span { color: var(--accent-light); }

/* ===== Contact Page ===== */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--bg-section);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-col h2 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--primary); margin-bottom: 1.5rem;
}
.contact-info-col h2 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--primary); margin-bottom: 0.4rem;
}
.contact-info-subtitle {
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Contact Methods */
.contact-methods {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.contact-method:last-child { border-bottom: none; }
.contact-method:hover {
  transform: translateX(-4px);
}
.contact-method-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(212,168,67,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-method-icon svg {
  width: 22px; height: 22px; fill: var(--accent);
}
.contact-method-icon--whatsapp {
  background: rgba(37,211,102,0.1);
}
.contact-method-icon--whatsapp svg { fill: #25d366; }
.contact-method-icon--facebook {
  background: rgba(66,103,178,0.1);
}
.contact-method-icon--facebook svg { fill: #4267B2; }
.contact-method-text {
  display: flex; flex-direction: column;
}
.contact-method-label {
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-method-value {
  font-size: 0.95rem; font-weight: 600;
  color: var(--primary);
}

/* License Badge */
.contact-license {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.contact-license a {
  display: flex; align-items: center; gap: 0.8rem;
  transition: var(--transition);
}
.contact-license a:hover {
  color: var(--accent);
}
.contact-license img {
  height: 36px; width: auto; opacity: 0.6;
}
.contact-license span {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.5;
}

/* Contact Page CF7 Styles */
.contact-form-col .wpcf7-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form-col .wpcf7-form p {
  margin: 0;
}
.contact-form-col .wpcf7-form-control-wrap {
  display: block; width: 100%;
}
.contact-form-col .wpcf7-form-control-wrap input[type="text"],
.contact-form-col .wpcf7-form-control-wrap input[type="tel"],
.contact-form-col .wpcf7-form-control-wrap input[type="email"],
.contact-form-col .wpcf7-form-control-wrap textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg-section);
  outline: none;
  color: var(--text-dark);
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
}
.contact-form-col .wpcf7-form-control-wrap textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-col .wpcf7-form-control-wrap input:focus,
.contact-form-col .wpcf7-form-control-wrap textarea:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}
.contact-form-col .wpcf7-form-control-wrap input::placeholder,
.contact-form-col .wpcf7-form-control-wrap textarea::placeholder {
  color: #999;
}
.contact-form-col .wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; width: 100%;
  background: var(--accent); color: #fff;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  transition: var(--transition);
  cursor: pointer; border: none;
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  box-shadow: 0 2px 12px rgba(212,168,67,0.3);
}
.contact-form-col .wpcf7-form input[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}
.contact-form-col .wpcf7-response-output {
  margin: 0.5rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.contact-form-col .wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.3rem;
}
.contact-form-col .wpcf7-spinner {
  display: none;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .page-hero { padding: 90px 0 40px; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: 0.95rem; }
  .contact-section { padding: 3rem 0 4rem; }
  .contact-form-col h2,
  .contact-info-col h2 { font-size: 1.1rem; }
  .contact-method {
    padding: 0.7rem 0; gap: 0.8rem;
  }
  .contact-method:hover { transform: none; }
  .contact-method-icon {
    width: 42px; height: 42px;
  }
  .contact-method-icon svg {
    width: 18px; height: 18px;
  }
  .contact-method-value { font-size: 0.9rem; }
  .contact-form-col .wpcf7-form-control-wrap input[type="text"],
  .contact-form-col .wpcf7-form-control-wrap input[type="tel"],
  .contact-form-col .wpcf7-form-control-wrap input[type="email"],
  .contact-form-col .wpcf7-form-control-wrap textarea {
    font-size: 16px;
    padding: 0.85rem 1rem;
  }
  .contact-form-col .wpcf7-form input[type="submit"] {
    font-size: 1rem;
    padding: 0.95rem 2rem;
  }
}

/* ===== 404 Page ===== */
.error-404-section {
  padding: 5rem 0 6rem;
  background: var(--bg-light);
}
.error-404-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.error-404-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.error-404-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.error-404-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.error-404-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== About Page ===== */
.about-intro {
  padding: 5rem 0;
  background: var(--bg-light);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-visual {
  position: relative;
}
.about-intro-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 800; color: var(--primary);
  margin-bottom: 1.5rem;
}
.about-intro-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

/* Services List Section */
.about-services {
  padding: 5rem 0;
  background: var(--bg-warm);
}
.about-services-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-services-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 800; color: var(--primary);
  margin-bottom: 2rem;
}
.about-services-list {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.about-services-list li {
  display: flex; align-items: flex-start; gap: 1rem;
}
.check-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 4px;
}
.check-icon svg { fill: currentColor; }
.about-services-list h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.about-services-list p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.about-services-visual .about-image-wrapper img {
  height: 500px;
}

/* Values Section */
.about-values {
  padding: 5rem 0 6rem;
  background: var(--bg-section);
}
.about-values-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-values-inner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 800; color: var(--primary);
  margin-bottom: 1.2rem;
}
.about-values-inner > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.about-values-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  text-align: center;
}
.pillar-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  background: rgba(212,168,67,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.pillar-icon svg { fill: currentColor; }
.pillar h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.pillar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-intro-grid,
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-services-grid .about-services-visual {
    order: -1;
  }
  .about-values-pillars {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-intro,
  .about-services,
  .about-values {
    padding: 3.5rem 0;
  }
  .about-intro-grid,
  .about-services-grid {
    gap: 2rem;
  }
  .about-services-visual .about-image-wrapper img {
    height: 280px;
  }
  .about-values-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pillar-icon {
    width: 54px; height: 54px;
  }
}

/* ===== Single Service Page ===== */
.page-hero-label {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.service-description-body {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}
.service-description-body p {
  margin-bottom: 1rem;
}
.service-description-body p:last-child { margin-bottom: 0; }
.service-description-body h2,
.service-description-body h3,
.service-description-body h4 {
  color: var(--primary);
  font-weight: 700;
  margin: 1.6rem 0 0.7rem;
}
.service-description-body h2 { font-size: 1.3rem; }
.service-description-body h3 { font-size: 1.15rem; }
.service-description-body h4 { font-size: 1.02rem; }
.service-description-body ul,
.service-description-body ol {
  margin: 0.8rem 0 1.2rem;
  padding-right: 1.5rem;
}
.service-description-body ul { list-style: disc; }
.service-description-body ol { list-style: decimal; }
.service-description-body li { margin-bottom: 0.4rem; }
.service-description-body a {
  color: var(--accent);
  text-decoration: underline;
}
.service-description-body a:hover { color: var(--accent-hover); }
.service-form-cta { margin-top: 1.5rem; border: none; cursor: pointer; font-family: inherit; }

/* ===== Legal Page (Privacy, Terms, etc.) ===== */
.legal-section {
  padding: 4.5rem 0 5.5rem;
  background: var(--bg-section);
}
.legal-content {
  max-width: 820px; margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 3rem 2.75rem;
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.9;
}
.legal-content > *:first-child { margin-top: 0; }
.legal-content > *:last-child { margin-bottom: 0; }
.legal-content p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: var(--primary);
  font-weight: 800;
  line-height: 1.4;
  margin: 2rem 0 0.8rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.legal-content h3 { font-size: 1.15rem; }
.legal-content h4 { font-size: 1.02rem; font-weight: 700; }
.legal-content ul,
.legal-content ol {
  margin: 0.8rem 0 1.3rem;
  padding-right: 1.4rem;
  color: var(--text-muted);
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--accent-hover); }
.legal-content strong { color: var(--primary); font-weight: 700; }
.legal-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  background: var(--bg-warm);
  border-right: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.97rem;
}
.legal-content hr {
  border: none;
  border-top: 1px solid rgba(15,43,76,0.08);
  margin: 2rem 0;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}
.legal-content th,
.legal-content td {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(15,43,76,0.08);
  text-align: right;
}
.legal-content th {
  background: var(--bg-section);
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .legal-section { padding: 2.5rem 0 3.5rem; }
  .legal-content {
    padding: 1.75rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .legal-content h2 { font-size: 1.2rem; }
  .legal-content h3 { font-size: 1.05rem; }
}

/* ===== Sitemap Page ===== */
.sitemap-section {
  padding: 4.5rem 0 5.5rem;
  background: var(--bg-section);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sitemap-col {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.sitemap-col:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sitemap-col .section-label {
  margin-bottom: 0.4rem;
}
.sitemap-col h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--accent);
}
.sitemap-list {
  display: flex; flex-direction: column;
  gap: 0.55rem;
}
.sitemap-list li a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: var(--transition);
}
.sitemap-list li a::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: var(--transition);
}
.sitemap-list li a:hover {
  color: var(--primary);
  transform: translateX(-4px);
}
.sitemap-list li a:hover::before {
  background: var(--primary);
  transform: scale(1.4);
}
.sitemap-extra {
  margin-top: 3rem;
  padding: 2rem 2.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  line-height: 1.85;
}
.sitemap-extra p { margin-bottom: 1rem; }
.sitemap-extra p:last-child { margin-bottom: 0; }

@media (max-width: 992px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sitemap-section { padding: 2.5rem 0 3.5rem; }
  .sitemap-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .sitemap-col { padding: 1.5rem 1.25rem; }
  .sitemap-extra { padding: 1.5rem 1.25rem; }
}

/* ===== Lead Form Modal ===== */
.lead-form-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.lead-form-modal[hidden] { display: none; }
.lead-form-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  animation: leadModalFade 0.2s ease;
}
.lead-form-modal-dialog {
  position: relative; z-index: 1;
  background: var(--accent);
  border-radius: 14px;
  width: 100%; max-width: 560px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  animation: leadModalIn 0.25s ease;
}
.lead-form-modal-dialog h2 {
  font-size: 1.15rem; font-weight: 700; color: var(--primary-dark);
  margin: 0 0 1rem;
}
.lead-form-modal-close {
  position: absolute; top: 0.7rem; left: 0.7rem;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.6); color: var(--primary-dark);
  border: none; border-radius: 50%; cursor: pointer;
  transition: var(--transition);
}
.lead-form-modal-close:hover { background: #fff; }
.lead-form-modal-dialog .lead-form { flex-direction: column; align-items: stretch; }
.lead-form-modal-dialog .lead-form .btn-cta { width: 100%; justify-content: center; }
body.lead-form-modal-open { overflow: hidden; }
@keyframes leadModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes leadModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
  .lead-form-modal { padding: 0.6rem; align-items: flex-end; }
  .lead-form-modal-dialog {
    padding: 1.5rem 1.25rem 1.25rem;
    max-height: calc(100vh - 1.2rem);
    border-radius: 16px 16px 0 0;
  }
  .lead-form-modal-dialog h2 {
    font-size: 1.05rem;
    padding-left: 2.5rem;
  }
  .lead-form-modal-close {
    top: 0.5rem; left: 0.5rem;
    width: 40px; height: 40px;
  }
}
