:root {
  --navy:     #051A3E;
  --blue:     #0044AA;
  --azure:    #1A5CB5;
  --sky:      #4B93FF;
  --lavender: #7C6FCD;
  --lilac:    #B8AEED;
  --fog:      #F5F7FB;
  --mist:     #EEF1F8;
  --white:    #FFFFFF;
  --ink:      #0D1B2E;
  --gray-400: #94A3B8;
  --gray-600: #4B5563;
  --border:   rgba(0,68,170,0.11);

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  --wrap: 1340px;
  --nav-h: 68px;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:  cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6; max-width: 100vw; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(75,147,255,0.25); color: var(--navy); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(5,26,62,0.18); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(5,26,62,0.35); }
* { scrollbar-width: thin; scrollbar-color: rgba(5,26,62,0.18) transparent; }

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(5,26,62,0.13);
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.78rem;
  
  transition: color 0.18s, border-color 0.18s, background-color 0.18s;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sr-only, .visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: fixed; top: -100%; left: 1rem;
  background: var(--navy); color: var(--white);
  padding: 8px 18px; border-radius: 0 0 8px 8px;
  font-size: 0.875rem; font-weight: 600;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.topbar {
  background: linear-gradient(90deg, rgba(0,68,170,0.05) 0%, rgba(75,147,255,0.08) 50%, rgba(0,68,170,0.05) 100%);
  color: rgba(5,26,62,0.55);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 7px 16px;
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,68,170,0.08);
  margin-top: var(--nav-h);
}
.topbar i { font-size: 0.6rem; color: var(--blue); }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease-std), box-shadow 0.3s var(--ease-std), border-color 0.3s var(--ease-std);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border-bottom: 1px solid rgba(0,68,170,0.09);
  box-shadow: 0 2px 20px rgba(5,26,62,0.07);
}

.nav:not(.scrolled) .nav__link { color: rgba(5,26,62,0.65); }
.nav:not(.scrolled) .nav__logo img { filter: none; }

body { padding-top: 0; }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
  transition: opacity 0.2s;
}
.nav__logo:hover img { opacity: 0.8; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}

.nav__menu-label-item,
.nav__menu-divider-item { display: none; }
.nav__menu .nav__menu-phone { display: none; }

.nav__link {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: rgba(5,26,62,0.65) !important;
  padding: 7px 14px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  transition: background 0.18s var(--ease-std), color 0.18s var(--ease-std) !important;
  position: relative !important;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

.nav__link:hover,
.nav__link:focus {
  background: rgba(0,68,170,0.055) !important;
  color: var(--navy) !important;
  text-decoration: none !important;
}

.nav__link:not(.nav__link--active):hover::after {
  content: '' !important;
  position: absolute !important;
  bottom: 3px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 14px !important;
  height: 2px !important;
  border-radius: 2px !important;
  background: rgba(26,92,181,0.25) !important;
  display: block !important;
}

.nav__link--active {
  color: var(--blue) !important;
  font-weight: 600 !important;
}
.nav__link--active::after {
  content: '' !important;
  position: absolute !important;
  bottom: 3px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 18px !important;
  height: 2px !important;
  border-radius: 2px !important;
  background: #5B8FD4 !important;
  display: block !important;
}
.nav__link--active:hover {
  background: rgba(0,68,170,0.06) !important;
  color: var(--blue) !important;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  padding: 0;
}
.lang__btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(5,26,62,0.35);
  padding: 4px 9px;
  transition: color 0.15s;
  line-height: 1;
  background: none;
  position: relative;
}

.lang__btn:first-child {
  border-right: 1px solid rgba(5,26,62,0.14);
}
.lang__btn--active {
  color: var(--blue);
  font-weight: 700;
}
.lang__btn:hover:not(.lang__btn--active) {
  color: var(--navy);
}

.nav__phone {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #0044AA !important;
  padding: 8px 18px !important;
  border-radius: 22px !important;
  background: transparent !important;
  border: 1.5px solid #0044AA !important;
  white-space: nowrap !important;
  transition: background 0.18s, color 0.18s !important;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.nav__phone:hover,
.nav__phone:focus {
  background: #0044AA !important;
  color: #ffffff !important;
  text-decoration: none !important;
  border-color: #0044AA !important;
}
.nav__phone i,
.nav__phone span { color: inherit !important; }
.nav__phone i { font-size: 0.78rem !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  gap: 6px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.nav__burger:hover { background: var(--fog); }
.nav:not(.scrolled) .nav__burger { border-color: var(--border); }
.nav:not(.scrolled) .nav__burger:hover { background: var(--fog); }
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease-expo);
  transform-origin: center;
}
.nav:not(.scrolled) .nav__burger span { background: var(--ink); }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,26,62,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 897;
  opacity: 0;
  transition: opacity 0.35s var(--ease-std);
}
.nav__mobile-overlay.open { opacity: 1; }

@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__phone span { display: none; }
  .nav__phone { padding: 8px 10px; }
}

@media (max-width: 768px) {

  .nav__inner {
    justify-content: space-between;
  }
  .nav__right {
    gap: 8px;
  }

  .nav__phone { display: none; }

  /* Force white nav background on mobile — transparent nav over hero looks broken */
  .nav:not(.scrolled) {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0,68,170,0.09) !important;
    box-shadow: 0 2px 16px rgba(5,26,62,0.07) !important;
  }
  .nav:not(.scrolled) .nav__link { color: rgba(5,26,62,0.7) !important; }
  .nav:not(.scrolled) .nav__burger span { background: var(--ink) !important; }

  .nav__burger { display: flex; }
  .nav__mobile-overlay { display: block; pointer-events: none; }
  .nav__mobile-overlay.open { pointer-events: all; }

  /* Mobile menu — light theme */
  .nav__menu {
    display: none !important;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    width: 100%;
    margin: 0;
    max-height: calc(100dvh - var(--nav-h));
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 16px 28px;
    gap: 3px;
    z-index: 898;
    overflow-y: auto;
    border-bottom: 1px solid rgba(0,68,170,0.1);
    box-shadow: 0 20px 48px rgba(5,26,62,0.12);
  }
  .nav__menu.open {
    display: flex !important;
    animation: slideDownMenu 0.32s var(--ease-expo) both;
  }
  @keyframes slideDownMenu {
    from { transform: translateY(-12px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
  }

  .nav__menu-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(5,26,62,0.35);
    padding: 0 14px 10px;
    display: block;
    border-bottom: 1px solid rgba(0,68,170,0.07);
    margin-bottom: 4px;
  }

  .nav__link {
    padding: 13px 14px;
    font-size: 0.975rem;
    font-weight: 600;
    border-radius: 12px;
    color: rgba(5,26,62,0.75) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.15s, color 0.15s !important;
  }

  .nav__link:not(.nav__link--active):hover::after { display: none; }
  .nav__link::before { display: none; }
  .nav__link:hover {
    background: rgba(0,68,170,0.06) !important;
    color: var(--navy) !important;
  }
  .nav__link--active {
    color: var(--blue) !important;
    background: rgba(0,68,170,0.07) !important;
  }
  .nav__link--active::after {
    display: none;
  }

  .nav__menu-label-item,
  .nav__menu-divider-item { display: block; }
  .nav__menu .nav__menu-phone { display: flex; }

  .nav__menu-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 15px 18px;
    background: linear-gradient(90deg, var(--blue), var(--azure));
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    transition: opacity 0.2s;
    box-shadow: 0 8px 24px rgba(0,68,170,0.25);
  }
  .nav__menu-phone:hover { opacity: 0.9; }
  .nav__menu-phone i { font-size: 0.9rem; color: var(--white) !important; }

  .nav__menu-divider {
    height: 1px;
    background: rgba(0,68,170,0.07);
    margin: 10px 0 2px;
    display: block;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(150deg, #F0F6FF 0%, #E6F0FF 40%, #EEF4FF 70%, #F5F8FF 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.hero__video-bg::-webkit-media-controls             { display: none !important; }
.hero__video-bg::-webkit-media-controls-enclosure   { display: none !important; }
.hero__video-bg::-webkit-media-controls-panel       { display: none !important; }
.hero__video-bg::-webkit-media-controls-play-button { display: none !important; }
.hero__video-bg::-webkit-media-controls-start-playback-button { display: none !important; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(240,246,255,0.6) 0%, rgba(240,246,255,0.35) 50%, rgba(240,246,255,0.6) 100%),
    linear-gradient(to bottom, rgba(240,246,255,0.9) 0%, transparent 16%),
    linear-gradient(to top,    rgba(240,246,255,0.9) 0%, transparent 16%);
  pointer-events: none;
}

.hero .wrap {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5B8FD4;
  margin-bottom: 24px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s var(--ease-expo) forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: #5B8FD4;
  flex-shrink: 0;
}

.hero__logo {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s var(--ease-expo) forwards;
}
.hero__logo img {
  height: clamp(78px, 10.5vw, 132px);
  width: auto;
}

.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #5D8CE1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s var(--ease-expo) forwards;
}

.hero__h2 {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  line-height: 1.4;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s var(--ease-expo) forwards;
  
  white-space: nowrap;
}
@media (max-width: 540px) {
  .hero__h2 { white-space: normal; font-size: clamp(0.85rem, 3.5vw, 1rem); }
}

.hero__tagline {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem) !important;
  color: var(--navy) !important;
  line-height: 1.5 !important;
  margin-bottom: 36px !important;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s var(--ease-expo) forwards;
}
.hero__tagline em {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  display: inline-block !important;
  background: linear-gradient(110deg, #4B7FE8 0%, #5B8FD4 50%, #7AAEE0 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
  
}
.hero__cta > * {
  opacity: 0;
  animation: fadeUpSoft 0.9s 0.75s ease forwards;
}

.hero__cta > *:nth-child(2) {
  animation-delay: 0.85s;
}

.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(110deg, #0044AA 0%, #1A72F0 50%, #4B93FF 100%) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  padding: 13px 28px !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s var(--ease-expo) !important;
  box-shadow: 0 8px 32px rgba(0,68,170,0.35) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  position: relative !important;
  overflow: hidden !important;
}
.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 44px rgba(0,68,170,0.48) !important;
  filter: brightness(1.08) !important;
  text-decoration: none !important;
}
.btn-primary i,
.btn-primary span { color: #ffffff !important; }
.btn-primary i { font-size: 0.8rem !important; transition: transform 0.2s !important; }
.btn-primary:hover i { transform: translateX(3px) !important; }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0.5;
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.btn-ghost-hero {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255,255,255,0.18) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.4) !important;
  backdrop-filter: blur(12px) saturate(1.4) !important;
  color: #051A3E !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 13px 24px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  cursor: pointer !important;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 16px rgba(0,68,170,0.10), inset 0 1px 0 rgba(255,255,255,0.6) !important;
  position: relative !important;
  overflow: hidden !important;
}
.btn-ghost-hero i,
.btn-ghost-hero span { color: #051A3E !important; }

.btn-ghost-hero::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.65) 60%, transparent 90%) !important;
  pointer-events: none !important;
}
.btn-ghost-hero:hover,
.btn-ghost-hero:focus {
  background: rgba(255,255,255,0.28) !important;
  border-color: rgba(255,255,255,0.65) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,68,170,0.14), inset 0 1px 0 rgba(255,255,255,0.6) !important;
  color: #051A3E !important;
  text-decoration: none !important;
}
.btn-ghost-hero:hover i,
.btn-ghost-hero:hover span,
.btn-ghost-hero:focus i,
.btn-ghost-hero:focus span { color: #051A3E !important; }

.hero__stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUpSoft 1s 1.1s ease forwards;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}
.hero__stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 5px;
  text-align: center;
}
.hero__stats-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(5,26,62,0.1);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(5,26,62,0.3);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(5,26,62,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(0.6); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes blurIn {
  from { opacity: 0; filter: blur(10px); transform: translateY(8px); }
  to   { opacity: 1; filter: blur(0px);  transform: translateY(0); }
}

@keyframes blurInFull {
  from { opacity: 0; filter: blur(10px); transform: translateY(6px); }
  to   { opacity: 1; filter: blur(0px);  transform: translateY(0); }
}

.hero__h1.stagger-ready,
.hero__tagline.stagger-ready {
  opacity: 1 !important;
  animation: none !important;
}

.hero__h1 .stagger-char {
  display: inline-block;
  opacity: 0;
  animation: blurIn 0.6s var(--ease-expo) forwards;
  white-space: pre;
}
.stagger-char {
  display: inline-block;
  opacity: 0;
  animation: blurIn 0.45s var(--ease-expo) forwards;
  white-space: pre;
}

.hero__tagline .stagger-char {
  color: var(--navy);
}

.hero__tagline em {
  display: inline-block;
  background: linear-gradient(110deg, #4B7FE8 0%, #5B8FD4 50%, #7AAEE0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 540px) {
  .hero { min-height: 100svh; }
  .hero__grid { padding: 5rem 0 6rem; }
  .hero__h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .btn-ghost-hero span { display: none; }
  .hero__scroll { bottom: 14px; }
  .hero__scroll-bar { height: 28px; }
  .hero__stats-divider { display: none; }
}

@keyframes dnaFlow {
  from { stroke-dashoffset: 600; }
  to   { stroke-dashoffset: 0; }
}
.svg-dna  { stroke-dasharray: 600; animation: dnaFlow 8s linear infinite; }
.svg-dna2 { stroke-dasharray: 600; animation: dnaFlow 8s 4s linear infinite; }

.featurette {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
}
.featurette__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
.featurette__item:last-child { margin-bottom: 0; }
.featurette__item--reverse { direction: rtl; }
.featurette__item--reverse > * { direction: ltr; }
.featurette__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(5,26,62,0.12);
}
.featurette__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-expo);
}
.featurette__img-wrap:hover img { transform: scale(1.04); }
.featurette__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(0,68,170,0.08);
  pointer-events: none;
}
.featurette__body { display: flex; flex-direction: column; gap: 16px; }
.featurette__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
}
.featurette__tag::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--lavender);
  flex-shrink: 0;
}
.featurette__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.featurette__text {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.featurette__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 4px;
  transition: gap 0.2s;
}
.featurette__link:hover { gap: 11px; }
@media (max-width: 768px) {
  .featurette__item { grid-template-columns: 1fr; direction: ltr; }
  .featurette__item--reverse { direction: ltr; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title--light {
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  contain: layout style;
}

.about__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.about__main {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--fog);
  border-radius: 20px;
  overflow: hidden;
}
.about__watermark {
  position: absolute;
  top: -0.2em;
  right: 0.1em;
  font-family: var(--font-head);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(5,26,62,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.about__watermark--sm {
  font-size: clamp(4rem, 8vw, 7rem);
}
.about__title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.about__text {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.about__link:hover { gap: 12px; }

.about__stats {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(5,26,62,0.08);
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__stat-num span {
  color: var(--blue);
}
.about__stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.4;
  max-width: 80px;
}

.about__main .about__text {
  max-width: 100%;
}
.about__main .about__title {
  max-width: 100%;
}

.about__accent {
  background: linear-gradient(145deg, var(--navy), #0A3070);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.about__accent-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about__accent-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.55);
}

.about__accent-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(4,20,58,0.62) 0%, rgba(0,44,110,0.45) 55%, rgba(26,44,112,0.65) 100%);
}

.about__accent::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(75,147,255,0.28) 0%, rgba(75,147,255,0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.about__accent::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(124,111,205,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.about__accent-inner {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.about__accent-icon {
  width: 48px; height: 48px;
  background: rgba(75,147,255,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--sky);
  flex-shrink: 0;
}
.about__accent-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  line-height: 1.5;
}
.about__accent-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.about__accent-stat {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.about__accent-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about__accent-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.about__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.about__card:hover {
  box-shadow: 0 12px 40px rgba(5,26,62,0.08);
  border-color: rgba(0,68,170,0.2);
}
.about__card-icon {
  font-size: 1.5rem;
  color: var(--lavender);
  margin-bottom: 14px;
  display: block;
}
.about__card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.about__card-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about__card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.about__card-link:hover { gap: 11px; }

.about__card--with-photo {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.about__card--with-photo .about__card-content {
  flex: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
.about__card--with-photo .about__watermark {
  position: absolute;
  top: -0.2em;
  right: auto;
  left: 0.1em;
}
.about__card--with-photo .about__card-text {
  flex: 1;
}
.about__card-photo {
  width: clamp(120px, 32%, 180px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.about__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.85);
}
.about__card--with-photo:hover .about__card-photo img {
  transform: scale(1.04);
}

.about__card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.about__card--why .about__card-deco {
  position: absolute;
  bottom: -10px;
  right: -10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  opacity: 0.06;
  pointer-events: none;
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1;
}
.about__card--why .about__card-deco i {
  display: block;
}

.about__card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.about__card-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(124,111,205,0.08);
  border: 1px solid rgba(124,111,205,0.15);
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}
.about__card-chip i {
  color: var(--lavender);
  font-size: 0.7rem;
}

.about__card:nth-child(3),
.about__card:nth-child(4) {
  grid-column: auto;
}

.about__main  { grid-column: 1; grid-row: 1; }
.about__accent { grid-column: 2; grid-row: 1; }
.about__card:first-of-type  { grid-column: 1; grid-row: 2; }
.about__card:last-of-type { grid-column: 2; grid-row: 2; }

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__main  { grid-column: 1; grid-row: auto; }
  .about__accent { grid-column: 1; grid-row: auto; }
  .about__card:first-of-type  { grid-column: 1; grid-row: auto; }
  .about__card:last-of-type { grid-column: 1; grid-row: auto; }
  .about__accent-stat { margin-top: 16px; }
  .about__card-photo { width: clamp(100px, 35%, 160px); }
}
@media (max-width: 600px) {
  .about__main,
  .about__accent,
  .about__card { border-radius: 14px; }
  .about__watermark { font-size: 5rem; }
  .about__stats { gap: 1rem; }
  .about__card--with-photo { flex-direction: column; }
  .about__card-photo {
    width: 100%;
    height: 160px;
    order: -1;
  }
  .about__card-photo::before {
    background: linear-gradient(to bottom, var(--white) 0%, transparent 35%);
  }
}

.services {
  background: var(--fog);
  padding: clamp(4rem, 8vw, 7rem) 0;
  contain: layout style;
}
.services__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.svc-card-wrap {
  border-radius: 17.5px;
  padding: 1.5px;
  background: var(--border);
  transition: background 0.25s var(--ease-std), box-shadow 0.25s var(--ease-std);
}
.svc-card-wrap:hover {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--sky) 100%);
  box-shadow: 0 8px 36px rgba(124,111,205,0.16), 0 2px 8px rgba(75,147,255,0.1);
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 16px;
  border: none;
  text-decoration: none;
  min-height: 168px;
  overflow: hidden;
  background: var(--white);
  transition: background 0.25s var(--ease-std);
  height: 100%;
}
.svc-card-wrap:hover .svc-card {
  background: #FAFBFF;
}
.svc-card-wrap:hover .svc-card__icon-wrap {
  background: linear-gradient(135deg, rgba(124,111,205,0.15), rgba(75,147,255,0.12));
  box-shadow: 0 0 16px rgba(124,111,205,0.2);
}
.svc-card-wrap:hover .svc-card__arrow { gap: 8px; color: var(--blue); }

.svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-card__desc {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.55;
}

.svc-card__icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--fog);
  border-radius: 14px;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.svc-card__icon {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(500%) hue-rotate(200deg);
}

.svc-card__icon--heart {
  filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(500%) hue-rotate(200deg);
}
.svc-card__title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.svc-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lavender);
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}
.svc-card__arrow span { font-size: 0.72rem; }
.svc-card:hover .svc-card__arrow,
.svc-card-wrap:hover .svc-card__arrow { gap: 8px; color: var(--blue); }

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
}

.genplan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  contain: layout style;
  min-height: 480px;
}
.genplan__left {
  background: linear-gradient(145deg, var(--navy) 0%, #0A3070 100%);
  display: flex;
  align-items: center;
}
.genplan__left-inner {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  max-width: 600px;
  margin-left: auto;
  width: 100%;
}
.genplan__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lilac);
  background: rgba(184,174,237,0.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.genplan__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.genplan__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.genplan__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-left: 0;
  list-style: none;
}
.genplan__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}
.genplan__features .fa-check {
  width: 20px; height: 20px;
  background: rgba(75,147,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--sky);
  flex-shrink: 0;
}
.genplan__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.genplan__cta:hover { background: var(--fog); transform: translateX(3px); color: var(--navy); }

.genplan__right {
  background: linear-gradient(145deg, #071E45 0%, #0A2D6B 50%, #0D1F4A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem);
}

.genplan__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(5,15,40,0.60) 100%);
  pointer-events: none;
  z-index: 1;
}

.genplan__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.genplan__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(75,147,255,0.18);
  animation: gpRingPulse 6s ease-in-out infinite;
  will-change: transform, opacity;
}
.genplan__ring:nth-child(1) { width: 160px;  height: 160px;  animation-delay: 0s;    border-color: rgba(75,147,255,0.22); }
.genplan__ring:nth-child(2) { width: 260px;  height: 260px;  animation-delay: 0.8s;  border-color: rgba(75,147,255,0.15); }
.genplan__ring:nth-child(3) { width: 380px;  height: 380px;  animation-delay: 1.6s;  border-color: rgba(124,111,205,0.12); }
.genplan__ring:nth-child(4) { width: 520px;  height: 520px;  animation-delay: 2.4s;  border-color: rgba(124,111,205,0.08); }
.genplan__ring:nth-child(5) { width: 680px;  height: 680px;  animation-delay: 3.2s;  border-color: rgba(75,147,255,0.05); }
@keyframes gpRingPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

.genplan__vortex {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.genplan__vortex.ready { opacity: 1; }

.genplan__right-glow { display: none; }
.genplan__card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(5,15,40,0.60),
    0 8px 32px rgba(5,15,40,0.40),
    
    0 0 0 1px rgba(75,147,255,0.35),
    0 0 32px 4px rgba(75,147,255,0.15),
    0 0 64px 8px rgba(75,147,255,0.08);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s;
  z-index: 4;
  width: 230px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.genplan__card::before {
  content: '';
  position: absolute;
  top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-15deg);
  animation: gpCardShimmer 5s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes gpCardShimmer {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}
.genplan__right:hover .genplan__card {
  transform: rotate(0deg) scale(1.04);
  box-shadow:
    0 40px 100px rgba(5,15,40,0.70),
    0 12px 40px rgba(5,15,40,0.50),
    0 0 0 1px rgba(75,147,255,0.55),
    0 0 48px 8px rgba(75,147,255,0.22),
    0 0 96px 16px rgba(75,147,255,0.10);
}

.genplan__card-header {
  background: linear-gradient(135deg, #0A2456 0%, #1A4080 100%);
  padding: 16px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.genplan__card-header-lines {
  display: flex; gap: 4px; margin-bottom: 6px;
}
.genplan__card-header-lines span {
  display: block; height: 3px; border-radius: 3px;
}
.genplan__card-header-lines span:nth-child(1) { width: 28px; background: rgba(255,255,255,0.35); }
.genplan__card-header-lines span:nth-child(2) { width: 18px; background: var(--lilac); opacity: 0.7; }
.genplan__card-header-lines span:nth-child(3) { width: 10px; background: var(--sky); opacity: 0.5; }
.genplan__card-header-title {
  font-size: 0.75rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.04em;
  font-family: var(--font-head);
}
.genplan__card-header-sub {
  font-size: 0.65rem; color: var(--lilac);
  font-weight: 500; letter-spacing: 0.06em;
}

.genplan__card-dna {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 0 10px;
  background: var(--fog);
}
.genplan__card-dna-img {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(500%) hue-rotate(200deg);
}

.genplan__card-bars {
  padding: 12px 18px 16px;
}
.genplan__bar-row {
  margin-bottom: 10px;
}
.genplan__bar-label {
  font-size: 0.6rem; color: var(--gray-400);
  display: block; margin-bottom: 3px;
  font-family: var(--font-body);
}
.genplan__bar-track {
  position: relative; height: 5px;
  background: var(--mist); border-radius: 5px; overflow: hidden;
}
.genplan__bar-bg {
  position: absolute; top: 0; left: 0; height: 100%;
  background: rgba(0,68,170,0.18); border-radius: 5px;
}
.genplan__bar-you {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--azure); border-radius: 5px;
}
.genplan__bar-legend {
  display: flex; gap: 12px; margin-top: 8px;
}
.genplan__bar-legend span {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.55rem; color: var(--gray-400);
}
.genplan__bar-legend i {
  display: block; width: 8px; height: 5px;
  border-radius: 3px; background: rgba(0,68,170,0.35);
}

.genplan__card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--lavender);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .genplan { grid-template-columns: 1fr; }
  .genplan__right { min-height: 280px; }
}
.steps {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
.steps__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.steps__header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0; 
}
.steps__header .section-label::before { display: none; }

.steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  position: relative;
}

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

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
}
.steps__num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: rgba(184,174,237,0.35);
  line-height: 1;
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.steps__icon-wrap {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #EEF1F8, var(--fog));
  border: 2px solid rgba(124,111,205,0.2);
  border-radius: 18px;
  font-size: 1.4rem;
  color: var(--lavender);
  margin-top: 24px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.steps__item:hover .steps__icon-wrap {
  background: linear-gradient(135deg, var(--blue), var(--lavender));
  border-color: transparent;
  color: var(--white);
}
.steps__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.steps__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .steps__num { font-size: clamp(3.5rem, 10vw, 5rem); top: -0.3em; opacity: 1; color: rgba(184,174,237,0.4); }
  .steps__icon-wrap { margin-top: 28px; }
}
@media (max-width: 768px) {
  .steps__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps__list { grid-template-columns: 1fr; }
}

.director {
  background: var(--navy);
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.director__photo-col {
  position: relative;
  overflow: hidden;
}
.director__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s var(--ease-expo);
}
.director__photo-col:hover .director__photo { transform: scale(1.03); }

.director__photo-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 80%, var(--navy) 100%);
  pointer-events: none;
}

.director__content {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.director__name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.director__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.director__badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lilac);
  border: 1px solid rgba(184,174,237,0.3);
  padding: 5px 14px;
  border-radius: 20px;
}
.director__quote-wrap {
  position: relative;
  margin-top: 8px;
}
.director__quote-mark {
  position: absolute;
  top: -0.3em;
  left: -0.1em;
  font-family: Georgia, serif;
  font-size: clamp(8rem, 14vw, 12rem);
  line-height: 1;
  color: rgba(75,147,255,0.15);
  pointer-events: none;
  user-select: none;
}
.director__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .director {
    grid-template-columns: 1fr;
  }
  .director__photo-col {
    height: 320px;
  }
  .director__photo-col::after {
    background: linear-gradient(to bottom, transparent 70%, var(--navy) 100%);
  }
}

.team {
  background: var(--fog);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 6vw, 6rem);
  contain: layout style;
}

.team__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.team__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.team__nav-btn {
  width: 44px; height: 44px;
}
.team__all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
  margin-left: 10px;
}
.team__all-link:hover { gap: 11px; }

.team__track-outer {
  overflow: hidden;
}
.team__track {
  display: flex;
  gap: clamp(10px, 1.5vw, 16px);
  padding: 6px clamp(1.25rem, 4vw, 2.5rem) 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.team__track::-webkit-scrollbar { display: none; }
.team__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.team__slide {
  flex: 0 0 auto;
  
  width: calc((100% - clamp(1.25rem,4vw,2.5rem)*2 - 5*clamp(10px,1.5vw,16px)) / 6);
  scroll-snap-align: start;
}
@media (max-width: 1100px) {
  .team__slide { width: calc((100% - clamp(1.25rem,4vw,2.5rem)*2 - 3*clamp(10px,1.5vw,16px)) / 4); }
}
@media (max-width: 700px) {
  .team__slide { width: calc((100% - clamp(1.25rem,4vw,2.5rem)*2 - 1.3*clamp(10px,1.5vw,16px)) / 2.3); }
}

.team-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #030F2A 0%, #051A3E 40%, #0A2D6E 75%, #0F3D8C 100%);
  cursor: pointer;
  display: block;
  text-decoration: none;
  outline: 1.5px solid transparent;
  outline-offset: 0px;
  transition: outline-color 0.3s ease;
}
.team-card:hover {
  outline-color: rgba(75,147,255,0.35);
}

.team-card__img-wrap {
  position: absolute;
  inset: 0;
}
.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.5s ease;
  filter: saturate(0.7) brightness(0.88);
}
.team-card:hover .team-card__img {
  transform: scale(1.07);
  filter: saturate(0.9) brightness(1.0);
}

.team-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3,8,24,0.9) 0%,
    rgba(3,8,24,0.45) 38%,
    rgba(3,8,24,0.05) 65%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-card__img-wrap::after {
  opacity: 0.85;
}

.team-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 12px 14px;
  z-index: 2;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
}

.team-card__spec-wrap { order: -1; overflow: visible; margin-bottom: 5px; }
.team-card__spec {
  display: inline-flex;
  align-items: center;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(185,220,255,0.95);
  background: rgba(75,147,255,0.18);
  border: 1px solid rgba(75,147,255,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 8px 3px 6px;
  border-radius: 20px;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.team-card__spec::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  opacity: 0.9;
}
.team-card__name {
  font-family: var(--font-head);
  font-size: clamp(0.75rem, 0.9vw, 0.86rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.28;
  letter-spacing: -0.01em;
  display: block;
  transition: color 0.2s;
}
.team-card:hover .team-card__name { color: rgba(255,255,255,0.95); }

.team-card__overlay { display: none; }
.team-card__bar { display: none; }

.teamSwiper__prev,
.teamSwiper__next,
.teamSwiper__dots { display: none !important; }

.reviews {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
  overflow: hidden;
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(75,147,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 0%,  rgba(124,111,205,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.reviews__layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

.reviews__left { display: flex; flex-direction: column; }

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,111,205,0.09);
  color: var(--lavender);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 22px;
  width: fit-content;
  border: 1px solid rgba(124,111,205,0.15);
}
.reviews__badge svg { width: 11px; height: 11px; fill: var(--lavender); }

.reviews__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.reviews__subtitle {
  font-size: 0.97rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 360px;
}

.reviews__big-quote {
  font-family: Georgia, 'DM Serif Display', serif;
  font-size: 11rem;
  line-height: 0.7;
  color: var(--lavender);
  opacity: 0.08;
  user-select: none;
  pointer-events: none;
  margin-bottom: 28px;
  letter-spacing: -0.05em;
}

.reviews__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews__counter {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.4;
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 36px;
}
.reviews__progress-track {
  flex: 1;
  height: 2px;
  background: rgba(5,26,62,0.10);
  border-radius: 2px;
  overflow: hidden;
  max-width: 160px;
}
.reviews__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--lavender));
  border-radius: 2px;
  transition: width 0.45s var(--ease-expo);
  width: 25%;
}
.reviews__arrows {
  display: flex;
  gap: 8px;
}
.reviews__arrow svg { width: 14px; height: 14px; }

.reviews__right {
  position: relative;
  min-height: 360px;
}

.reviews__right .review-card:nth-child(n+2):not(.review-card--active):not(.review-card--exit) {
  transform: translateX(12px) translateY(10px) scale(0.96);
  opacity: 0;
}

.review-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 24px;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border: 1px solid rgba(5,26,62,0.06);
  box-shadow:
    0 1px 2px rgba(5,26,62,0.04),
    0 8px 24px rgba(5,26,62,0.07),
    0 32px 64px rgba(5,26,62,0.05);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(70px) scale(0.96);
  transition: opacity 0.52s var(--ease-expo), transform 0.52s var(--ease-expo), box-shadow 0.3s;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.review-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(124,111,205,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.review-card--active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
  box-shadow:
    0 1px 2px rgba(5,26,62,0.05),
    0 12px 40px rgba(5,26,62,0.10),
    0 40px 80px rgba(5,26,62,0.07);
}
.review-card--exit {
  opacity: 0;
  transform: translateX(-70px) scale(0.96);
  z-index: 1;
}

.review-card__accent {
  height: 3px;
  width: 48px;
  background: linear-gradient(90deg, var(--blue), var(--lavender));
  border-radius: 3px;
  margin-bottom: 24px;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.review-card__stars svg {
  width: 16px; height: 16px;
  fill: #F59E0B;
}

.review-card__quote-icon {
  position: absolute;
  bottom: 2rem; right: 2rem;
  width: 52px; height: 52px;
  opacity: 0.055;
  color: var(--navy);
}

.review-card__text {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.80;
  flex: 1;
  margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.review-card__sep {
  height: 1px;
  background: linear-gradient(90deg, rgba(5,26,62,0.10), transparent);
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--lavender) 100%);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(5,26,62,0.18);
}
.review-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.review-card__location {
  font-size: 0.74rem;
  color: var(--lavender);
  margin-top: 3px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-card__location::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.5;
}

.reviews__footer {
  margin-top: clamp(2.5rem, 5vw, 3rem);
  text-align: center;
}
.reviews__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,68,170,0.2);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.reviews__more-link:hover { color: var(--lavender); border-color: var(--lavender); gap: 12px; }

@media (max-width: 900px) {
  .reviews__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews__right { min-height: 400px; }
  .reviews__subtitle { max-width: 100%; }
  .reviews__big-quote { display: none; }
}

.news {
  background: var(--fog);
  padding: clamp(4rem, 8vw, 7rem) 0;
  contain: layout style;
}
.news__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.news__grid.is-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: 8px;
  cursor: grab;
}
.news__grid.is-scroll::-webkit-scrollbar { display: none; }
.news__grid.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.news__grid.is-scroll .news-card {
  flex: 0 0 calc((100% - 3 * clamp(1rem, 2vw, 1.5rem)) / 4);
  scroll-snap-align: start;
}
@media (max-width: 900px) {
  .news__grid.is-scroll .news-card {
    flex: 0 0 calc((100% - clamp(1rem, 2vw, 1.5rem)) / 2.1);
  }
}
@media (max-width: 480px) {
  .news__grid.is-scroll .news-card {
    flex: 0 0 85%;
  }
}

.news__swipe-hint {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  white-space: nowrap;
}
.news__swipe-hint.visible {
  display: flex;
  opacity: 1;
}
.news__swipe-hint.hidden {
  opacity: 0;
}

.news__swipe-icon {
  display: flex;
  align-items: center;
  gap: 2px;
}
.news__swipe-icon span {
  display: inline-block;
  width: 5px; height: 5px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
  animation: newsSwipeChevron 1.4s ease-in-out infinite;
}
.news__swipe-icon span:nth-child(2) { animation-delay: 0.2s; opacity: 0.65; }
.news__swipe-icon span:nth-child(3) { animation-delay: 0.4s; opacity: 0.35; }
@keyframes newsSwipeChevron {
  0%, 60%, 100% { transform: rotate(45deg) translateX(0); }
  30% { transform: rotate(45deg) translateX(4px); }
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-expo);
  outline: none;
  contain: layout style;
}
.news-card:hover, .news-card:focus-visible {
  box-shadow: 0 2px 8px rgba(5,26,62,0.07);
  transform: translateY(-2px);
}
.news-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease-expo);
}
.news-card:hover .news-card__img { transform: scale(1.05); }
.news-card__body {
  padding: clamp(1rem, 2vw, 1.5rem);
}
.news-card__title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.news-card:hover .news-card__link { gap: 10px; }

@media (max-width: 900px) {
  .news__grid:not(.is-scroll) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .news__grid:not(.is-scroll) { grid-template-columns: 1fr; }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,26,62,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal.open {
  display: flex;
  opacity: 1;
}
.modal__box {
  background: var(--white);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-expo);
  
  display: flex;
  flex-direction: column;
}
.modal.open .modal__box { transform: scale(1); }
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.modal__close:hover { background: var(--white); }
.modal__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
  
  margin: 0;
  padding: 0;
}
.modal__content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.modal__title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.modal__content p {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}
.modal__content p:last-child { margin-bottom: 0; }

.cta-banner {
  contain: layout style;
  background: linear-gradient(135deg, #030F2A 0%, #051A3E 40%, #0A2D6E 70%, #0F3D8C 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.cta-banner .wrap { position: relative; z-index: 1; }

.cta-banner::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(75,147,255,0.18) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 20px;
}
.cta-banner__eyebrow::before,
.cta-banner__eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--lilac);
  opacity: 0.5;
}
.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 640px;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.cta-banner__title em {
  font-style: normal;
  background: linear-gradient(90deg, #82BAFF, #C5B8FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner__phone-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50px;
  padding: 13px 32px;
  margin-bottom: 28px;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 2px 12px rgba(0,0,0,0.12);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.cta-banner__phone-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.35) 40%, rgba(255,255,255,0.40) 60%, transparent 90%);
}
.cta-banner__phone-wrap:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.cta-banner__phone-wrap i {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
.cta-banner__phone {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.cta-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,0.32); }

.cta-banner__btn--outline {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 2px 12px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}
.cta-banner__btn--outline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.35) 40%, rgba(255,255,255,0.40) 60%, transparent 90%);
}
.cta-banner__btn--outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.26);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 6px 20px rgba(0,0,0,0.15);
}

.review-banner {
  background: var(--white);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.review-banner::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(184,174,237,0.18) 0%, transparent 60%);
  top: -120px; right: -100px;
  pointer-events: none;
}

.review-banner::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(75,147,255,0.1) 0%, transparent 60%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}
.review-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.review-banner__left { display: flex; flex-direction: column; }
.review-banner__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.review-banner__desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
}

.review-banner__quote {
  position: relative;
  border-left: 3px solid var(--lavender);
  padding: 4px 0 4px 20px;
  margin-bottom: 32px;
}
.review-banner__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 10px;
}
.review-banner__quote-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-banner__quote-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-banner__quote-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.review-banner__quote-loc {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.review-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: linear-gradient(110deg, #0A2A6A 0%, #1A4080 60%, #24559A 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 22px rgba(5,26,62,0.22);
  transition: transform 0.22s var(--ease-expo), box-shadow 0.22s, filter 0.22s;
  letter-spacing: -0.01em;
}
.review-banner__btn i { transition: transform 0.22s var(--ease-expo); }
.review-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(5,26,62,0.28);
  filter: brightness(1.08);
}
.review-banner__btn:hover i { transform: translateX(4px); }

.review-banner__proof {
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rb-score {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.rb-score__num {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1;
}
.rb-score__right { display: flex; flex-direction: column; gap: 4px; }
.rb-score__stars { display: flex; gap: 4px; }
.rb-score__stars i { color: #FBBF24; font-size: 1.1rem; }
.rb-score__label {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.45;
}
.rb-score__label strong { color: var(--navy); font-weight: 700; }

.rb-reviews { display: flex; flex-direction: column; gap: 14px; }
.rb-review {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rb-review__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.rb-review__body { flex: 1; }
.rb-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.rb-review__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.rb-review__stars { display: flex; gap: 2px; }
.rb-review__stars i { color: #FBBF24; font-size: 0.68rem; }
.rb-review__text {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
  font-style: italic;
}

.rb-proof-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.rb-proof-footer__icons {
  display: flex;
  gap: 6px;
}
.rb-proof-footer__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: var(--navy);
  opacity: 0.7;
}
.rb-proof-footer__text {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .review-banner__inner { grid-template-columns: 1fr; gap: 3rem; }
  .review-banner__desc { max-width: 100%; }
}

.footer {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer__social:hover { background: var(--azure); color: var(--white); }

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer__contacts i {
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.footer__contacts a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__oferta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.footer__oferta:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

p:not(.hero__tagline):not(.reviews__quote):not(.rb-card__text):not(.director__quote),
li, td, th, input, textarea, select, label, button,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

p.hero__tagline {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: italic !important;
}
p.hero__tagline em {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
}
.reviews__quote,
.rb-card__text,
.director__quote {
  font-family: 'DM Serif Display', Georgia, serif !important;
}

body {
  background-color: #ffffff !important;
  font-size: 1rem !important;
  color: #0D1B2E !important;
}

a { text-decoration: none !important; }
a:hover, a:focus, a:active { text-decoration: none !important; }

.nav {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 1000 !important;
}

.nav__link {
  color: rgba(5, 26, 62, 0.65) !important;
  font-weight: 500 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  text-decoration: none !important;
}
.nav__link--active {
  color: #0044AA !important;
  font-weight: 600 !important;
}
.nav__link:hover, .nav__link:focus {
  color: #051A3E !important;
  text-decoration: none !important;
  background: rgba(0,68,170,0.055) !important;
}

.nav__link:not(.nav__link--active):hover::after {
  content: '' !important;
  display: block !important;
}

.nav__phone {
  color: #0044AA !important;
  background: transparent !important;
  border: 1.5px solid #0044AA !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}
.nav__phone:hover, .nav__phone:focus {
  background: #0044AA !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.nav__phone i, .nav__phone span {
  color: inherit !important;
}

.btn-ghost-hero {
  color: #051A3E !important;
  text-decoration: none !important;
}
.btn-ghost-hero span { color: #051A3E !important; }
.btn-ghost-hero i { color: #051A3E !important; }
.btn-ghost-hero:hover, .btn-ghost-hero:focus {
  color: #051A3E !important;
  text-decoration: none !important;
}
.btn-ghost-hero:hover span,
.btn-ghost-hero:focus span { color: #051A3E !important; }

body .hero p.hero__tagline,
body p.hero__tagline,
.hero__content p.hero__tagline,
.hero p.hero__tagline,
p.hero__tagline {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: italic !important;
}
body .hero p.hero__tagline em,
body p.hero__tagline em,
p.hero__tagline em {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

.svc-card__arrow {
  color: #7C6FCD !important;
}
.svc-card:hover .svc-card__arrow,
.svc-card-wrap:hover .svc-card__arrow {
  color: #0044AA !important;
}
.svc-card__title {
  color: #051A3E !important;
  font-weight: 700 !important;
}
.svc-card__desc {
  color: #94A3B8 !important;
}

.nav .nav__menu > li::before,
.nav .nav__menu > li > a::before,
.nav .nav__menu li::marker {
  content: none !important;
  display: none !important;
}
.nav .nav__menu {
  list-style: none !important;
}
.nav .nav__menu li {
  list-style: none !important;
  list-style-type: none !important;
}

#sp-header {
  background: transparent !important;
  box-shadow: none !important;
  height: 0 !important;
  position: static !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

#sp-header .sp-module,
#sp-header .sp-module-content,
#sp-header > div,
#sp-header > .container,
#sp-header > .row {
  padding: 0 !important;
  margin: 0 !important;
  height: 0 !important;
  overflow: visible !important;
}

.footer__links li::before,
.footer__links li::after,
.footer__links a::before,
.footer__links a::after,
.footer li::before,
.footer li::after,
.footer a::before,
.footer a::after {
  content: none !important;
  display: none !important;
}
.footer__links {
  list-style: none !important;
}
.footer__links li {
  list-style: none !important;
  list-style-type: none !important;
}

.sp-module ul > li > a::before,
.sp-module ul > li > a:before {
  content: none !important;
  display: none !important;
  margin: 0 !important;
}

.footer__tagline {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.6 !important;
}

.footer__links {
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer__links li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer__links a {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  display: block !important;
  padding: 0 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

.footer__links a:hover,
.footer__links a:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.footer__col-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 16px !important;
}


.lastWord { text-align: end; margin-top: 2%; }

.custom-block {
  text-align: center;
  padding: 20px;
  background: rgba(98,151,255,0.07);
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.custom-block img { max-width: 40%; margin-bottom: 15px; }

.centeredCard { text-align: center; }
.coloredText { color: #4A92FF; }

.bottomCard {
  border-radius: 0 0 20px 20px;
  background-color: #ffffff;
  padding-top: 4%;
  height: 135px;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.card-item { margin: 10px; }
.btmMargin { padding-bottom: 13%; }

.formArea {
  background: linear-gradient(137deg, #04A 27.13%, #4A92FF 98.49%);
  border-radius: 35px;
  color: white;
  align-items: center;
  padding: 3% 8%;
}

.firstLine { margin: 3% 5% 1rem 5%; display: flex; }
.firstLine img {
  max-width: 18%;
  height: auto;
  border-radius: 50%;
  margin-right: 10px;
}

.centeredCard.bottomCard h3 { font-size: 20px; }

@media (max-width: 600px) {
  .card-wrapper { display: block; }
  .btmMargin { padding-bottom: 13%; }
  .centeredCard { width: 100%; margin: 0 auto; }
  .centeredCard img { width: 100%; height: auto; }
  .custom-block img { max-width: 60%; }
}


.nav--solid,
.nav--solid.nav {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(12px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.5) !important;
  border-bottom: 1px solid rgba(0,68,170,0.09) !important;
  box-shadow: 0 2px 20px rgba(5,26,62,0.07) !important;
}
.nav--solid .nav__link,
.nav--solid .nav__link:visited {
  color: rgba(5,26,62,0.65) !important;
}
.nav--solid .nav__link:hover {
  color: #051A3E !important;
}
.nav--solid .nav__phone {
  color: #0044AA !important;
  border-color: #0044AA !important;
}
.nav--solid .nav__phone:hover,
.nav--solid .nav__phone:focus {
  background: #0044AA !important;
  color: #ffffff !important;
}
.nav--solid .nav__phone:hover i,
.nav--solid .nav__phone:hover span,
.nav--solid .nav__phone:focus i,
.nav--solid .nav__phone:focus span {
  color: #ffffff !important;
}

.footer__contacts {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer__contacts li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.65) !important;
  list-style: none !important;
}
.footer__contacts li::before,
.footer__contacts li::after,
.footer__contacts a::before,
.footer__contacts a::after {
  content: none !important;
  display: none !important;
}
.footer__contacts a {
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.footer__contacts a:hover,
.footer__contacts a:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}
.footer__contacts i {
  color: rgba(255,255,255,0.75) !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
  width: 14px !important;
}
.footer__contacts span {
  color: rgba(255,255,255,0.65) !important;
}

.steps__item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 14px !important;
  position: relative !important;
}
.steps__num {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: clamp(3rem, 5vw, 4.5rem) !important;
  font-weight: 800 !important;
  color: rgba(184,174,237,0.35) !important;
  line-height: 1 !important;
  position: absolute !important;
  top: -0.5em !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
  user-select: none !important;
  z-index: 0 !important;
}
.steps__icon-wrap {
  position: relative !important;
  z-index: 1 !important;
  width: 64px !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #EEF1F8, #F5F7FB) !important;
  border: 2px solid rgba(124,111,205,0.2) !important;
  border-radius: 18px !important;
  font-size: 1.4rem !important;
  color: #7C6FCD !important;
  margin-top: 24px !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}
.steps__item:hover .steps__icon-wrap {
  background: linear-gradient(135deg, #0044AA, #7C6FCD) !important;
  border-color: transparent !important;
  color: #ffffff !important;
}
.steps__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #051A3E !important;
}
.steps__title * {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  color: #051A3E !important;
}
.steps__desc {
  font-size: 0.875rem !important;
  color: #6B7280 !important;
  line-height: 1.65 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.steps__desc * {
  font-size: 0.875rem !important;
  color: #6B7280 !important;
  line-height: 1.65 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
@media (max-width: 900px) {
  .steps__num { font-size: clamp(3.5rem, 10vw, 5rem) !important; top: -0.3em !important; color: rgba(184,174,237,0.4) !important; }
  .steps__icon-wrap { margin-top: 28px !important; }
}

.section-label {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #7C6FCD !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

.about__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  color: #051A3E !important;
}
.about__text {
  font-size: 0.97rem !important;
  color: #6B7280 !important;
  line-height: 1.75 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.about__stat-num {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  color: #051A3E !important;
}
.about__stat-num span { color: #0044AA !important; }
.about__stat-label {
  font-size: 0.75rem !important;
  color: #6B7280 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.about__accent-lead {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-style: italic !important;
  color: #ffffff !important;
}
.about__accent-sub {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.55) !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.about__accent-num {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}
.about__accent-desc {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.5) !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.about__card-icon { color: #7C6FCD !important; }
.about__card-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #051A3E !important;
}
.about__card-text {
  font-size: 0.9rem !important;
  color: #6B7280 !important;
  line-height: 1.7 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.about__link {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #0044AA !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.about__card-link {
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #0044AA !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

.svc-card__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #051A3E !important;
  line-height: 1.35 !important;
}
.svc-card__desc {
  font-size: 0.78rem !important;
  color: #9CA3AF !important;
  line-height: 1.55 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.svc-card__arrow {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #7C6FCD !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.svc-card:hover .svc-card__arrow,
.svc-card-wrap:hover .svc-card__arrow { color: #0044AA !important; }

.featurette__tag {
  font-size: 0.67rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #7C6FCD !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.featurette__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  color: #051A3E !important;
  line-height: 1.2 !important;
}
.featurette__text {
  font-size: 0.97rem !important;
  color: #6B7280 !important;
  line-height: 1.7 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.featurette__link {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #0044AA !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

.director__quote {
  font-family: 'DM Serif Display', Georgia, serif !important;
}
.director__name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}
.director__role {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  color: rgba(255,255,255,0.6) !important;
}

.news-card__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  color: #051A3E !important;
}
.news-card__excerpt {
  color: #6B7280 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.news-card__date,
.news-card__category {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  color: #6B7280 !important;
}
.news-card__link {
  font-weight: 700 !important;
  color: #0044AA !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACTS PAGE — border-radius overrides (Bootstrap reset fix)
   ═══════════════════════════════════════════════════════════════ */
.cp-hero {
  border-radius: 24px !important;
  margin-left: clamp(0.75rem, 2vw, 1.5rem) !important;
  margin-right: clamp(0.75rem, 2vw, 1.5rem) !important;
}
@media (max-width: 768px) {
  .cp-hero {
    border-radius: 18px !important;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
@media (max-width: 480px) {
  .cp-hero {
    border-radius: 14px !important;
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
}
.cp-contact-card {
  border-radius: 18px !important;
}
.cp-map {
  border-radius: 22px !important;
  overflow: hidden !important;
}
.cp-entrance-note {
  border-radius: 16px !important;
}
.cp-social-link {
  border-radius: 11px !important;
}
.cp-hero__chip {
  border-radius: 50px !important;
}

/* ═══════════════════════════════════════════════════════════════
   REGISTRATION PAGE — button hover overrides (Bootstrap a:hover fix)
   ═══════════════════════════════════════════════════════════════ */
.rp-action-btn--offline,
.rp-action-btn--offline:link,
.rp-action-btn--offline:visited {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
}
.rp-action-btn--offline:hover,
.rp-action-btn--offline:focus {
  color: rgba(255,255,255,0.95) !important;
  background: rgba(255,255,255,0.12) !important;
  text-decoration: none !important;
}
.rp-action-btn--online,
.rp-action-btn--online:link,
.rp-action-btn--online:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}
.rp-action-btn--online:hover,
.rp-action-btn--online:focus {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(0,68,170,0.85), rgba(26,92,181,0.85)) !important;
  text-decoration: none !important;
}
.rp-action-btn__title,
.rp-action-btn__sub {
  color: inherit !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — About "Наша команда" card: text first, photo below
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .about__card--with-photo { flex-direction: column !important; }
  .about__card-photo {
    width: 100% !important;
    height: 160px !important;
    order: 1 !important;
  }
  .about__card-photo::before {
    background: linear-gradient(to top, var(--white) 0%, transparent 35%) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — Steps centering fix
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .steps__list {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }
  .steps__item {
    width: 100% !important;
    max-width: 320px !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .steps__title,
  .steps__desc {
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .steps__list {
    justify-items: center !important;
  }
  .steps__item {
    align-items: center !important;
    text-align: center !important;
  }
}
