@charset "UTF-8";

/* ===========================================
   DESIGN TOKENS
=========================================== */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2040;
  --navy-light: #162B52;
  --blue:       #2D6BE4;
  --blue-light: #4A83F0;
  --blue-dim:   #1A3F8A;
  --cream:      #F5F2EC;
  --white:      #FFFFFF;
  --gray-100:   #F8F8F6;
  --gray-200:   #EEECEA;
  --gray-400:   #9A9890;
  --gray-600:   #5A5855;
  --gray-800:   #2A2825;
  --text:       #1A1916;

  --ff-display: 'Outfit', system-ui, sans-serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --max: 1200px;
  --px: clamp(20px, 5vw, 48px);
}

/* ===========================================
   RESET & BASE
=========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

/* ===========================================
   UTILITY
=========================================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.eyebrow.light { color: #6A9AF5; }
.eyebrow.light::before { background: #6A9AF5; }

/* ===========================================
   SECTION UTILITIES
=========================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--navy); }

.section-header { margin-bottom: 52px; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}
.section-subtitle.light { color: rgba(255,255,255,0.5); }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.link-arrow:hover { border-color: var(--blue); gap: 10px; }
.link-arrow.light { color: rgba(255,255,255,0.5); }
.link-arrow.light:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ===========================================
   SCROLL ANIMATIONS
=========================================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.anim-ready {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.anim-ready.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================================
   TOP BAR
=========================================== */
.topbar {
  background: var(--navy);
  padding: 9px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-contact {
  display: flex;
  gap: 28px;
}

.topbar-contact a {
  color: var(--gray-400);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact a:hover { color: var(--white); }

.topbar-contact svg { opacity: 0.6; }

.lang-switch {
  display: flex;
  gap: 2px;
}

.lang-switch a {
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.lang-switch a.active {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.lang-switch a:hover { color: var(--white); }

/* ===========================================
   HEADER / NAV
=========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-top: 3px;
}

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}

.nav-link.has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.6;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
  flex-shrink: 0;
  position: static;
  background: none;
}

.nav-item-wrap.open .nav-link.has-dropdown::after {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-item-wrap.open .nav-link.has-dropdown {
  color: var(--white);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
}

/* ===========================================
   MEGA MENU
=========================================== */
.nav-item-wrap {
  position: static;
}

.mega-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    visibility 0.28s;
  pointer-events: none;
}

.nav-item-wrap.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mega-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 380px;
}

.mega-tabs {
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
  border-radius: 0;
}

.mega-tab:hover {
  background: rgba(255,255,255,0.04);
}

.mega-tab.active {
  background: rgba(45,107,228,0.1);
  border-left-color: var(--blue);
}

.mega-tab-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.mega-tab.active .mega-tab-icon {
  border-color: rgba(45,107,228,0.5);
  color: var(--blue-light);
  background: rgba(45,107,228,0.08);
}

.mega-tab-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.mega-tab.active .mega-tab-label {
  color: rgba(255,255,255,0.85);
}

.mega-panels {
  padding: 32px 0 32px 40px;
}

.mega-panel {
  display: none;
}

.mega-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  animation: panelFade 0.22s var(--ease-out) both;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mega-col {
  padding: 0 28px 0 0;
}

.mega-col + .mega-col {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.mega-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 2px;
  transition: background 0.18s;
  cursor: pointer;
}

.mega-link:hover {
  background: rgba(255,255,255,0.04);
}

.mega-link-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 1px;
  transition: opacity 0.2s;
}

.mega-link:hover .mega-link-icon { opacity: 1; }

.mega-link-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
  transition: color 0.2s;
}

.mega-link:hover .mega-link-name { color: var(--white); }

.mega-link-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  font-weight: 300;
}

.mega-cta-card {
  background: rgba(45,107,228,0.08);
  border: 1px solid rgba(45,107,228,0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.mega-cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
  opacity: 0.7;
}

.mega-cta-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin-bottom: 16px;
}

.mega-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s, gap 0.2s;
  align-self: flex-start;
}

.mega-cta-btn:hover {
  background: var(--blue-light);
  gap: 10px;
}

.mega-backdrop {
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(0,0,0,0.35);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
  pointer-events: none;
}

.mega-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ===========================================
   BUTTONS
=========================================== */
.btn-nav {
  padding: 9px 22px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,107,228,0.3);
}

.btn-primary svg { flex-shrink: 0; transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost-light:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--white);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.btn-cta svg { transition: transform 0.2s; }
.btn-cta:hover svg { transform: translateX(4px); }

/* ===========================================
   CTA SECTION
=========================================== */
.cta-section {
  background: var(--blue);
  padding: 80px var(--px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 14px;
  line-height: 1.3;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* ===========================================
   FOOTER
=========================================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-main {
  padding: 64px var(--px) 48px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-contact-item {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-contact-item:hover { color: rgba(255,255,255,0.7); }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-link:hover { color: rgba(255,255,255,0.75); }

.footer-link.active-page {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.footer-cert {
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.footer-cert-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 6px;
}

.footer-cert-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px var(--px);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===========================================
   MOBILE STICKY BAR
=========================================== */
@media (max-width: 768px) {
  .mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    display: flex;
    gap: 12px;
  }

  .mobile-sticky a {
    flex: 1;
    text-align: center;
    padding: 11px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
  }

  .mobile-sticky .ms-cta {
    background: var(--blue);
    color: var(--white);
  }

  .mobile-sticky .ms-tel {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
  }
}

@media (min-width: 769px) {
  .mobile-sticky { display: none; }
}

/* ===========================================
   MOBILE NAV — HAMBURGER
=========================================== */
.nav-hamburger {
  display: none;
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
    transform-origin: center;
  }

  body.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===========================================
   MOBILE NAV — OVERLAY
=========================================== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s;
}

body.nav-open .mobile-nav-overlay {
  display: block;
  opacity: 1;
}

/* ===========================================
   MOBILE NAV — DRAWER
=========================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--navy-mid);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
  overflow-x: hidden;
  border-left: 1px solid rgba(255,255,255,0.08);
}

body.nav-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  background: var(--navy);
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.mobile-nav-close:hover { color: var(--white); }

/* Nav body */
.mobile-nav-body {
  flex: 1;
  padding: 8px 0;
}

.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
  font-family: var(--ff-body);
}

.mobile-nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.mobile-nav-link.active { color: var(--white); }

/* Accordion */
.mobile-nav-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--ff-body);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav-accordion-trigger svg {
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
  opacity: 0.5;
}

.mobile-nav-accordion.open .mobile-nav-accordion-trigger {
  color: var(--white);
  background: rgba(45, 107, 228, 0.1);
  border-bottom-color: transparent;
}

.mobile-nav-accordion.open .mobile-nav-accordion-trigger svg {
  transform: rotate(180deg);
  opacity: 0.8;
}

.mobile-nav-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  background: rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-accordion.open .mobile-nav-accordion-panel {
  max-height: 700px;
}

.mobile-nav-group {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-nav-group:last-child { border-bottom: none; }

.mobile-nav-group-title {
  padding: 4px 24px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--ff-body);
}

.mobile-nav-sub-link {
  display: block;
  padding: 8px 24px 8px 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, background 0.2s;
  font-family: var(--ff-body);
}

.mobile-nav-sub-link:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.03);
}

/* Footer */
.mobile-nav-footer {
  padding: 20px 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  background: var(--navy);
}

.mobile-nav-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: block;
  padding: 13px 20px;
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-contact a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  font-family: var(--ff-body);
}

.mobile-nav-contact a:hover { color: rgba(255,255,255,0.75); }
.mobile-nav-contact svg { opacity: 0.5; flex-shrink: 0; }

/* ===========================================
   RESPONSIVE — SHARED
=========================================== */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav { display: none; }
  .header-inner { justify-content: space-between; }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ===========================================
   PAGE HERO (shared across subpages)
=========================================== */
.page-hero {
  background: var(--navy);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(45,107,228,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,107,228,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,107,228,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.page-hero-content { padding-bottom: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { color: rgba(255,255,255,0.15); }
.breadcrumb-current { color: rgba(255,255,255,0.55); }

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 10px;
  border: 1px solid rgba(45,107,228,0.35);
  border-radius: 2px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6A9AF5;
}

.page-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.page-h1 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.page-h1 em { font-style: normal; color: #6A9AF5; }

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4; display: block; }

.page-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-diagram {
  width: 100%;
  max-width: 340px;
  position: relative;
}

.hero-diagram::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--blue) 20%, var(--blue) 80%, transparent);
  opacity: 0.3;
}

.hero-diagram-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, border-color 0.2s;
  animation: cardSlideIn 0.6s var(--ease-out) both;
}

.hero-diagram-card:hover { background: rgba(45,107,228,0.08); border-color: rgba(45,107,228,0.25); }
.hero-diagram-card:nth-child(1) { animation-delay: 0.4s; }
.hero-diagram-card:nth-child(2) { animation-delay: 0.55s; }
.hero-diagram-card:nth-child(3) { animation-delay: 0.7s; }
.hero-diagram-card:nth-child(4) { animation-delay: 0.85s; }

@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hdc-icon {
  width: 36px;
  height: 36px;
  background: rgba(45,107,228,0.15);
  border: 1px solid rgba(45,107,228,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.hdc-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 2px; }
.hdc-sub { font-size: 11px; color: rgba(255,255,255,0.3); }

@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

/* ===========================================
   INDEX PAGE — HERO
=========================================== */
.hero {
  background: var(--navy);
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,107,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,107,228,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 78% 50%, rgba(45,107,228,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  padding: 60px 48px 60px calc(var(--px) + max(0px, (100vw - var(--max)) / 2));
  position: relative;
  z-index: 2;
  animation: heroIn 0.9s var(--ease-out) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border: 1px solid rgba(45,107,228,0.35);
  border-radius: 2px;
  margin-bottom: 32px;
  animation: heroIn 0.9s 0.1s var(--ease-out) both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6A9AF5;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroIn 0.9s 0.15s var(--ease-out) both;
}

.hero-h1 em { font-style: normal; color: #6A9AF5; }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 30px;
  font-weight: 300;
  animation: heroIn 0.9s 0.2s var(--ease-out) both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: heroIn 0.9s 0.25s var(--ease-out) both;
}

.hero-tags {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: heroIn 0.9s 0.3s var(--ease-out) both;
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-tag::before {
  content: none;
}

/* ══════════════════════════════════════════
   HERO VISUAL — Izometrikus 3D Kocka Diagram
══════════════════════════════════════════ */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0d1f3c 0%, #0A1628 60%, #060e1d 100%);
  overflow: hidden;
}
 
/* Perspektíva-grid háttér */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,107,228,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,107,228,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
 
/* Ambient glow a közepe felé */
.hero-visual::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,107,228,0.12) 0%, transparent 70%);
  pointer-events: none;
}
 
.hero-visual-inner {
  position: relative;
  width: 460px;
  height: 460px;
  animation: heroIn 1.1s 0.3s var(--ease-out) both;
}
 
/* ── ISO kocka wrapper ── */
.iso-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: 200px;
  height: 200px;
}
 
/* Izometrikus vetítési alap */
.iso-layer {
  position: absolute;
  left: 50%;
  transform-style: preserve-3d;
}
 
/* Lebegő rétegek – izometrikus kocka CSS transform-mal */
/* Outer wrapper: pozicionálás + opacity fade – nincs preserve-3d (Safari fix) */
.cube-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  animation: cubeOpacityIn 0.8s 0.5s var(--ease-out) both;
}

@keyframes cubeOpacityIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* cube-wrap: csak 3D transform, opacity animáció nélkül */
.cube-wrap {
  width: 120px;
  height: 120px;
  transform-style: preserve-3d;
  animation: cubeSpin 0.8s 0.5s var(--ease-out) both, cubeFloat 6s 1.5s ease-in-out infinite;
}

@keyframes cubeSpin {
  from { transform: rotateX(60deg) rotateZ(-45deg) scale(0.5); }
  to   { transform: rotateX(60deg) rotateZ(-45deg) scale(1); }
}

@keyframes cubeFloat {
  0%, 100% { transform: rotateX(60deg) rotateZ(-45deg) translateZ(0px); }
  50%       { transform: rotateX(60deg) rotateZ(-45deg) translateZ(12px); }
}
 
/* Kocka lapok */
.cube-face {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(74,131,240,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.cube-top {
  background: linear-gradient(135deg, rgba(74,131,240,0.35) 0%, rgba(45,107,228,0.15) 100%);
  transform: rotateX(0deg);
  box-shadow: inset 0 0 30px rgba(74,131,240,0.15), 0 0 40px rgba(45,107,228,0.3);
  border-color: rgba(74,131,240,0.7);
}
 
/* EUline logo a tetőn */
.cube-logo {
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(74,131,240,0.6));
}
 
/* Lebegő réteg-lemezek (a kocka körül) */
.float-layer {
  position: absolute;
  left: 50%;
  transform-style: preserve-3d;
  animation: layerFloat 0.7s var(--ease-out) both;
}
 
@keyframes layerFloat {
  from { opacity: 0; transform: translateX(-50%) rotateX(60deg) rotateZ(-45deg) translateZ(-20px); }
  to   { opacity: 1; }
}
 
.float-layer-1 {
  top: calc(50% + 52px);
  animation-delay: 0.9s;
  transform: translateX(-50%) rotateX(60deg) rotateZ(-45deg);
}
.float-layer-2 {
  top: calc(50% + 82px);
  animation-delay: 1.1s;
  transform: translateX(-50%) rotateX(60deg) rotateZ(-45deg);
}
.float-layer-3 {
  top: calc(50% + 112px);
  animation-delay: 1.3s;
  transform: translateX(-50%) rotateX(60deg) rotateZ(-45deg);
}
 
.layer-plate {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(45,107,228,0.25);
  background: rgba(15,32,64,0.3);
  box-shadow: 0 0 20px rgba(45,107,228,0.08);
}
 
/* ── Hálózati vonalak SVG ── */
.net-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
 
.net-beam {
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: beamDraw 1.5s var(--ease-out) forwards;
}
 
.net-beam.beam-blue  { stroke: rgba(45,107,228,0.35); }
.net-beam.beam-cyan  { stroke: rgba(56,189,248,0.3); }
.net-beam.beam-gold  { stroke: rgba(245,158,11,0.25); }
 
.net-beam:nth-child(1)  { animation-delay: 0.8s; }
.net-beam:nth-child(2)  { animation-delay: 1.0s; }
.net-beam:nth-child(3)  { animation-delay: 1.1s; }
.net-beam:nth-child(4)  { animation-delay: 1.2s; }
.net-beam:nth-child(5)  { animation-delay: 1.3s; }
.net-beam:nth-child(6)  { animation-delay: 1.4s; }
.net-beam:nth-child(7)  { animation-delay: 1.5s; }
.net-beam:nth-child(8)  { animation-delay: 1.6s; }
 
@keyframes beamDraw {
  to { stroke-dashoffset: 0; }
}
 
/* Flow animáció a vonalakon */
.flow-dot {
  r: 3;
  fill: rgba(74,131,240,0.8);
  filter: drop-shadow(0 0 4px rgba(74,131,240,0.9));
  animation: flowMove 3s linear infinite;
}
.flow-dot-gold {
  fill: rgba(245,158,11,0.8);
  filter: drop-shadow(0 0 4px rgba(245,158,11,0.7));
  animation-duration: 4s;
  animation-delay: 1s;
}
 
/* ── SVG Node groups ── */
.vis-node-g {
  animation: nodeIn3d 0.5s var(--ease-out) both;
  cursor: default;
}
 
@keyframes nodeIn3d {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}
 
.vis-node-g circle:first-child {
  transition: filter 0.25s, stroke-opacity 0.25s;
}
 
.vis-node-g:hover circle:first-child {
  filter: url(#glow);
  stroke: rgba(74,131,240,0.85);
}
 
.node-lbl {
  font-family: var(--ff-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  fill: rgba(255,255,255,0.65);
}
 
/* Corner accents */
.hero-geo {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(45,107,228,0.07);
  border-radius: 50%;
}
.hero-geo-2 {
  position: absolute;
  bottom: -90px; right: -90px;
  width: 300px; height: 300px;
  border: 1px solid rgba(45,107,228,0.04);
  border-radius: 50%;
}

/* ===========================================
   TRUST BAR
=========================================== */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 28px 24px;
  border-right: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.trust-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}

.trust-label {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
  font-weight: 400;
}

/* ===========================================
   SERVICE PILLARS (index)
=========================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.pillar-card {
  background: var(--white);
  padding: 44px 36px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--gray-200);
  transition: background 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.pillar-card:last-child { border-right: none; }

/* Kék felső akcentus — mindig látható, hover-re teljes */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  opacity: 0.3;
  transition: opacity 0.25s var(--ease-out);
}

.pillar-card::after { display: none; }

.pillar-card:hover {
  background: #fafbff;
  box-shadow: inset 0 0 0 1px rgba(45,107,228,0.12);
}

.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,107,228,0.07);
  border: 1px solid rgba(45,107,228,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--blue);
  transition: background 0.25s, border-color 0.25s;
}

.pillar-card:hover .pillar-icon {
  background: rgba(45,107,228,0.14);
  border-color: rgba(45,107,228,0.4);
}

.pillar-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
  flex: 1;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 3px 10px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

/* Részletek — btn-primary stílusú CTA */
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 13px 26px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  border-top: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.pillar-link svg { flex-shrink: 0; transition: transform 0.2s; }

.pillar-link:hover,
.pillar-card:hover .pillar-link {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,107,228,0.3);
}

.pillar-link:hover svg,
.pillar-card:hover .pillar-link svg { transform: translateX(3px); }

/* ===========================================
   WHY EULINE (index)
=========================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
}

.why-item {
  background: var(--gray-100);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.25s;
}

.why-item:hover { background: var(--white); }

.why-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: 2px;
}

.why-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--ff-display);
}

.why-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================================
   PROCESS (index)
=========================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  background: var(--gray-200);
}

.process-step {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
}

.step-number {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s;
}

.process-step:hover .step-number { color: rgba(45,107,228,0.15); }

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
}

.step-connector {
  position: absolute;
  top: 36px;
  right: -1px;
  width: 2px;
  height: 24px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

/* ===========================================
   REFERENCES (index)
=========================================== */
.refs-sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.sector-tag {
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
  cursor: default;
}

.sector-tag:hover {
  border-color: rgba(45,107,228,0.5);
  color: rgba(255,255,255,0.8);
  background: rgba(45,107,228,0.08);
}

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

.quote-card {
  background: rgba(255,255,255,0.03);
  padding: 36px 32px;
  transition: background 0.25s;
  border: 1px solid rgba(255,255,255,0.06);
}

.quote-card:hover { background: rgba(255,255,255,0.06); }

.quote-mark {
  font-family: var(--ff-display);
  font-size: 48px;
  line-height: 1;
  color: var(--blue-dim);
  margin-bottom: 16px;
  display: block;
}

.quote-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}

.quote-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.quote-client {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.quote-service {
  font-size: 11px;
  color: var(--blue-light);
  opacity: 0.7;
}

.partners-bar {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.partners-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 24px;
}

.partners-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 2px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.partner-logo-item:hover {
  opacity: 0.85;
}

.partner-logo-img {
  max-height: 58px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero::after { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--gray-200); }
  .why-grid, .quotes-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   RÓLUNK PAGE
=========================================== */
.about-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 100% 50%, rgba(45,107,228,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,107,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,107,228,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.about-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.about-stat {
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}
.about-stat:hover { background: rgba(45,107,228,0.08); }

.about-stat-num {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mission-text .lead {
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}

.mission-text p:last-child { margin-bottom: 0; }

.founding-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
}

.ft-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s;
}
.ft-item:last-child { border-bottom: none; }
.ft-item:hover { background: var(--gray-100); }

.ft-year {
  padding: 20px 16px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255,255,255,0.07);
  writing-mode: horizontal-tb;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ft-item:hover .ft-year { color: var(--white); }

.ft-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ft-milestone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.ft-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.value-card {
  background: var(--white);
  padding: 36px 30px;
  position: relative;
  cursor: default;
  transition: background 0.25s;
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.value-card:hover { background: var(--gray-100); }
.value-card:hover::after { transform: scaleX(1); }

.value-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
  transition: border-color 0.25s, background 0.25s;
}
.value-card:hover .value-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.value-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
}

.team-model-box {
  background: var(--navy);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.team-model-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.team-model-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tag {
  padding: 6px 16px;
  border: 1px solid rgba(45,107,228,0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6A9AF5;
}

.team-advantages {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-adv {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.team-adv:hover { background: rgba(45,107,228,0.08); }

.team-adv-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(45,107,228,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.team-adv-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
.team-adv-desc  { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.5; font-weight: 300; }

.cert-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.cert-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: background 0.2s;
}
.cert-card:hover { background: var(--gray-100); }

.cert-badge {
  width: 64px;
  height: 64px;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.cert-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.cert-info-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.cert-info-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
}

.cert-issuer {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}

.sectors-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.sector-card {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
  cursor: default;
}
.sector-card:hover { background: var(--gray-100); }

.sector-card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 12px;
  transition: border-color 0.2s, background 0.2s;
}
.sector-card:hover .sector-card-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.sector-card-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.partner-logo {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.partner-logo:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-model-box { grid-template-columns: 1fr; gap: 36px; }
  .cert-section-grid { grid-template-columns: 1fr; }
  .sectors-showcase { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .sectors-showcase { grid-template-columns: 1fr 1fr; }
}

/* ===========================================
   SHARED SUBPAGE SECTIONS
   (intro-grid, target-*, service-card, etc.)
=========================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.intro-text .lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.target-list { display: flex; flex-direction: column; gap: 2px; }

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, background 0.2s;
}
.target-item:hover { border-color: rgba(45,107,228,0.3); background: rgba(45,107,228,0.02); }

.target-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.target-item:hover .target-icon { border-color: var(--blue); background: rgba(45,107,228,0.06); }

.target-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.target-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; font-weight: 300; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  cursor: default;
  transition: background 0.25s;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover { background: var(--gray-100); }
.service-card:hover::after { transform: scaleY(1); }

.service-card-num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.service-card:hover .service-card-num { color: rgba(45,107,228,0.12); }

.service-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: border-color 0.25s, background 0.25s;
}
.service-card:hover .service-card-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.service-card-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }

.service-card-deliverables {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

.deliverable-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.deliverable-list { list-style: none; }
.deliverable-item {
  font-size: 13px;
  color: var(--gray-600);
  padding: 4px 0 4px 14px;
  position: relative;
  font-weight: 300;
}
.deliverable-item::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--gray-200);
  background: var(--gray-200);
}

.process-step {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.25s;
}
.process-step:hover { background: var(--gray-100); }

.step-num {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(45,107,228,0.12); }

.step-duration {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  opacity: 0.75;
}

.refs-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 40px;
}

.sectors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
}

.related-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
  cursor: default;
}
.related-card:hover { background: var(--gray-100); }

.related-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.related-card:hover .related-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.related-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.related-desc { font-size: 12px; color: var(--gray-600); line-height: 1.6; font-weight: 300; margin-bottom: 10px; }
.related-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.related-card:hover .related-link { gap: 8px; }

@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .refs-quote-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
}

/* ===========================================
   ISO 9001 PAGE
=========================================== */
.iso-badge-large {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgba(45,107,228,0.35);
  position: relative;
  animation: heroIn 1.1s 0.3s var(--ease-out) both;
}
.iso-badge-large::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(45,107,228,0.18);
}
.iso-badge-large::after {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(45,107,228,0.08);
}
.iso-badge-code {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.iso-badge-year {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.12em;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.iso-badge-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  text-align: center;
  max-width: 160px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.iso-badge-large .corner {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--blue);
}
.iso-badge-large .corner.tl { top: -4px; left: -4px; }
.iso-badge-large .corner.tr { top: -4px; right: -4px; }
.iso-badge-large .corner.bl { bottom: -4px; left: -4px; }
.iso-badge-large .corner.br { bottom: -4px; right: -4px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.benefit-card {
  background: var(--white);
  padding: 28px 24px;
  transition: background 0.2s;
  cursor: default;
}
.benefit-card:hover { background: var(--gray-100); }
.benefit-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.benefit-card:hover .benefit-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }
.benefit-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.benefit-desc { font-size: 13px; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.req-item {
  background: var(--white);
  padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: background 0.2s;
}
.req-item:hover { background: var(--gray-100); }
.req-num {
  font-family: var(--ff-display);
  font-size: 28px; font-weight: 700;
  color: rgba(45,107,228,0.15);
  line-height: 1; flex-shrink: 0; min-width: 40px;
  transition: color 0.2s;
}
.req-item:hover .req-num { color: rgba(45,107,228,0.4); }
.req-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.req-desc { font-size: 12px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

.sectors-strip {
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px var(--px);
}
.sectors-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.strip-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-400);
  margin-right: 6px; flex-shrink: 0;
}
.strip-tag {
  padding: 5px 14px;
  border: 1px solid var(--gray-200);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-600); background: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.strip-tag:hover { border-color: var(--blue); color: var(--blue); }

.related-iso-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gray-200); border: 1px solid var(--gray-200);
}
.related-iso-card {
  background: var(--white); padding: 24px 22px;
  transition: background 0.2s; cursor: default;
}
.related-iso-card:hover { background: var(--gray-100); }
.related-iso-code {
  font-family: var(--ff-display);
  font-size: 13px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.06em; margin-bottom: 4px;
}
.related-iso-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.related-iso-desc { font-size: 12px; color: var(--gray-600); line-height: 1.55; font-weight: 300; }
.related-iso-link {
  font-size: 11px; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; gap: 4px;
  margin-top: 8px; transition: gap 0.2s;
}
.related-iso-card:hover .related-iso-link { gap: 8px; }

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .related-iso-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .related-iso-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   ISO 14001 PAGE
=========================================== */
.requirements-box {
  background: var(--navy);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.req-col-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.req-col-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}
.req-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.req-tag {
  padding: 5px 14px;
  border: 1px solid rgba(45,107,228,0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6A9AF5;
}
.req-list { display: flex; flex-direction: column; gap: 2px; }
.requirements-box .req-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 12px 18px;
}
.requirements-box .req-item:hover { background: rgba(45,107,228,0.08); }
.requirements-box .req-num {
  font-size: 13px;
  color: var(--blue);
  width: 24px; min-width: unset;
  line-height: unset;
}
.requirements-box .req-item:hover .req-num { color: var(--blue); }
.requirements-box .req-title { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
.requirements-box .req-desc { color: rgba(255,255,255,0.3); line-height: 1.5; }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.sector-item {
  background: var(--white);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s;
}
.sector-item:hover { background: var(--gray-100); }
.sector-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.sector-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.sector-desc { font-size: 11px; color: var(--gray-600); line-height: 1.5; font-weight: 300; }

.related-iso-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }

/* ===========================================
   ISO 27001 PAGE
=========================================== */
.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin-bottom: 48px;
}
.pillar-box { background: var(--white); padding: 28px 24px; text-align: center; transition: background 0.2s; }
.pillar-box:hover { background: var(--gray-100); }
.pillar-box-icon { width: 52px; height: 52px; border: 1px solid var(--blue); background: rgba(45,107,228,0.05); display: flex; align-items: center; justify-content: center; color: var(--blue); margin: 0 auto 16px; }
.pillar-box-title { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pillar-box-desc { font-size: 12px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

@media (max-width: 1024px) {
  .three-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .requirements-box { grid-template-columns: 1fr; gap: 32px; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .sectors-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================================
   GDPR PAGE
=========================================== */
.gdpr-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin-bottom: 2px;
}

.gdpr-pillar {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s;
  cursor: default;
}
.gdpr-pillar:hover { background: var(--gray-100); }

.gdpr-pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 16px;
  transition: border-color 0.2s, background 0.2s;
}
.gdpr-pillar:hover .gdpr-pillar-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.gdpr-pillar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.gdpr-pillar-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
}

.gdpr-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.gdpr-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  cursor: default;
  transition: background 0.25s;
}
.gdpr-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease-out);
}
.gdpr-card:hover { background: var(--gray-100); }
.gdpr-card:hover::after { transform: scaleY(1); }

.gdpr-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
  transition: border-color 0.25s, background 0.25s;
}
.gdpr-card:hover .gdpr-card-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.gdpr-card-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.gdpr-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.gdpr-card-deliverables { border-top: 1px solid var(--gray-200); padding-top: 18px; }

.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.right-item {
  background: var(--white);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s;
}
.right-item:hover { background: var(--gray-100); }

.right-num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(45,107,228,0.2);
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 2px;
  transition: color 0.2s;
  min-width: 32px;
}
.right-item:hover .right-num { color: rgba(45,107,228,0.45); }

.right-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.right-desc  { font-size: 12px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

.dpo-box {
  background: var(--navy);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.dpo-box-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6A9AF5;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dpo-box-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: #6A9AF5; }

.dpo-box-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.dpo-box-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.dpo-when-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dpo-when-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.dpo-when-item:hover { background: rgba(45,107,228,0.09); }

.dpo-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dpo-when-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
.dpo-when-desc  { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.5; font-weight: 300; }

.dpo-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.warning-strip {
  background: rgba(45,107,228,0.07);
  border: 1px solid rgba(45,107,228,0.2);
  border-left: 4px solid var(--blue);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.warning-strip-icon { color: var(--blue); flex-shrink: 0; }
.warning-strip-text { font-size: 14px; color: var(--text); line-height: 1.6; }
.warning-strip-text strong { font-weight: 600; }

@media (max-width: 1024px) {
  .gdpr-pillars { grid-template-columns: 1fr 1fr; }
  .gdpr-services { grid-template-columns: 1fr; }
  .rights-grid  { grid-template-columns: 1fr 1fr; }
  .dpo-box      { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .gdpr-pillars { grid-template-columns: 1fr 1fr; }
  .rights-grid  { grid-template-columns: 1fr; }
}

/* ===========================================
   ISO ADVISORY PAGE
=========================================== */
.iso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.iso-card {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  cursor: default;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.iso-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.iso-card:hover { background: var(--gray-100); }
.iso-card:hover::after { transform: scaleX(1); }

.iso-card-code {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 8px;
}

.iso-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.iso-card-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 20px;
}

.iso-card-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}

.iso-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 3px 9px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.iso-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  margin-top: auto;
  transition: gap 0.2s;
}
.iso-card:hover .iso-card-link { gap: 10px; }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(45,107,228,0.1));
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.timeline-step:last-child { border-bottom: none; }

.timeline-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 10px;
}
.timeline-step-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 10px;
}
.timeline-duration {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  opacity: 0.75;
}

.integrated-box {
  background: var(--navy);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.integrated-box-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.integrated-box-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.integrated-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.integrated-tag {
  padding: 5px 14px;
  border: 1px solid rgba(45,107,228,0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6A9AF5;
}

.integrated-benefits {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.integrated-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.integrated-benefit:hover { background: rgba(45,107,228,0.08); }

.ib-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(45,107,228,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.ib-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
.ib-desc  { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.5; font-weight: 300; }

.cert-strip {
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.cert-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cert-stat {
  padding: 28px 20px;
  border-right: 1px solid var(--gray-200);
  text-align: center;
}
.cert-stat:last-child { border-right: none; }
.cert-stat-num {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.cert-stat-label {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .iso-grid { grid-template-columns: 1fr 1fr; }
  .integrated-box { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .iso-grid { grid-template-columns: 1fr; }
  .cert-strip-inner { grid-template-columns: 1fr 1fr; }
  .cert-stat:nth-child(2) { border-right: none; }
  .cert-stat:nth-child(3) { border-right: 1px solid var(--gray-200); }
}

/* ===========================================
   EKT-EKFV PAGE
=========================================== */
.obligation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.obligation-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}
.obligation-card:hover { background: var(--gray-100); }

.obl-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--blue);
  background: rgba(45,107,228,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.obl-sector { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.obl-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

.ekt-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.ekt-card {
  background: var(--white);
  padding: 36px 30px;
  position: relative;
  cursor: default;
  transition: background 0.25s;
}
.ekt-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.ekt-card:hover { background: var(--gray-100); }
.ekt-card:hover::after { transform: scaleX(1); }

.ekt-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
  transition: border-color 0.25s, background 0.25s;
}
.ekt-card:hover .ekt-card-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.ekt-card-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.ekt-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.ekt-card-deliverables {
  border-top: 1px solid var(--gray-200);
  padding-top: 18px;
}

.regulation-box {
  background: var(--navy);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.reg-col-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.reg-col-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.reg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reg-tag {
  padding: 5px 14px;
  border: 1px solid rgba(45,107,228,0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6A9AF5;
}

.reg-timeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reg-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.reg-step:hover { background: rgba(45,107,228,0.08); }

.reg-step-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  width: 28px;
  flex-shrink: 0;
  margin-top: 1px;
}

.reg-step-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
.reg-step-desc { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.5; font-weight: 300; }

@media (max-width: 1024px) {
  .ekt-services { grid-template-columns: 1fr 1fr; }
  .obligation-grid { grid-template-columns: 1fr 1fr; }
  .regulation-box { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .ekt-services { grid-template-columns: 1fr; }
  .obligation-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   KAPCSOLAT PAGE
=========================================== */
.contact-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,107,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,107,228,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(45,107,228,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
  z-index: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 48px 44px;
}

.form-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9890' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--gray-400);
  background: var(--gray-100);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-checkbox:checked {
  background: var(--blue);
  border-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-consent-text {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
}

.form-consent-text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.form-submit svg { transition: transform 0.2s; }
.form-submit:hover svg { transform: translateX(4px); }

.form-note {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.is-error {
    border-color: #e53e3e !important;
}

.form-error-msg {
    display: block;
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-error-banner,
.form-success-banner {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.form-error-banner {
    background: #fff5f5;
    border: 1px solid #e53e3e;
    color: #c53030;
}

.form-success-banner {
    background: #f0fff4;
    border: 1px solid #38a169;
    color: #276749;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-card {
  background: var(--navy);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-info-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(45,107,228,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.contact-detail-value a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--white); }

.hours-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 28px;
}

.hours-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray-600); font-weight: 400; }
.hours-time { color: var(--text); font-weight: 600; }
.hours-closed { color: var(--gray-400); font-weight: 400; font-style: italic; }

.response-card {
  background: rgba(45,107,228,0.07);
  border: 1px solid rgba(45,107,228,0.2);
  border-left: 4px solid var(--blue);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.response-icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.response-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.response-desc  { font-size: 12px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.location-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.2s;
}
.location-card:hover { background: var(--gray-100); }

.location-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.location-card:hover .location-icon { border-color: var(--blue); background: rgba(45,107,228,0.05); }

.location-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.location-name {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.location-address {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: background 0.2s;
  gap: 16px;
}
.faq-question:hover { background: var(--gray-100); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s var(--ease-out), border-color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  background: rgba(45,107,228,0.06);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

/* ===========================================
   REFERENCIÁK PAGE
=========================================== */
.ref-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.ref-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,107,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,107,228,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.ref-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(45,107,228,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ref-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sector-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
}
.filter-btn {
  padding: 7px 18px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.ref-featured {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  margin-bottom: 2px;
  transition: box-shadow 0.25s;
  position: relative;
}
.ref-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--blue);
}
.ref-featured:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.ref-featured-body {
  padding: 44px 44px 44px 52px;
}

.ref-featured-quote-mark {
  font-family: var(--ff-display);
  font-size: 64px;
  color: rgba(45,107,228,0.15);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.ref-featured-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 32px;
}
.ref-featured-quote strong { font-style: normal; font-weight: 600; color: var(--navy); }

.ref-meta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.ref-meta-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
}

.ref-meta-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.ref-meta-title { font-size: 12px; color: var(--gray-600); margin-bottom: 4px; }
.ref-meta-org { font-size: 13px; font-weight: 600; color: var(--navy); }

.ref-meta-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.ref-meta-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 3px 10px;
  border: 1px solid rgba(45,107,228,0.25);
  background: rgba(45,107,228,0.04);
}

.ref-featured-side {
  background: var(--gray-100);
  border-left: 1px solid var(--gray-200);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ref-side-logo {
  width: 80px;
  height: 80px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.ref-side-logo-text {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}
.ref-side-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.ref-side-value { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 20px; }
.ref-side-highlight { background: var(--navy); padding: 16px 20px; margin-top: auto; }
.ref-side-highlight-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.ref-side-highlight-label { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; }

.refs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.ref-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s;
}
.ref-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.ref-card:hover { background: var(--gray-100); }
.ref-card:hover::before { transform: scaleX(1); }

.ref-card-sector {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ref-card-sector::before { content: ''; display: block; width: 20px; height: 1px; background: var(--blue); }
.ref-card-quote-mark { font-family: var(--ff-display); font-size: 44px; color: rgba(45,107,228,0.12); line-height: 1; margin-bottom: 8px; display: block; }
.ref-card-quote { font-size: 14px; color: var(--text); line-height: 1.8; font-style: italic; font-weight: 400; flex: 1; margin-bottom: 24px; }
.ref-card-meta { padding-top: 20px; border-top: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ref-card-person { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ref-card-org { font-size: 12px; color: var(--gray-600); font-weight: 300; }
.ref-card-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray-400); padding: 3px 10px; border: 1px solid var(--gray-200); white-space: nowrap; flex-shrink: 0; }

.ref-stats { background: var(--navy); padding: 0; }
.ref-stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ref-stat { padding: 32px 20px; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
.ref-stat:last-child { border-right: none; }
.ref-stat-num { font-family: var(--ff-display); font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; display: block; margin-bottom: 6px; }
.ref-stat-label { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.partner-card { background: var(--white); padding: 28px 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; transition: background 0.2s; }
.partner-card:hover { background: var(--gray-100); }
.partner-logo-box { width: 56px; height: 56px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.partner-logo-initials { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: white; letter-spacing: 0.05em; text-align: center; line-height: 1.2; }
.partner-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.partner-sector { font-size: 11px; color: var(--gray-400); font-weight: 300; }
.partner-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); padding: 2px 8px; border: 1px solid rgba(45,107,228,0.25); }

@media (max-width: 1024px) {
  .ref-hero-inner { grid-template-columns: 1fr; }
  .ref-featured { grid-template-columns: 1fr; }
  .ref-featured-side { border-left: none; border-top: 1px solid var(--gray-200); }
  .refs-grid { grid-template-columns: 1fr; }
  .ref-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ref-stats-inner { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .sector-filter { gap: 6px; }

}

/* ── Hero Tags: Interactive Compliance Badges ── */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: heroIn 0.9s 0.3s var(--ease-out) both;
}

.hero-tags-label {
  width: 100%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s;
}

.hero-tag {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.35);
  color: #F59E0B;
}

.hero-tag:hover {
  background: rgba(245,158,11,0.2);
  border-color: rgba(245,158,11,0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,158,11,0.2);
  color: #FCD34D;
}

/* Pont-indikátor */
.hero-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Belépő animáció — staggerelt */
.hero-tag:nth-child(2) { animation: tagIn 0.5s 0.38s var(--ease-out) both; }
.hero-tag:nth-child(3) { animation: tagIn 0.5s 0.43s var(--ease-out) both; }
.hero-tag:nth-child(4) { animation: tagIn 0.5s 0.48s var(--ease-out) both; }
.hero-tag:nth-child(5) { animation: tagIn 0.5s 0.53s var(--ease-out) both; }
.hero-tag:nth-child(6) { animation: tagIn 0.5s 0.58s var(--ease-out) both; }
.hero-tag:nth-child(7) { animation: tagIn 0.5s 0.63s var(--ease-out) both; }
.hero-tag:nth-child(8) { animation: tagIn 0.5s 0.68s var(--ease-out) both; }

@keyframes tagIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
/* ═══════════════════════════════════════════
   DORA SECTION
═══════════════════════════════════════════ */
.dora-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 2px;
}
.dora-intro-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
}
.dora-challenge-box {
  background: rgba(45,107,228,0.07);
  border: 1px solid rgba(45,107,228,0.18);
  padding: 36px 32px;
}
.dora-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.dora-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
}
.dora-body + .dora-body { margin-top: 12px; }
.dora-challenge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  opacity: 0.7;
  margin-bottom: 14px;
}
.dora-challenge-intro {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 300;
}
.dora-challenge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.dora-challenge-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-weight: 300;
  padding-left: 14px;
  position: relative;
}
.dora-challenge-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 600;
}
.dora-challenge-verdict {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 12px 16px;
  border-left: 2px solid var(--blue);
  background: rgba(45,107,228,0.08);
  line-height: 1.6;
}
.dora-lifecycle {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px;
  margin-bottom: 2px;
}
.dora-lifecycle-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 24px;
}
.dora-lifecycle-steps {
  display: flex;
  align-items: start;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.dora-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.dora-step-num {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(45,107,228,0.35);
  background: rgba(45,107,228,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-light);
}
.dora-step-text {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  font-weight: 400;
}
.dora-step-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.12);
  font-weight: 300;
  flex-shrink: 0;
  margin-top: -10px;
}
.dora-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.dora-approach {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
}
.dora-deliverables {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
}
.dora-deliverable-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.dora-deliverable-item:first-of-type { padding-top: 0; }
.dora-del-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.dora-result-box {
  margin-top: 24px;
  padding: 20px;
  background: rgba(45,107,228,0.08);
  border: 1px solid rgba(45,107,228,0.2);
}
.dora-result-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  opacity: 0.8;
  margin-bottom: 10px;
}
.dora-result-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .dora-intro-grid,
  .dora-bottom-grid { grid-template-columns: 1fr; }
  .dora-lifecycle-steps { flex-direction: column; align-items: flex-start; }
  .dora-step { flex-direction: row; text-align: left; min-width: auto; flex: none; }
  .dora-step-arrow { display: none; }
}