/* ============================================
   OVERBRUGGINGSKREDIET.NL — SHARED STYLES
   For service detail + legal pages
   INK + TEAL + AMBER
   ============================================ */

:root {
  --ink: #0A1128;
  --ink-2: #111D3A;
  --ink-3: #182649;
  --ink-surface: #0D1630;
  --teal: #0891B2;
  --teal-dark: #0E7490;
  --teal-light: #67E8F9;
  --teal-glow: rgba(8,145,178,0.15);
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FCD34D;
  --amber-glow: rgba(245,158,11,0.12);
  --sky: #38BDF8;
  --emerald: #34D399;
  --white: #FFFFFF;
  --snow: #F0F4F8;
  --warm-white: #FAFBFE;
  --g50: #F8FAFC; --g100: #F1F5F9; --g200: #E2E8F0; --g300: #CBD5E1;
  --g400: #94A3B8; --g500: #64748B; --g600: #475569; --g700: #334155;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--ink); color: var(--snow); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- MESH GRADIENT BG ---- */
.mesh-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(8,145,178,0.06), transparent),
    radial-gradient(ellipse 500px 500px at 85% 70%, rgba(245,158,11,0.04), transparent);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 0 48px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,17,40,0.88); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(8,145,178,0.08);
  transition: all 0.4s;
}
.navbar.scrolled { height: 62px; background: rgba(10,17,40,0.96); }
.nav-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); font-weight: 800;
  font-family: var(--font-body);
}
.nav-logo em { font-style: italic; color: var(--teal-light); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links > li > a, .nav-links > li > .nav-dropdown-trigger {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 500;
  color: var(--g400); letter-spacing: 0.02em; position: relative; transition: color 0.3s;
  cursor: pointer;
}
.nav-links > li > a:hover, .nav-links > li > a.active,
.nav-links > li > .nav-dropdown-trigger:hover, .nav-links > li > .nav-dropdown-trigger.active {
  color: var(--white);
}
.nav-links > li > a.active::after, .nav-links > li > .nav-dropdown-trigger.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
  background: var(--teal); border-radius: 1px;
}
.nav-cta {
  padding: 10px 24px; background: var(--teal); color: var(--white) !important;
  border-radius: 10px; font-weight: 600 !important;
  transition: all 0.3s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: 0.3s; }

/* ---- DROPDOWN ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-dropdown-arrow {
  opacity: 0.6; transition: transform 0.3s;
  display: inline-flex; align-items: center; line-height: 1;
}
.nav-dropdown-arrow svg { width: 14px; height: 14px; }
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(13, 22, 48, 0.98); backdrop-filter: blur(28px);
  border: 1px solid rgba(8,145,178,0.18); border-radius: 18px;
  padding: 16px; min-width: 780px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex !important; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: 12px;
  transition: background 0.2s;
  color: var(--g300) !important;
}
.nav-dropdown-item:hover {
  background: rgba(8,145,178,0.1);
  color: var(--white) !important;
}
.nav-dropdown-item.active { background: rgba(8,145,178,0.08); }
.nav-dropdown-item::after { display: none !important; }
.nav-dropdown-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(8,145,178,0.1); border: 1px solid rgba(8,145,178,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); flex-shrink: 0;
}
.nav-dropdown-icon svg { width: 18px; height: 18px; }
.nav-dropdown-item:hover .nav-dropdown-icon {
  background: rgba(8,145,178,0.2); border-color: rgba(8,145,178,0.35);
}
.nav-dropdown-content { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-title {
  font-size: 0.86rem; font-weight: 600; color: var(--white);
  line-height: 1.2;
}
.nav-dropdown-desc {
  font-size: 0.72rem; color: var(--g500); line-height: 1.4;
}
.nav-dropdown-item:hover .nav-dropdown-title { color: var(--teal-light); }

.nav-dropdown-footer {
  grid-column: 1 / -1;
  margin-top: 8px; padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--g400);
}
.nav-dropdown-footer a {
  color: var(--teal-light); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-dropdown-footer a svg { width: 14px; height: 14px; }
.nav-dropdown-footer a:hover { color: var(--white); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px; background: var(--teal); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.3s; position: relative;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(8,145,178,0.3); }
.btn-primary .arrow {
  transition: transform 0.3s;
  display: inline-flex; align-items: center; line-height: 1;
}
.btn-primary .arrow svg, .btn-outline .arrow svg { width: 16px; height: 16px; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  border-radius: 12px; cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-light); background: rgba(8,145,178,0.06); }

/* ---- COMPACT HERO (service/legal pages) ---- */
.hero-compact {
  position: relative; min-height: 56vh; display: flex; align-items: center;
  padding: 160px 48px 80px; overflow: hidden;
}
.hero-compact .hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-compact .hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.9); }
.hero-compact .hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(10,17,40,0.78) 0%, rgba(10,17,40,0.45) 50%, rgba(10,17,40,0.75) 100%);
}
.hero-compact .hero-mesh {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(ellipse 500px 300px at 20% 50%, rgba(8,145,178,0.12), transparent),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(245,158,11,0.06), transparent);
}
.hero-compact .hero-content {
  position: relative; z-index: 5; max-width: 880px; margin: 0 auto; width: 100%;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 8px; background: rgba(8,145,178,0.1);
  border: 1px solid rgba(8,145,178,0.2); border-radius: 100px;
  font-size: 0.76rem; font-weight: 600; color: var(--teal-light);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px;
}
.hero-eyebrow-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.hero-eyebrow-icon svg { width: 13px; height: 13px; }
.hero-compact h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-compact h1 .teal { color: var(--teal-light); }
.hero-compact h1 .italic { font-style: italic; }
.hero-compact .hero-sub {
  font-size: 1.05rem; color: var(--g300); line-height: 1.7; margin-bottom: 36px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.78rem; color: var(--g500); margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-breadcrumb a { transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--teal-light); }
.hero-breadcrumb .sep { opacity: 0.5; }

/* ---- SECTIONS ---- */
.section { position: relative; z-index: 2; padding: 100px 48px; }
.section-dark { background: var(--ink); }
.section-darker { background: var(--ink-surface); }
.section-light { background: var(--warm-white); color: var(--g700); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-narrow { max-width: 860px; margin: 0 auto; }

.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  color: var(--teal); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--teal); border-radius: 1px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; margin-bottom: 14px;
}
.section-dark .section-title, .section-darker .section-title { color: var(--white); }
.section-light .section-title { color: var(--ink); }
.section-light .section-eyebrow { color: var(--teal-dark); }
.section-light .section-eyebrow::before { background: var(--teal-dark); }
.section-title .italic { font-style: italic; }
.section-title .teal { color: var(--teal-light); }
.section-subtitle { font-size: 1.02rem; line-height: 1.75; }
.section-dark .section-subtitle, .section-darker .section-subtitle { color: var(--g400); }
.section-light .section-subtitle { color: var(--g500); }

/* ---- INTRO BLOCK (service detail) ---- */
.intro-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.intro-block.reversed { direction: rtl; }
.intro-block.reversed > * { direction: ltr; }
.intro-img-wrap {
  position: relative; border-radius: 22px; overflow: hidden;
}
.intro-img-wrap img {
  width: 100%; height: 460px; object-fit: cover; filter: brightness(0.85);
}
.intro-img-badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(10,17,40,0.85); backdrop-filter: blur(16px);
  border: 1px solid rgba(8,145,178,0.18); border-radius: 12px;
  padding: 10px 18px; display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal-light);
}
.intro-img-badge svg { width: 14px; height: 14px; }
.intro-text .lead {
  font-size: 1.05rem; color: var(--g300); line-height: 1.75; margin-bottom: 22px;
}
.intro-text p { color: var(--g400); line-height: 1.75; margin-bottom: 16px; font-size: 0.95rem; }

/* ---- BENEFITS GRID ---- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.benefit-card {
  background: rgba(13, 22, 48, 0.6); border: 1px solid rgba(8,145,178,0.1);
  border-radius: 18px; padding: 30px;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: rgba(8,145,178,0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.benefit-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(8,145,178,0.12); border: 1px solid rgba(8,145,178,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); margin-bottom: 20px;
  transition: all 0.3s;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card:hover .benefit-icon {
  background: rgba(8,145,178,0.22); border-color: rgba(8,145,178,0.4);
  transform: translateY(-2px);
}
.benefit-card h4 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.benefit-card p {
  font-size: 0.9rem; color: var(--g400); line-height: 1.7;
}

/* ---- PROCESS STEPS ---- */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  background: rgba(8,145,178,0.08); border: 2px solid rgba(8,145,178,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--teal); transition: all 0.3s;
}
.section-dark .step-num, .section-darker .step-num { color: var(--teal-light); }
.step-card:hover .step-num {
  background: var(--teal); color: var(--white); border-color: var(--teal);
  box-shadow: 0 0 36px rgba(8,145,178,0.3);
}
.step-card h4 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  margin-bottom: 8px;
}
.section-dark .step-card h4, .section-darker .step-card h4 { color: var(--white); }
.section-light .step-card h4 { color: var(--ink); }
.step-card p { font-size: 0.88rem; line-height: 1.6; }
.section-dark .step-card p, .section-darker .step-card p { color: var(--g400); }
.section-light .step-card p { color: var(--g500); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: rgba(13, 22, 48, 0.5); border: 1px solid rgba(8,145,178,0.1);
  border-radius: 14px; overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open { border-color: rgba(8,145,178,0.3); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; color: var(--white);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal-light); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(8,145,178,0.1); border: 1px solid rgba(8,145,178,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--teal-light);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 26px 24px; color: var(--g400);
  line-height: 1.75; font-size: 0.94rem;
}

/* ---- KEYWORDS / TAGS ---- */
.keyword-cloud {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.keyword-tag {
  display: inline-block; padding: 7px 14px;
  background: rgba(8,145,178,0.08); border: 1px solid rgba(8,145,178,0.15);
  border-radius: 100px; font-size: 0.8rem; color: var(--g300);
  transition: all 0.2s;
}
.keyword-tag:hover { background: rgba(8,145,178,0.18); color: var(--teal-light); }

/* ---- LEGAL PAGES ---- */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700; color: var(--white); margin-top: 48px; margin-bottom: 18px;
  line-height: 1.25;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  color: var(--teal-light); margin-top: 32px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.legal-content p {
  color: var(--g300); line-height: 1.8; margin-bottom: 16px;
  font-size: 0.95rem;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 20px 22px; color: var(--g300);
}
.legal-content li { margin-bottom: 10px; line-height: 1.7; font-size: 0.93rem; }
.legal-content strong { color: var(--white); font-weight: 600; }
.legal-content a { color: var(--teal-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--white); }
.legal-meta {
  background: rgba(13, 22, 48, 0.6); border: 1px solid rgba(8,145,178,0.12);
  border-radius: 14px; padding: 20px 24px; margin-bottom: 40px;
  font-size: 0.88rem; color: var(--g400);
}
.legal-meta strong { color: var(--white); }

/* ---- CTA ---- */
.cta-section {
  position: relative; z-index: 2; padding: 120px 48px; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,17,40,0.7), rgba(10,17,40,0.45));
}
.cta-inner {
  position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.18;
}
.cta-inner h2 .italic { font-style: italic; }
.cta-inner h2 .teal { color: var(--teal-light); }
.cta-inner p { font-size: 1.05rem; color: var(--g300); margin-bottom: 38px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- RELATED SERVICES ---- */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.related-card {
  background: rgba(13, 22, 48, 0.6); border: 1px solid rgba(8,145,178,0.1);
  border-radius: 16px; padding: 26px;
  transition: all 0.3s; display: block;
}
.related-card:hover {
  border-color: rgba(8,145,178,0.3);
  transform: translateY(-3px);
  background: rgba(13, 22, 48, 0.85);
}
.related-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(8,145,178,0.1); border: 1px solid rgba(8,145,178,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); margin-bottom: 18px;
}
.related-icon svg { width: 22px; height: 22px; }
.related-card .related-cta svg { width: 14px; height: 14px; }
.related-card h4 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.related-card p {
  font-size: 0.86rem; color: var(--g400); line-height: 1.6; margin-bottom: 16px;
}
.related-card .related-cta {
  font-size: 0.82rem; color: var(--teal-light); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.related-card:hover .related-cta { color: var(--white); }

/* ---- FOOTER ---- */
footer {
  position: relative; z-index: 2; padding: 80px 48px 32px;
  background: var(--ink-2); border-top: 1px solid rgba(8,145,178,0.05);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.88rem; color: var(--g500); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.86rem; color: var(--g500); transition: 0.3s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--g600); gap: 20px; flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--teal); }

/* ---- ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .intro-block { grid-template-columns: 1fr; gap: 40px; }
  .intro-block.reversed { direction: ltr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-dropdown-menu { min-width: 640px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 76px; left: 0; right: 0;
    background: rgba(10,17,40,0.98); backdrop-filter: blur(20px);
    padding: 24px 20px; gap: 8px;
    border-bottom: 1px solid rgba(8,145,178,0.1);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open > li { padding: 8px 0; }
  .nav-links.open > li > a, .nav-links.open > li > .nav-dropdown-trigger {
    padding: 10px 0; font-size: 1rem;
  }
  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    position: static; transform: none; left: auto;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; min-width: auto; width: 100%;
    grid-template-columns: 1fr; padding: 4px 0 8px 12px;
    background: transparent; border: none; backdrop-filter: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-dropdown-item { padding: 10px 12px; }
  .nav-dropdown-icon { width: 32px; height: 32px; }
  .nav-dropdown-icon svg { width: 16px; height: 16px; }
  .nav-dropdown-title { font-size: 0.82rem; }
  .nav-dropdown-desc { font-size: 0.7rem; }
  .nav-dropdown-footer { display: none; }
  .hero-compact { padding: 130px 20px 60px; min-height: auto; }
  .section { padding: 70px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-section { padding: 80px 20px; }
  .intro-img-wrap img { height: 300px; }
  .btn-primary, .btn-outline { padding: 15px 28px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .hero-compact h1 { font-size: 2rem; }
  .hero-compact .hero-sub { font-size: 0.95rem; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
