@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0d3b78;
  --bg-soft: #123f86;
  --panel: rgba(255, 255, 255, 0.10);
  --panel-border: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text-muted: #d9e7ff;
  --accent: #d62828;
  --accent-2: #ffffff;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #ffffff;
  color: #122033;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

main {
  padding: 0;
}

.section {
  max-width: 100%;
  margin: 0;
}

/* HEADER & NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 59, 120, 0.10);
  box-shadow: 0 8px 24px rgba(13, 59, 120, 0.06);
}

.header-container {
  max-width: 1250px;
  margin: 0 auto;
  min-height: 78px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d3b78;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid #d62828;
  box-shadow: 0 10px 20px rgba(13, 59, 120, 0.12);
}

.brand-text {
  color: #0d3b78;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: #35557e;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #0d3b78;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  background: #d62828;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214, 40, 40, 0.24);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 24px;
  padding: 0;
}

.top-menu {
  position: fixed;
  top: 0;
  left: -270px;
  width: 250px;
  height: 100dvh;
  background: rgba(10, 16, 28, 0.96);
  color: white;
  padding: 80px 20px 20px;
  box-sizing: border-box;
  transition: left 0.3s ease;
  z-index: 1300;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.top-menu.show {
  left: 0;
}

.top-menu .logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 30px;
}

.top-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-menu ul li {
  margin-bottom: 20px;
}

.top-menu ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.top-menu ul li a:hover,
.top-menu ul li a.active {
  color: var(--accent);
  transform: translateX(4px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 1250;
}

.menu-overlay.show {
  display: block;
}

/* HERO */
.hero-split {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 130px 24px 80px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(13, 59, 120, 0.97), rgba(7, 32, 70, 0.96)),
    radial-gradient(circle at top left, rgba(214, 40, 40, 0.18), transparent 30%);
}

.hero-layout {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-main-image {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: 26px;
  border: 4px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary,
.video-link {
  background: #d62828;
  color: #ffffff;
  border: 1px solid #d62828;
}

.btn-primary:hover,
.header-cta:hover,
.video-link:hover {
  background: #b71f1f;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(214, 40, 40, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

/* INTRO / FEATURE AREA */
.intro-band {
  width: 100%;
  margin: 0;
  padding: 90px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.intro-shell {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

.intro-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
  width: 100%;
}

.intro-copy {
  background: #ffffff;
  border: 1px solid rgba(13, 59, 120, 0.10);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 26px rgba(13, 59, 120, 0.08);
}

.intro-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #d62828;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy h2 {
  margin: 0 0 16px;
  color: #0d3b78;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.intro-copy p {
  margin: 0 0 14px;
  color: #334a68;
  line-height: 1.8;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-image-wrap {
  display: flex;
  justify-content: center;
}

.intro-main-image {
  width: 100%;
  max-width: 520px;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(13, 59, 120, 0.14);
  border: 1px solid rgba(13, 59, 120, 0.08);
}

.feature-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

.highlight-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(13, 59, 120, 0.10);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(13, 59, 120, 0.08);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d62828;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(214, 40, 40, 0.18);
}

.highlight-card h3 {
  margin: 0 0 8px;
  color: #0d3b78;
  font-size: 1.08rem;
}

.highlight-card p {
  margin: 0;
  color: #4c627d;
  line-height: 1.7;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 36px;
}

.service-list-card,
.service-points-card,
.service-badge-card {
  background: #ffffff;
  border: 1px solid rgba(13, 59, 120, 0.10);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(13, 59, 120, 0.08);
}

.service-list-card h3,
.service-points-card h3 {
  margin: 0 0 16px;
  color: #0d3b78;
  font-size: 1.2rem;
}

.service-checklist {
  margin: 0;
  padding-left: 24px;
  color: #22344d;
}

.service-checklist li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.service-badge-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-badge-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d3b78, #194d98);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(13, 59, 120, 0.20);
  text-align: center;
  border: 6px solid rgba(255, 255, 255, 0.30);
}

.service-badge-circle span {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.service-badge-circle strong {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  margin: 10px 0 8px;
  color: #ffffff;
}

.service-badge-circle small {
  font-size: 1rem;
  color: #d9e7ff;
}

.service-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 59, 120, 0.08);
}

.service-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.point-mark {
  color: #d62828;
  font-size: 1rem;
  line-height: 1.5;
}

.service-point p {
  margin: 0;
  color: #334a68;
  line-height: 1.7;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #0d3b78, #123f86);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(13, 59, 120, 0.14);
}

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 18px 16px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-item:last-child {
  border-right: none;
}

.strip-icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* VIDEOS */
.videos-section {
  padding: 90px 24px 70px;
  background: #f7faff;
}

.section-heading,
.video-grid {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 30px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #d62828;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: #0d3b78;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-heading p {
  margin: 0;
  color: #47607e;
  line-height: 1.8;
}

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

.video-card {
  background: #ffffff;
  border: 1px solid rgba(13, 59, 120, 0.10);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13, 59, 120, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 40, 40, 0.20);
  box-shadow: 0 16px 34px rgba(13, 59, 120, 0.12);
}

.video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.video-card-body {
  padding: 20px;
}

/* TRUST / CONSULT */
.trust-section {
  max-width: 100%;
  margin: 0;
  padding: 70px 0 90px;
}

.trust-grid {
  max-width: 1250px;
  margin: 0 auto 48px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.trust-card {
  background: #161f31;
  border: 1px solid rgba(110, 160, 255, 0.14);
  border-radius: 24px;
  padding: 42px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 209, 255, 0.30);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.trust-icon {
  display: inline-block;
  font-size: 2.1rem;
  margin-bottom: 22px;
}

.trust-card h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

.trust-card p {
  margin: 0;
  color: #aeb9d4;
  font-size: 1rem;
  line-height: 1.75;
}

.consult-banner {
  width: 100%;
  background: linear-gradient(135deg, #16263a 0%, #103845 100%);
  border-top: 1px solid rgba(79, 209, 255, 0.10);
  border-bottom: 1px solid rgba(79, 209, 255, 0.10);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.20);
}

.consult-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.consult-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.25;
  max-width: 780px;
}

.consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 32px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: #08111f;
  background: linear-gradient(135deg, #58c7f3, #17d0b7);
  box-shadow: 0 14px 28px rgba(23, 208, 183, 0.18);
  white-space: nowrap;
  width: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.consult-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 208, 183, 0.24);
}

/* FOOTER */
.site-footer {
  margin-top: 80px;
  background: linear-gradient(180deg, #121826 0%, #0a0f18 100%);
  color: #eaf1ff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h2,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-brand p {
  color: #aebbd6;
  line-height: 1.8;
  max-width: 420px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.social-links a {
  color: #b8c6e3;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer-reviews h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.45rem;
}

.google-review-badge,
.google-review-badge:link,
.google-review-badge:visited {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 188, 5, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  color: #ffffff;
}

.google-review-badge:hover,
.google-review-badge:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(251, 188, 5, 0.48);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  color: #ffffff;
}

.google-stars {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #fbbc05;
  line-height: 1;
  text-shadow: 0 0 10px rgba(251, 188, 5, 0.18);
}

.google-review-text {
  color: #eef4ff;
  line-height: 1.35;
  font-weight: 700;
}

.google-review-text small {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: #9fb0cf;
  font-weight: 500;
}

.google-review-badge:hover .google-stars {
  color: #ffd54a;
}

.google-review-badge:hover .google-review-text,
.google-review-badge:hover .google-review-text small {
  color: #ffffff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #8fa1c4;
  font-size: 0.95rem;
}

/* ANIMATIONS */
.zoomable,
.zoom-text {
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.zoomable:hover,
.zoom-text:hover {
  box-shadow: 0 18px 45px rgba(79, 209, 255, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 30, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  background: white;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: none;
}

.lightbox-text {
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  background: #101827;
  color: #f3f7ff;
  padding: 40px;
  border-radius: 16px;
  font-size: 28px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.lightbox-text-inner {
  animation: textFadeUp 0.35s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: white;
  color: #162433;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  z-index: 2100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.lang-link {
  text-decoration: none;
  font-weight: 700;
  color: #35557e;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.lang-link:hover {
  background: rgba(13, 59, 120, 0.08);
  color: #0d3b78;
}

.lang-link.active {
  background: #0d3b78;
  color: #ffffff;
}

.lang-divider {
  color: #9fb0cf;
}
@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal,
.slide-left,
.slide-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-reveal {
  transform: translateY(40px);
}

.slide-left {
  transform: translateX(-50px);
}

.slide-right {
  transform: translateX(50px);
}

.scroll-reveal.show,
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* STATE CLASSES */
body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

 .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 88px;
  height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  background: #0d3b78;
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
  .header-container {
    min-height: 74px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-split {
    min-height: auto;
    padding: 110px 20px 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-main-image {
    margin: 0 auto;
    max-width: 100%;
  }

  .intro-band {
    padding: 70px 20px;
  }

  .intro-top {
    grid-template-columns: 1fr;
  }

  .feature-highlight-grid {
    grid-template-columns: 1fr;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-badge-circle {
    width: 180px;
    height: 180px;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .videos-section {
    padding: 70px 20px 50px;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .consult-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 20px 28px;
  }

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

  .social-links {
    gap: 10px;
  }

  .top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 78vw;
    max-width: 320px;
    height: 100dvh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .top-menu.show {
    transform: translateX(0);
  }

  .menu-overlay {
    inset: 0;
    width: 100vw;
    max-width: 100vw;
  }
}

@media (max-width: 600px) {
  .header-actions {
    gap: 0;
  }

  .brand-text {
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .intro-copy {
    padding: 24px;
  }

  .content-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
  }

  .content-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-bar {
    flex-direction: column;
    padding: 24px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-card-body {
    padding: 18px;
  }

  .lightbox-text {
    padding: 24px;
    font-size: 20px;
    line-height: 1.7;
  }

  .trust-section {
    padding: 50px 0 70px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .trust-card {
    padding: 32px 22px;
  }

  .consult-inner {
    padding: 28px 16px;
  }

  .consult-button {
    min-height: 56px;
    padding: 0 24px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
  }

  .feature-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-layout {
    grid-template-columns: 1fr 280px 1fr;
  }

  .service-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-container {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}