@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,600;6..72,700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --clr-primary: #2A2566;
  --clr-primary-2: #4338CA;
  --clr-secondary: #0D9488;
  --clr-accent: #F5A524;
  --clr-accent-2: #EF6F6C;
  --clr-bg: #FBFAF7;
  --clr-surface: #FFFFFF;
  --clr-ink: #211E38;
  --clr-ink-soft: #5B5775;
  --clr-line: #E7E3F0;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 999px;

  --sh-sm: 0 1px 2px rgba(42,37,102,.07), 0 1px 1px rgba(42,37,102,.04);
  --sh-md: 0 10px 24px rgba(42,37,102,.10), 0 3px 8px rgba(42,37,102,.07);
  --sh-lg: 0 28px 64px rgba(42,37,102,.18), 0 10px 24px rgba(42,37,102,.10);

  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--clr-ink);
  background: var(--clr-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Newsreader', serif;
  color: var(--clr-primary);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--clr-ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--r-md); }
ul { padding: 0; margin: 0; list-style: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin: 0 0 var(--sp-2);
}
.eyebrow-c { text-align: center; }

.sec-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  max-width: 720px;
}
.eyebrow-c + .sec-title { margin-left: auto; margin-right: auto; text-align: center; }

.sec-lead {
  font-size: 1.05rem;
  max-width: 640px;
}
.eyebrow-c ~ .sec-lead { margin-left: auto; margin-right: auto; text-align: center; }

.sec-narrow { max-width: 820px; margin: 0 auto; text-align: center; }
.sec-narrow .sec-title, .sec-narrow .sec-lead { max-width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .9em 1.8em;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  min-height: 44px;

  &.btn-solid {
    background: linear-gradient(135deg, var(--clr-primary-2), var(--clr-primary));
    color: #fff;
    box-shadow: var(--sh-md);
    &:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
  }
  &.btn-outline {
    background: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    &:hover { background: var(--clr-primary); color: #fff; transform: translateY(-2px); }
  }
  &.btn-ghost {
    background: transparent;
    border-color: var(--clr-line);
    color: var(--clr-ink-soft);
    &:hover { border-color: var(--clr-ink-soft); color: var(--clr-ink); }
  }
  &.btn-lg { padding: 1.05em 2.2em; font-size: 1rem; }
}


.hdr {
  position: relative;
  z-index: 40;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-line);

  & .hdr-in {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--sp-3) var(--sp-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
  }
  & .hdr-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    flex: 1;
    font-weight: 600;
    font-size: .93rem;

    & a {
      color: var(--clr-ink-soft);
      position: relative;
      padding: .3em 0;
      transition: color .25s var(--ease);
      &:hover { color: var(--clr-primary); }
      &.is-active { color: var(--clr-primary); }
    }
  }
  & .hdr-nav-left { justify-content: flex-start; }
  & .hdr-nav-right { justify-content: flex-end; }
  & .hdr-logo img { display: block; }
  & .hdr-cta {
    background: linear-gradient(135deg, var(--clr-primary-2), var(--clr-primary));
    color: #fff !important;
    padding: .65em 1.4em !important;
    border-radius: var(--r-full);
    box-shadow: var(--sh-sm);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
    &:hover { box-shadow: var(--sh-md); transform: translateY(-1px); }
  }
  & .hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    & span {
      width: 24px;
      height: 2px;
      background: var(--clr-primary);
      border-radius: 2px;
      transition: transform .25s var(--ease), opacity .25s var(--ease);
    }
  }
}

@media (max-width: 900px) {
  .hdr-nav { display: none !important; }
  .hdr .hdr-burger { display: flex; }
}


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  display: flex;

  & .mob-menu-panel {
    width: 80%;
    max-width: 340px;
    height: 100%;
    background: linear-gradient(165deg, var(--clr-primary) 0%, #191536 100%);
    padding: var(--sp-6) var(--sp-4) var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    transform: translateX(-100%);
    transition: transform .4s var(--ease);
    box-shadow: var(--sh-lg);

    & a {
      color: rgba(255,255,255,.88);
      font-family: 'Newsreader', serif;
      font-size: 1.4rem;
      font-weight: 600;
      padding: .5em 0;
      opacity: 0;
      transform: translateX(-16px);
      transition: opacity .35s var(--ease), transform .35s var(--ease), color .25s var(--ease);
      &:hover { color: var(--clr-accent); }
    }
  }
  & .mob-menu-overlay {
    flex: 1;
    background: rgba(20, 17, 45, .45);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .35s var(--ease);
  }

  &.is-open {
    visibility: visible;
    pointer-events: auto;
    & .mob-menu-panel { transform: translateX(0); }
    & .mob-menu-overlay { opacity: 1; }
    & .mob-menu-panel a {
      opacity: 1;
      transform: translateX(0);
    }
    & .mob-menu-panel a:nth-child(1) { transition-delay: .08s; }
    & .mob-menu-panel a:nth-child(2) { transition-delay: .14s; }
    & .mob-menu-panel a:nth-child(3) { transition-delay: .2s; }
    & .mob-menu-panel a:nth-child(4) { transition-delay: .26s; }
    & .mob-menu-panel a:nth-child(5) { transition-delay: .32s; }
  }
}


.mesh {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(67,56,202,.20), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(245,165,36,.18), transparent 40%),
    radial-gradient(circle at 78% 85%, rgba(13,148,136,.20), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(239,111,108,.16), transparent 42%),
    var(--clr-bg);
}
.mesh--soft {
  background:
    radial-gradient(circle at 10% 15%, rgba(67,56,202,.10), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(13,148,136,.12), transparent 42%),
    radial-gradient(circle at 70% 90%, rgba(245,165,36,.10), transparent 40%),
    var(--clr-bg);
}
.mesh--alt {
  background:
    radial-gradient(circle at 85% 15%, rgba(13,148,136,.20), transparent 42%),
    radial-gradient(circle at 10% 30%, rgba(239,111,108,.16), transparent 40%),
    radial-gradient(circle at 50% 95%, rgba(67,56,202,.18), transparent 45%),
    var(--clr-bg);
}
.mesh--dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(245,165,36,.25), transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(13,148,136,.30), transparent 42%),
    radial-gradient(circle at 60% 90%, rgba(239,111,108,.22), transparent 45%),
    linear-gradient(155deg, var(--clr-primary), #171335);
  color: #fff;
  & h2, & h1, & p { color: #fff; }
  & p { opacity: .88; }
}


.hero {
  position: relative;
  padding: var(--sp-7) 0 var(--sp-8);
  overflow: hidden;

  & .hero-in {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: var(--sp-6);
    align-items: center;
    position: relative;
    z-index: 2;
  }
  & h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    margin-bottom: .5em;
  }
  & .hero-lead {
    font-size: 1.1rem;
    max-width: 520px;
  }
  & .hero-cta {
    display: flex;
    gap: var(--sp-2);
    flex-wrap: wrap;
    margin-top: var(--sp-3);
  }
  & .hero-img {
    position: relative;
    & img {
      border-radius: var(--r-xl);
      box-shadow: var(--sh-lg);
      width: 100%;
      height: 560px;
      object-fit: cover;
    }
    & .hero-img-card {
      position: absolute;
      bottom: -28px;
      left: -28px;
      background: var(--clr-surface);
      border-radius: var(--r-lg);
      box-shadow: var(--sh-lg);
      padding: var(--sp-3);
      max-width: 250px;
      display: flex;
      gap: var(--sp-2);
      align-items: flex-start;
      & i { color: var(--clr-accent); font-size: 1.3rem; margin-top: 2px; }
      & p { margin: 0; font-size: .9rem; color: var(--clr-ink); font-weight: 500; }
    }
  }
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  & .shp {
    position: absolute;
    border-radius: 50%;
    opacity: .5;
    filter: blur(2px);
  }
  & .shp-1 { width: 220px; height: 220px; top: 8%; left: 4%; background: rgba(67,56,202,.14); border-radius: var(--r-xl); }
  & .shp-2 { width: 160px; height: 160px; top: 60%; left: 8%; background: rgba(245,165,36,.16); }
  & .shp-3 { width: 260px; height: 260px; top: 4%; right: 6%; background: rgba(13,148,136,.14); border-radius: var(--r-lg); }
  & .shp-4 { width: 130px; height: 130px; bottom: 8%; right: 12%; background: rgba(239,111,108,.16); }
}

.pg-hero {
  position: relative;
  padding: var(--sp-7) 0 var(--sp-6);
  text-align: center;
  overflow: hidden;
  & h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 800px; margin: 0 auto .5em; }
  & .pg-hero-lead { max-width: 680px; margin: 0 auto; font-size: 1.05rem; position: relative; z-index: 2; }
  & .wrap { position: relative; z-index: 2; }
}


.sec {
  padding: var(--sp-7) 0;
  position: relative;
}
.sec--overlap {
  margin-top: -70px;
  padding-top: calc(var(--sp-7) + 70px);
  background: var(--clr-bg);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  z-index: 2;
}
.sec-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.sec-split-rev .story-img { order: 2; }
.sec-split-rev > div:first-child { order: 1; }

.story-img img, .aud-img img {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}


.crd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.crd {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  border: 1px solid var(--clr-line);
  &:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

  & .crd-ico {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--clr-primary-2), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: var(--sp-2);
  }
  & h3 { font-size: 1.15rem; margin-bottom: .4em; }
  & .crd-txt { font-size: .93rem; margin: 0; }
}
.crd--slide { height: 100%; min-height: 210px; }


.tabs-card {
  margin-top: var(--sp-5);
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  border: 1px solid var(--clr-line);
}
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--clr-line);
  background: rgba(42,37,102,.03);
}
.tabs-btn {
  flex: 1;
  min-width: 160px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-3) var(--sp-3);
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--clr-ink-soft);
  position: relative;
  transition: color .25s var(--ease), background .25s var(--ease);

  & span { display: block; font-weight: 500; font-size: .8rem; color: var(--clr-ink-soft); opacity: .7; margin-top: 2px; }
  &:hover { color: var(--clr-primary); background: rgba(42,37,102,.04); }
  &.is-active {
    color: var(--clr-primary);
    background: var(--clr-surface);
    &::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -1px;
      height: 3px;
      background: linear-gradient(90deg, var(--clr-primary-2), var(--clr-secondary));
    }
  }
}
.tabs-panels { position: relative; }
.tabs-panel {
  display: none;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-5);
  padding: var(--sp-5);
  align-items: center;
  animation: fadeUp .5s var(--ease);
  &.is-active { display: grid; }
  & img { height: 340px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
}
.tabs-list {
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: .6em;
  & li { display: flex; gap: .6em; align-items: flex-start; font-size: .95rem; color: var(--clr-ink-soft); }
  & i { color: var(--clr-secondary); margin-top: 4px; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }


.jrn {
  margin-top: var(--sp-5);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
  position: relative;
}
.jrn-step {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  &:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

  & .jrn-num {
    font-family: 'Newsreader', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-accent-2);
    margin-bottom: .3em;
  }
  & h3 { font-size: 1.05rem; margin-bottom: .3em; }
  & p { font-size: .88rem; margin: 0; }
}


.tools-swiper { margin-top: var(--sp-5); overflow: visible !important; padding-bottom: var(--sp-2); }
.swiper-nav {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-4);
}
.swiper-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--clr-line);
  background: var(--clr-surface);
  color: var(--clr-primary);
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  &:hover { background: var(--clr-primary); color: #fff; box-shadow: var(--sh-md); }
}


.aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.aud-col {
  & h4 { font-size: 1rem; display: flex; gap: .5em; align-items: center; margin-bottom: .6em; color: var(--clr-primary);
    & i { color: var(--clr-secondary); }
  }
  & ul { display: flex; flex-direction: column; gap: .5em; }
  & li { font-size: .93rem; color: var(--clr-ink-soft); padding-left: 1.2em; position: relative;
    &::before { content: '\2013'; position: absolute; left: 0; color: var(--clr-accent); }
  }
}


.sec--cta {
  border-radius: var(--r-xl);
  margin: 0 var(--sp-4);
  padding: var(--sp-6) var(--sp-4);
}
.cta-in {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  & h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
  & p { font-size: 1.05rem; margin-bottom: var(--sp-4); }
}


.mod-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.mod-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-line);
  box-shadow: var(--sh-sm);
  padding: var(--sp-5);
  transition: box-shadow .3s var(--ease);
  &:hover { box-shadow: var(--sh-md); }
  & .mod-num {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--clr-primary-2), var(--clr-secondary));
    padding: .3em 1em;
    border-radius: var(--r-full);
    margin-bottom: var(--sp-2);
  }
  & h2 { font-size: 1.5rem; }
}
.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-3);
  & h4 { font-size: .95rem; color: var(--clr-primary); margin-bottom: .5em; }
  & ul { display: flex; flex-direction: column; gap: .4em; }
  & li { font-size: .9rem; color: var(--clr-ink-soft); padding-left: 1.1em; position: relative;
    &::before { content: '\2022'; position: absolute; left: 0; color: var(--clr-secondary); }
  }
}
.info-list {
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: .8em;
  & li { display: flex; gap: .7em; align-items: center; font-size: .95rem; color: var(--clr-ink-soft); }
  & i { color: var(--clr-accent); width: 20px; }
}


.diag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.diag-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--clr-line);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  &:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
  & .diag-num {
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary-2);
    opacity: .8;
  }
  & h3 { font-size: 1.15rem; margin: .2em 0 .4em; }
  & p { font-size: .9rem; }
  & ul { display: flex; flex-direction: column; gap: .5em; margin-top: .6em; }
  & li { font-size: .85rem; color: var(--clr-ink-soft); padding-left: 1.1em; position: relative;
    &::before { content: '?'; position: absolute; left: 0; color: var(--clr-accent-2); font-weight: 700; }
  }
}


.sec--contact { padding: var(--sp-7) 0 var(--sp-8); position: relative; overflow: hidden; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: var(--sp-6);
  position: relative;
  z-index: 2;
}
.contact-lead { font-size: 1.02rem; max-width: 560px; }
.frm {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: var(--sp-5);
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.frm-field {
  display: flex;
  flex-direction: column;
  gap: .4em;
  & label { font-weight: 600; font-size: .92rem; color: var(--clr-primary); }
  & input, & textarea {
    font-family: 'Manrope', sans-serif;
    font-size: .98rem;
    padding: .85em 1em;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--clr-line);
    background: var(--clr-bg);
    color: var(--clr-ink);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
    min-height: 44px;
    &:focus { outline: none; border-color: var(--clr-primary-2); box-shadow: 0 0 0 4px rgba(67,56,202,.12); }
  }
  & textarea { min-height: 120px; resize: vertical; }
  & .frm-help { font-size: .8rem; color: var(--clr-ink-soft); margin: 0; opacity: .8; }
}
.frm-check {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  & .chk-label {
    display: flex;
    align-items: center;
    gap: .6em;
    font-size: .9rem;
    color: var(--clr-ink-soft);
    cursor: pointer;
    & input { width: 20px; height: 20px; accent-color: var(--clr-primary-2); }
    & a { color: var(--clr-primary-2); font-weight: 600; }
  }
}
.frm-submit { align-self: flex-start; margin-top: var(--sp-1); }

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.info-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--clr-line);
  & h3 { font-size: 1rem; display: flex; gap: .5em; align-items: center; margin-bottom: .4em;
    & i { color: var(--clr-secondary); }
  }
  & p { margin: 0; font-size: .93rem; }
  & a { color: var(--clr-primary-2); font-weight: 600; }
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: .5em;
  & li { display: flex; justify-content: space-between; font-size: .9rem; color: var(--clr-ink-soft);
    & span:last-child { font-weight: 600; color: var(--clr-ink); }
  }
}
.info-map { padding: 0; overflow: hidden; }
.info-map iframe { display: block; border-radius: var(--r-lg); }


.thanks-hero {
  padding: var(--sp-8) 0 var(--sp-7);
  text-align: center;
  position: relative;
  overflow: hidden;
  & .wrap { position: relative; z-index: 2; max-width: 700px; }
  & .thanks-ico { font-size: 3rem; color: var(--clr-accent); margin-bottom: var(--sp-3); }
  & h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
  & p { font-size: 1.05rem; }
}
.sec--next { text-align: center; }
.sec--next .btn { margin-top: var(--sp-3); }


.sec--legal { padding-top: var(--sp-6); }
.tml {
  position: relative;
  padding-left: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  &::before {
    content: '';
    position: absolute;
    left: .55rem;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--clr-primary-2), var(--clr-secondary));
  }
}
.tml-item { position: relative; }
.tml-dot {
  position: absolute;
  left: -2.4rem;
  top: 0;
  min-width: 90px;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: var(--clr-primary-2);
  padding: .3em .7em;
  border-radius: var(--r-full);
  text-align: center;
  box-shadow: var(--sh-sm);
}
.tml-body {
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-sm);
  margin-left: 1.4rem;
  & h2 { font-size: 1.2rem; margin-bottom: .5em; }
  & p { font-size: .93rem; margin: 0; }
}
.tml-compact .tml-body { padding: var(--sp-3) var(--sp-4); }
.tml-tight { gap: var(--sp-3); }
.tml-tight .tml-dot { min-width: 40px; display: flex; align-items: center; justify-content: center; height: 36px; width: 36px; left: -2.6rem; }


.ftr {
  background: linear-gradient(160deg, #fff 0%, rgba(67,56,202,.06) 45%, rgba(13,148,136,.09) 100%);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--clr-line);
}
.ftr-in {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
}
.ftr-col {
  display: flex;
  flex-direction: column;
  gap: .6em;
  & h4 { font-size: .95rem; color: var(--clr-primary); margin-bottom: .4em; }
  & a, & p { font-size: .88rem; color: var(--clr-ink-soft); }
  & a:hover { color: var(--clr-primary-2); }
  & i { width: 16px; color: var(--clr-secondary); margin-right: .4em; }
}
.ftr-brand p { max-width: 260px; }
.ftr-bottom {
  border-top: 1px solid var(--clr-line);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  & p { margin: 0; font-size: .82rem; color: var(--clr-ink-soft); }
}


.fab-cta {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  z-index: 50;

  & .fab-cta-btn {
    display: flex;
    align-items: center;
    gap: .6em;
    background: linear-gradient(135deg, var(--clr-primary-2), var(--clr-secondary));
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    padding: .9em 1em .9em 1.2em;
    border-radius: var(--r-md) 0 0 var(--r-md);
    box-shadow: var(--sh-md);
    transition: padding .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
    & span { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s var(--ease); }
    & i { transition: transform .3s var(--ease); }
    &:hover {
      padding-right: 1.4em;
      box-shadow: var(--sh-lg);
      & span { max-width: 160px; }
    }
  }
}
@media (max-width: 640px) { .fab-cta { display: none; } }

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--clr-primary);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--sh-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease);
  z-index: 60;
  &.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  &:hover { background: var(--clr-primary-2); }
}


.cke {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-line);
  box-shadow: 0 -12px 40px rgba(42,37,102,.14);
  display: flex;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  &.is-visible { transform: translateY(0); }

  & .cke-left {
    flex: 1;
    padding: var(--sp-3) var(--sp-4);
    display: flex;
    align-items: center;
    border-right: 1px solid var(--clr-line);
    & p { margin: 0; font-size: .85rem; color: var(--clr-ink-soft); }
    & a { color: var(--clr-primary-2); font-weight: 600; }
  }
  & .cke-right {
    flex: 1;
    padding: var(--sp-3) var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }
  & .cke-cats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    & label { display: flex; align-items: center; gap: .4em; font-size: .82rem; color: var(--clr-ink-soft); }
    & input { width: 16px; height: 16px; accent-color: var(--clr-primary-2); }
  }
  & .cke-btns {
    display: flex;
    gap: .6em;
    flex-wrap: wrap;
    & .btn { padding: .6em 1.1em; font-size: .82rem; min-height: 40px; }
  }
}
@media (max-width: 800px) {
  .cke { flex-direction: column; }
  .cke .cke-left { border-right: none; border-bottom: 1px solid var(--clr-line); }
}


[data-aos] { will-change: transform, opacity; }


@media (max-width: 1080px) {
  .hero .hero-in { grid-template-columns: 1fr; }
  .hero .hero-img img { height: 420px; }
  .crd-grid { grid-template-columns: repeat(2, 1fr); }
  .jrn { grid-template-columns: repeat(3, 1fr); }
  .diag-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-split { grid-template-columns: 1fr; }
  .sec-split-rev .story-img { order: 0; }
  .contact-wrap { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .tabs-panel { grid-template-columns: 1fr; }
  .tabs-panel img { height: 260px; }
  .ftr-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 var(--sp-3); }
  .sec { padding: var(--sp-5) 0; }
  .hero { padding: var(--sp-5) 0 var(--sp-6); }
  .hero .hero-img-card { position: static; margin-top: var(--sp-2); max-width: 100%; }
  .crd-grid { grid-template-columns: 1fr; }
  .jrn { grid-template-columns: 1fr; }
  .diag-grid { grid-template-columns: 1fr; }
  .tabs-nav { flex-direction: column; }
  .tabs-btn { min-width: auto; }
  .sec--cta { margin: 0 var(--sp-2); padding: var(--sp-5) var(--sp-3); }
  .ftr-in { grid-template-columns: 1fr; text-align: left; }
  .cke-cats { gap: var(--sp-2); }
}