/* ================================================================
   Путь к профессии — Shared Design System v2.0
   ================================================================ */

/* --- Reset --- */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,h5,h6{margin:0}

/* --- Design Tokens --- */
:root{
  --bg:#FAF6EC;
  --bg-2:#F4EDD8;
  --paper:#FFFFFF;
  --ink:#0F1729;
  --ink-soft:#3F485A;
  --ink-mute:#737A88;
  --line:rgba(15,23,41,.08);
  --line-strong:rgba(15,23,41,.14);
  --brand:#1F66FF;
  --brand-deep:#1A52CC;
  --brand-light:#E4ECFF;
  --green:#22A06B;
  --green-light:#DFF1E2;

  --t-blue:#E4ECFF;   --t-blue-ink:#1F66FF;
  --t-green:#DFF1E2;  --t-green-ink:#1F9D55;
  --t-purple:#ECE5FB; --t-purple-ink:#6B4FE1;
  --t-amber:#FBE6CC;  --t-amber-ink:#C0700E;

  --shadow-1:0 1px 0 rgba(15,23,41,.04),0 2px 6px rgba(15,23,41,.04);
  --shadow-2:0 10px 30px -12px rgba(15,23,41,.18),0 2px 6px rgba(15,23,41,.04);
  --shadow-3:0 40px 80px -30px rgba(15,23,41,.28);

  --ease:cubic-bezier(.16,1,.3,1);
  --maxw:1280px;
  --pad-x:clamp(20px,4vw,56px);

  --font:"Geist",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  --serif:"Newsreader",Georgia,serif;
  --anchor-offset:116px;
}

/* --- Base --- */
html,body{
  font-family:var(--font);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body{
  min-height:100dvh;
  overflow-x:hidden;
  background:
    radial-gradient(60% 50% at 8% 6%,rgba(31,102,255,.10),transparent 55%),
    radial-gradient(55% 60% at 92% 0%,rgba(244,200,140,.28),transparent 60%),
    linear-gradient(180deg,#FAF6EC 0%,#F7F1E0 60%,#FAF6EC 100%);
}
html{scroll-padding-top:var(--anchor-offset)}
section[id],
h1[id],
h2[id],
h3[id]{scroll-margin-top:var(--anchor-offset)}
@media(max-width:768px){
  :root{--anchor-offset:88px}
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.display{
  font-weight:700;letter-spacing:-.028em;
  font-size:clamp(36px,5vw,68px);line-height:1.04;margin:0;
}
.display .word{color:var(--brand);position:relative;display:inline-block}
.display .word::after{
  content:"✦";position:absolute;font-size:.35em;color:#F4C46A;
  right:-.45em;top:0;transform:rotate(-10deg);
}
.display--md{font-size:clamp(26px,3.8vw,48px);line-height:1.08;font-weight:700;letter-spacing:-.024em;margin:0}
.display--sm{font-size:clamp(20px,2.6vw,34px);line-height:1.12;font-weight:700;letter-spacing:-.02em;margin:0}
.lede{font-size:clamp(15px,1.05vw,17px);line-height:1.6;color:var(--ink-soft);max-width:54ch;margin:0}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ink-mute);font-weight:500;
}
.eyebrow span{display:inline-block;width:22px;height:1px;background:currentColor}
.eyebrow--branded{
  color:var(--brand);background:rgba(31,102,255,.08);
  padding:7px 14px;border-radius:999px;gap:8px;
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad-x)}
.section{padding:clamp(48px,7vw,96px) var(--pad-x);max-width:var(--maxw);margin:0 auto}
.section-header{margin-bottom:clamp(28px,4vw,48px)}
.section-header--center{text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px}
.text-center{text-align:center}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 22px;border-radius:14px;
  font-weight:500;font-size:15px;border:1px solid transparent;
  transition:transform .2s var(--ease),background-color .2s,color .2s,box-shadow .2s;
  white-space:nowrap;line-height:1;
}
.btn--lg{padding:17px 26px;font-size:16px;border-radius:16px}
.btn--sm{padding:9px 14px;font-size:13px;border-radius:10px}
.btn--full{width:100%;justify-content:center}
.btn--primary{
  background:var(--brand);color:#fff;
  box-shadow:0 1px 0 rgba(255,255,255,.2) inset,0 10px 24px -10px rgba(31,102,255,.55);
}
.btn--primary:hover{background:var(--brand-deep);transform:translateY(-1px)}
.btn--white{background:#fff;color:var(--ink);border-color:var(--line);box-shadow:var(--shadow-1)}
.btn--white:hover{transform:translateY(-1px);box-shadow:var(--shadow-2)}
.btn--outline{border-color:var(--brand);color:var(--brand);background:transparent}
.btn--outline:hover{background:var(--brand-light)}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav{
  position:sticky;top:0;z-index:100;
  display:flex;align-items:center;gap:16px;
  padding:12px var(--pad-x);
  background:linear-gradient(to bottom,rgba(250,246,236,.96),rgba(250,246,236,.82));
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.brand{display:inline-flex;align-items:center;gap:11px;text-decoration:none;flex-shrink:0}
.brand__mark{
  width:38px;height:38px;border:1.5px solid var(--brand);border-radius:50%;
  color:var(--brand);display:inline-grid;place-items:center;
}
.brand__mark svg{width:19px;height:19px}
.brand__text{display:flex;flex-direction:column;line-height:1.2}
.brand__text strong{font-weight:600;font-size:14px;letter-spacing:-.01em;color:var(--ink)}
.brand__text em{font-style:normal;font-size:10.5px;letter-spacing:.02em;color:var(--ink-mute)}
.nav__menu{display:flex;gap:2px;margin-left:8px;flex:1;overflow-x:auto}
.nav__menu a{
  font-size:13px;color:var(--ink-soft);padding:7px 9px;border-radius:8px;
  transition:color .2s,background .2s;white-space:nowrap;
}
.nav__menu a:hover,.nav__menu a.active{color:var(--brand);background:var(--brand-light)}
.nav__cta{margin-left:auto;flex-shrink:0}
.nav__cta .btn{padding:9px 16px;font-size:13px;border-radius:11px}

/* Burger */
.nav__burger{
  display:none;margin-left:auto;flex-direction:column;gap:5px;padding:8px;
  border-radius:8px;cursor:pointer;background:none;border:0;
}
.nav__burger span{display:block;width:22px;height:2px;background:var(--ink);border-radius:2px;transition:transform .3s var(--ease),opacity .3s}
.nav__burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__burger.open span:nth-child(2){opacity:0}
.nav__burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav__mobile{
  display:none;position:fixed;top:63px;left:0;right:0;bottom:0;
  background:rgba(250,246,236,.97);backdrop-filter:blur(16px);
  z-index:99;flex-direction:column;padding:20px var(--pad-x);gap:2px;overflow-y:auto;
}
.nav__mobile.open{display:flex}
.nav__mobile a{
  font-size:17px;font-weight:500;color:var(--ink);
  padding:14px 0;border-bottom:1px solid var(--line);transition:color .2s;
}
.nav__mobile a:hover{color:var(--brand)}
.nav__mobile .btn{margin-top:12px;width:100%;justify-content:center}

/* ================================================================
   PILL BADGE
   ================================================================ */
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 14px 7px 10px;border:1px solid var(--line);
  background:rgba(255,255,255,.65);backdrop-filter:blur(8px);
  border-radius:999px;font-size:13px;color:var(--ink-soft);font-weight:500;width:fit-content;
}
.pill__dot{width:7px;height:7px;border-radius:50%;background:#22A06B;box-shadow:0 0 0 3px rgba(34,160,107,.18)}

/* ================================================================
   HERO
   ================================================================ */
.hero{
  display:grid;grid-template-columns:1.1fr 0.9fr;
  gap:clamp(24px,4vw,60px);align-items:center;
  padding:clamp(40px,6vw,80px) var(--pad-x) clamp(28px,4vw,60px);
  max-width:var(--maxw);margin:0 auto;
}
.hero__copy{display:flex;flex-direction:column;gap:22px}
.hero__actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:4px}
.hero__visual{
  position:relative;aspect-ratio:1/1.08;
  width:100%;max-width:580px;justify-self:end;
}
.hero__visual::before{
  content:"";position:absolute;inset:8% 2% 6% 6%;
  border:1.5px dashed rgba(107,79,225,.35);border-radius:50%;
  z-index:1;pointer-events:none;
}
.hero__photo{
  position:absolute;inset:5% 4% 4% 12%;
  border-radius:24px;overflow:hidden;
  background:linear-gradient(180deg,#EFE4CC,#D9CBA9);
  box-shadow:var(--shadow-3);
}
.hero__photo img{width:100%;height:100%;object-fit:cover;filter:saturate(1.05) contrast(1.01)}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
.hero__sparkle{position:absolute;width:24px;height:24px;z-index:2;animation:float 5s ease-in-out infinite;color:#F4C46A}
.hero__sparkle::before{content:"✦";font-size:22px}
.hero__sparkle--a{top:8%;left:46%}
.hero__sparkle--b{bottom:6%;right:30%;animation-delay:-2s}
.float-card{
  position:absolute;z-index:3;display:flex;gap:11px;align-items:flex-start;
  padding:13px 15px;background:rgba(255,255,255,.92);backdrop-filter:blur(14px);
  border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow-2);
  max-width:220px;animation:float 7s ease-in-out infinite;
}
.float-card h4{margin:0 0 3px;font-size:13px;font-weight:600;color:var(--ink);line-height:1.2}
.float-card p{margin:0;font-size:11.5px;color:var(--ink-soft);line-height:1.4}
.float-card__icon{width:32px;height:32px;border-radius:10px;display:grid;place-items:center;flex-shrink:0}
.float-card__icon svg{width:16px;height:16px}
.float-card--tl{top:12%;left:-5%;animation-delay:-1s}
.float-card--tr{top:6%;right:-3%;animation-delay:-3s}
.float-card--ml{top:48%;right:-5%;animation-delay:-4s}
.float-card--br{bottom:14%;right:0;animation-delay:-5s}

/* ================================================================
   TONE / COLOR CLASSES
   ================================================================ */
.tone-blue{background:var(--t-blue);color:var(--t-blue-ink)}
.tone-green{background:var(--t-green);color:var(--t-green-ink)}
.tone-purple{background:var(--t-purple);color:var(--t-purple-ink)}
.tone-amber{background:var(--t-amber);color:var(--t-amber-ink)}

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  margin:0 var(--pad-x) clamp(40px,6vw,80px);
  background:#fff;border:1px solid var(--line);border-radius:24px;
  padding:22px clamp(18px,3vw,36px);box-shadow:var(--shadow-1);
}
.stats__item{display:flex;align-items:center;gap:14px}
.stats__icon{width:44px;height:44px;border-radius:13px;display:grid;place-items:center;flex-shrink:0}
.stats__icon svg{width:20px;height:20px}
.stats__item strong{display:block;font-size:20px;font-weight:700;letter-spacing:-.02em;line-height:1.1}
.stats__item span{font-size:12.5px;color:var(--ink-soft);line-height:1.4}

/* ================================================================
   DIRECTION CARDS
   ================================================================ */
.dirs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.dir-card{
  display:flex;flex-direction:column;gap:12px;padding:22px;
  background:rgba(255,255,255,.82);border:1px solid var(--line);
  border-radius:20px;box-shadow:var(--shadow-1);
  transition:transform .2s var(--ease),box-shadow .2s,border-color .2s;
  text-decoration:none;color:inherit;
}
.dir-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-2);border-color:rgba(31,102,255,.2)}
.dir-card__icon{width:46px;height:46px;border-radius:13px;display:grid;place-items:center}
.dir-card__icon svg{width:22px;height:22px}
.dir-card h3{font-size:15.5px;font-weight:600;letter-spacing:-.01em}
.dir-card p{font-size:13px;color:var(--ink-soft);line-height:1.5;margin:0;flex:1}
.dir-card__arrow{font-size:13px;color:var(--brand);font-weight:500;margin-top:4px}

/* ================================================================
   STEPS / HOW IT WORKS
   ================================================================ */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(14px,2.5vw,28px)}
.step{
  display:flex;flex-direction:column;gap:14px;padding:26px;
  background:#fff;border:1px solid var(--line);border-radius:20px;box-shadow:var(--shadow-1);
}
.step__num{
  width:42px;height:42px;border-radius:13px;
  background:var(--brand-light);color:var(--brand);
  display:grid;place-items:center;font-size:19px;font-weight:700;letter-spacing:-.03em;
}
.step h3{font-size:16.5px;font-weight:600;letter-spacing:-.01em}
.step p{font-size:13.5px;color:var(--ink-soft);line-height:1.6;margin:0}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band{
  background:linear-gradient(135deg,#1a52CC 0%,#1F66FF 60%,#3b82f6 100%);
  border-radius:28px;padding:clamp(36px,5vw,60px);
  color:#fff;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:22px;
}
.cta-band h2{font-size:clamp(22px,3.5vw,40px);font-weight:700;letter-spacing:-.024em;line-height:1.1;margin:0}
.cta-band p{font-size:16px;opacity:.85;max-width:48ch;margin:0;line-height:1.55}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.testimonial{
  background:#fff;border:1px solid var(--line);border-radius:20px;
  padding:22px;box-shadow:var(--shadow-1);display:flex;flex-direction:column;gap:14px;
}
.testimonial__stars{display:flex;gap:4px;color:#F4C46A;font-size:16px}
.testimonial__text{font-size:14px;color:var(--ink-soft);line-height:1.65;flex:1}
.testimonial__author{display:flex;align-items:center;gap:11px}
.testimonial__avatar{
  width:38px;height:38px;border-radius:50%;background:var(--brand-light);
  display:grid;place-items:center;font-size:17px;flex-shrink:0;
}
.testimonial__name{font-size:13.5px;font-weight:600}
.testimonial__meta{font-size:12px;color:var(--ink-mute)}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq{display:flex;flex-direction:column;gap:8px}
.faq-item{border:1px solid var(--line);border-radius:16px;background:#fff;overflow:hidden;box-shadow:var(--shadow-1)}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 22px;font-size:15px;font-weight:600;color:var(--ink);
  text-align:left;cursor:pointer;transition:background .15s;
}
.faq-q:hover{background:rgba(31,102,255,.04)}
.faq-q svg{width:18px;height:18px;flex-shrink:0;color:var(--ink-mute);transition:transform .3s var(--ease)}
.faq-item.open .faq-q svg{transform:rotate(180deg)}
.faq-a{display:none;padding:0 22px 18px;font-size:14px;color:var(--ink-soft);line-height:1.7}
.faq-item.open .faq-a{display:block}

/* ================================================================
   LEAD FORM
   ================================================================ */
.lead-form{display:flex;flex-direction:column;gap:13px}
.lead-form__row{display:grid;grid-template-columns:1fr 1fr;gap:11px}
.field{display:flex;flex-direction:column;gap:5px}
.field label{font-size:12.5px;font-weight:500;color:var(--ink-soft)}
.field input,.field select,.field textarea{
  width:100%;padding:11px 15px;
  border:1px solid var(--line-strong);border-radius:11px;
  font:inherit;font-size:15px;color:var(--ink);
  background:#fff;transition:border-color .2s,box-shadow .2s;-webkit-appearance:none;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--brand);box-shadow:0 0 0 4px rgba(31,102,255,.12);
}
.field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737A88' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 13px center;padding-right:38px;
}
.form-note{font-size:11.5px;color:var(--ink-mute);text-align:center;line-height:1.5}
.consent-row{display:flex;align-items:flex-start;gap:10px;cursor:pointer;font-size:12.5px;color:var(--ink-soft);line-height:1.45;user-select:none}
.consent-row input[type=checkbox]{flex:0 0 auto;width:17px;height:17px;margin-top:1px;accent-color:var(--brand);cursor:pointer}
.consent-link{color:var(--brand);text-decoration:underline;text-underline-offset:2px}
.lead-form.is-sent .form-fields{display:none}
.form-success{display:none;text-align:center;padding:28px 12px}
.lead-form.is-sent .form-success{display:flex;flex-direction:column;align-items:center;gap:14px}
.form-success__icon{width:52px;height:52px;border-radius:50%;background:var(--green-light);color:var(--green);display:grid;place-items:center;font-size:26px}
.form-success h3{font-size:18px;font-weight:700}
.form-success p{font-size:14px;color:var(--ink-soft);max-width:36ch;margin:0}

/* ---- Apply modal ---- */
.modal{position:fixed;inset:0;z-index:1000;display:none;align-items:center;justify-content:center;padding:18px;background:rgba(15,23,41,.55);-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px)}
.modal.open{display:flex}
.modal__box{position:relative;width:100%;max-width:460px;max-height:92vh;overflow-y:auto;background:#fff;border-radius:20px;box-shadow:0 24px 60px rgba(15,23,41,.28);padding:26px 24px;animation:modalIn .22s ease}
@keyframes modalIn{from{opacity:0;transform:translateY(14px) scale(.98)}to{opacity:1;transform:none}}
.modal__close{position:absolute;top:13px;right:13px;width:34px;height:34px;border:none;border-radius:50%;background:#F1F3F7;color:var(--ink-soft);font-size:19px;line-height:1;cursor:pointer;display:grid;place-items:center;transition:background .15s}
.modal__close:hover{background:#E4E8EF}
.modal__eyebrow{font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--brand);margin-bottom:8px}
.modal__title{font-size:20px;font-weight:700;line-height:1.25;color:var(--ink);margin-bottom:6px}
.modal__sub{font-size:13.5px;color:var(--ink-soft);line-height:1.5;margin-bottom:18px}
.modal__box .lead-form__row{margin-bottom:12px}
.modal__box .field{margin-bottom:12px}
body.modal-lock{overflow:hidden}

/* ================================================================
   CARD / BOX
   ================================================================ */
.card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:26px;box-shadow:var(--shadow-1)}

/* ================================================================
   COLLEGE GRID
   ================================================================ */
.college-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:11px}
.college-card{
  background:#fff;border:1px solid var(--line);border-radius:16px;
  padding:18px;box-shadow:var(--shadow-1);display:flex;flex-direction:column;gap:7px;
}
.college-card h4{font-size:14.5px;font-weight:600;line-height:1.3}
.college-card__meta{font-size:12px;color:var(--ink-mute)}
.college-card__tags{display:flex;flex-wrap:wrap;gap:5px;margin-top:3px}
.college-card__img{
  margin:-18px -18px 10px;height:130px;overflow:hidden;
  border-radius:14px 14px 0 0;
  background:linear-gradient(135deg,#1F66FF,#5b8cff);
}
.college-card__img img{width:100%;height:100%;object-fit:cover;display:block}

/* ================================================================
   INSTITUTION CARDS (with image)
   ================================================================ */
.inst-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(460px,1fr));gap:16px}
.inst-card{
  background:#fff;border:1px solid var(--line);border-radius:20px;
  box-shadow:var(--shadow-1);display:flex;flex-direction:column;
  padding:22px 24px;
}
/* logo + heading row */
.inst-card__head{display:flex;gap:18px;align-items:flex-start}
.inst-card__logo{
  position:relative;flex:0 0 auto;width:92px;height:92px;border-radius:18px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#1F66FF,#5b8cff);
}
.inst-card--green  .inst-card__logo{background:linear-gradient(135deg,#0FAA66,#3ccf8e)}
.inst-card--purple .inst-card__logo{background:linear-gradient(135deg,#7A3DF5,#a574ff)}
.inst-card--amber  .inst-card__logo{background:linear-gradient(135deg,#E07d0a,#ffb24d)}
.inst-card__logo img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;padding:9px;background:#fff}
.inst-card__logo-text{
  padding:6px;text-align:center;font-size:13px;font-weight:800;color:#fff;
  line-height:1.08;letter-spacing:.01em;text-shadow:0 1px 6px rgba(0,0,0,.18)
}
.inst-card__headmain{flex:1;min-width:0;display:flex;flex-direction:column;gap:9px}
.inst-card__badge{
  display:inline-flex;align-items:center;gap:6px;align-self:flex-start;
  padding:5px 12px;border-radius:999px;font-size:12px;font-weight:700;line-height:1;
}
.inst-card__badge--top{background:#efe9ff;color:#5b27d6}
.inst-card__badge--choice{background:#ffe7d1;color:#bd5e05}
.inst-card__headmain h4{font-size:18px;font-weight:700;line-height:1.25;color:var(--ink)}
.inst-card__loc{font-size:13px;color:var(--ink-mute)}
/* spec strip */
.inst-card__divider{height:1px;background:var(--line);margin:18px 0}
.inst-card__specs{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.inst-card__spec dt{font-size:12px;color:var(--ink-mute);margin-bottom:5px;font-weight:400}
.inst-card__spec dd{margin:0;font-size:14px;color:var(--ink);font-weight:600;line-height:1.3}
.inst-card__cta{margin-top:18px;width:100%;justify-content:center}
.inst-card__namelink{color:inherit;text-decoration:none}
.inst-card__namelink:hover{color:var(--brand)}
.inst-card__actions{display:flex;gap:8px;margin-top:auto}
.inst-card__actions>*{flex:1;justify-content:center;font-size:13px;padding:10px 10px}

/* toggle (Москва / МО) */
.toggle{display:inline-flex;gap:4px;background:#EEF1F6;border-radius:999px;padding:4px;flex-wrap:wrap}
.toggle__btn{padding:9px 18px;border-radius:999px;font-size:14px;font-weight:600;color:var(--ink-soft);text-decoration:none;transition:background .15s,color .15s}
.toggle__btn--active{background:#fff;color:var(--ink);box-shadow:var(--shadow-1)}
.toggle__btn:hover:not(.toggle__btn--active){color:var(--ink)}

/* institution detail header */
.inst-detail-head{display:flex;align-items:center;gap:18px;margin-top:8px}
.inst-detail-head .inst-card__logo{border-radius:18px}

/* ================================================================
   INSTITUTION CARD v2 (photo + stats) — aggregator look
   ================================================================ */
.ic-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(272px,1fr));gap:18px}
.ic{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;box-shadow:var(--shadow-1);transition:transform .16s var(--ease),box-shadow .16s var(--ease)}
.ic:hover{transform:translateY(-3px);box-shadow:var(--shadow-2)}
.ic__media{position:relative;aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(135deg,#1F66FF,#5b8cff)}
.ic__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ic__media::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(16,20,30,0) 45%,rgba(16,20,30,.14) 100%);pointer-events:none}
.ic--green  .ic__media{background:linear-gradient(135deg,#0FAA66,#3ccf8e)}
.ic--purple .ic__media{background:linear-gradient(135deg,#7A3DF5,#a574ff)}
.ic--amber  .ic__media{background:linear-gradient(135deg,#E07d0a,#ffb24d)}
.ic__badge{position:absolute;top:10px;left:10px;z-index:2;background:rgba(255,255,255,.94);color:var(--ink);font-size:11px;font-weight:700;padding:4px 10px;border-radius:8px;box-shadow:0 2px 8px rgba(15,23,41,.12)}
.ic__badge--top{background:var(--brand);color:#fff}
.ic__fav{position:absolute;top:9px;right:9px;z-index:2;width:33px;height:33px;border:none;border-radius:50%;background:rgba(255,255,255,.94);color:#8A91A0;font-size:15px;cursor:pointer;display:grid;place-items:center;box-shadow:0 2px 8px rgba(15,23,41,.12);transition:color .15s,transform .15s}
.ic__fav:hover{transform:scale(1.08)}
.ic__fav.on{color:#E8504F}
.ic__body{display:flex;flex-direction:column;gap:11px;padding:15px 16px 16px;flex:1}
.ic__body h4{font-size:15.5px;font-weight:700;line-height:1.3}
.ic__body h4 a{color:inherit;text-decoration:none}
.ic__body h4 a:hover{color:var(--brand)}
.ic__stats{display:grid;grid-template-columns:1fr 1fr;gap:9px 12px}
.ic__k{display:block;font-size:11px;color:var(--ink-mute);line-height:1.2}
.ic__v{display:block;font-size:13.5px;font-weight:700;color:var(--ink);margin-top:3px;line-height:1.25}
.ic__tags{display:flex;flex-wrap:wrap;gap:5px}
.ic__actions{display:flex;gap:8px;margin-top:auto}
.ic__actions>*{flex:1;justify-content:center;font-size:13px;padding:9px 10px}

/* hub hero stat cards */
.hstats{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:26px}
.hstat{background:#fff;border:1px solid var(--line);border-radius:14px;padding:13px 15px;box-shadow:var(--shadow-1);display:flex;gap:11px;align-items:center}
.hstat__ic{width:40px;height:40px;border-radius:11px;display:grid;place-items:center;font-size:19px;flex:0 0 auto}
.hstat b{font-size:18px;font-weight:800;color:var(--ink);display:block;line-height:1.1}
.hstat span{font-size:12px;color:var(--ink-mute);line-height:1.25}

/* filter chips */
.chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px}
.chip{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:13.5px;font-weight:600;color:var(--ink-soft);cursor:pointer;transition:background .15s,color .15s,border-color .15s,opacity .15s}
.chip:hover{border-color:var(--brand)}
.chip.on{background:var(--brand);color:#fff;border-color:var(--brand)}
.chip__count{display:inline-flex;align-items:center;justify-content:center;min-width:22px;height:22px;padding:0 7px;border-radius:999px;background:var(--brand-light);color:var(--brand);font-size:12px;font-weight:800;line-height:1}
.chip.on .chip__count{background:rgba(255,255,255,.2);color:#fff}
.chip:disabled,.chip.is-disabled{opacity:.46;cursor:not-allowed}
.chip:disabled:hover,.chip.is-disabled:hover{border-color:var(--line)}

@media(max-width:900px){.hstats{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.ic-grid{grid-template-columns:1fr 1fr;gap:12px}.ic__actions{flex-direction:column}.ic__body{padding:13px 13px 14px}}
@media(max-width:380px){.ic-grid{grid-template-columns:1fr}}

/* detail-page hero (institution) */
.dhero{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);background:#fff;border:1px solid var(--line);border-radius:22px;overflow:hidden;box-shadow:var(--shadow-1);margin-top:16px}
.dhero__info{padding:28px 30px;display:flex;flex-direction:column;gap:11px}
.dhero__info h1{line-height:1.16}
.dhero__loc{font-size:14px;color:var(--ink-mute)}
.dhero__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:6px 0;padding:14px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.dhero__stat b{display:block;font-size:17px;font-weight:800;color:var(--ink);line-height:1.1}
.dhero__stat span{font-size:12px;color:var(--ink-mute)}
.dhero__cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}
.dhero__media{position:relative;min-height:320px;padding:clamp(18px,3vw,34px);display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(135deg,#1F66FF,#5b8cff);isolation:isolate}
.dhero--green  .dhero__media{background:linear-gradient(135deg,#0FAA66,#3ccf8e)}
.dhero--purple .dhero__media{background:linear-gradient(135deg,#7A3DF5,#a574ff)}
.dhero--amber  .dhero__media{background:linear-gradient(135deg,#E07d0a,#ffb24d)}
.dhero__media::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.72),rgba(255,255,255,.08) 46%,rgba(17,22,32,.08));pointer-events:none}
.dhero__media img{position:relative;z-index:1;width:min(88%,620px);height:auto;aspect-ratio:16/10;object-fit:cover;border-radius:18px;border:1px solid rgba(255,255,255,.82);box-shadow:0 24px 50px rgba(15,23,41,.20);background:#fff;filter:saturate(1.04) contrast(1.03)}
.dhero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(17,22,32,.02),rgba(17,22,32,.08));pointer-events:none}
@media(max-width:760px){.dhero{grid-template-columns:1fr}.dhero__media{min-height:220px;padding:18px;order:-1}.dhero__media img{width:min(92%,520px);border-radius:14px}.dhero__info{padding:22px 20px}}

/* faculty grid */
.fac-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:14px}
.fac-card{display:flex;flex-direction:column;gap:7px;padding:20px;background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow-1);text-decoration:none;transition:transform .15s,box-shadow .15s}
.fac-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-2)}
.fac-card__icon{font-size:30px;line-height:1}
.fac-card__name{font-size:15px;font-weight:600;color:var(--ink);line-height:1.3}
.fac-card__count{font-size:12.5px;color:var(--ink-mute);margin-top:auto}

/* ================================================================
   TAGS
   ================================================================ */
.tag{display:inline-flex;align-items:center;padding:3px 9px;border-radius:999px;font-size:11px;font-weight:500}
.tag--blue{background:var(--t-blue);color:var(--t-blue-ink)}
.tag--green{background:var(--t-green);color:var(--t-green-ink)}
.tag--purple{background:var(--t-purple);color:var(--t-purple-ink)}
.tag--amber{background:var(--t-amber);color:var(--t-amber-ink)}

/* ================================================================
   CHECK LIST
   ================================================================ */
.check-list{display:flex;flex-direction:column;gap:11px}
.check-list li{display:flex;align-items:flex-start;gap:11px;font-size:14.5px;color:var(--ink-soft);line-height:1.5}
.check-list li::before{
  content:"";flex-shrink:0;width:20px;height:20px;border-radius:50%;
  background:var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8'%3E%3Cpath d='M1 4l3 3 6-6' stroke='%2322A06B' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  margin-top:2px;
}

/* ================================================================
   BREADCRUMBS
   ================================================================ */
.breadcrumbs{display:flex;align-items:center;gap:7px;font-size:13px;color:var(--ink-mute);flex-wrap:wrap;margin-bottom:22px}
.breadcrumbs a{color:var(--ink-mute);transition:color .2s}
.breadcrumbs a:hover{color:var(--brand)}
.breadcrumbs .sep{opacity:.4}

/* ================================================================
   INTERNAL LINKS GRID
   ================================================================ */
.link-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}
.link-grid a{
  display:flex;align-items:center;gap:8px;padding:13px 15px;
  background:#fff;border:1px solid var(--line);border-radius:13px;
  font-size:13px;font-weight:500;color:var(--ink-soft);
  transition:color .2s,border-color .2s,background .2s;text-decoration:none;
}
.link-grid a:hover{color:var(--brand);border-color:rgba(31,102,255,.2);background:var(--brand-light)}
.link-grid a::before{content:"→";color:var(--brand);flex-shrink:0}

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.blog-card{
  background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;
  box-shadow:var(--shadow-1);transition:transform .2s var(--ease),box-shadow .2s;
  text-decoration:none;color:inherit;display:flex;flex-direction:column;
}
.blog-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-2)}
.blog-card__thumb{height:150px;display:flex;align-items:center;justify-content:center;font-size:40px}
.blog-card__body{padding:18px;flex:1;display:flex;flex-direction:column;gap:7px}
.blog-card__tag{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--brand)}
.blog-card__title{font-size:15px;font-weight:600;line-height:1.4;letter-spacing:-.01em}
.blog-card__date{font-size:12px;color:var(--ink-mute)}

/* ================================================================
   TWO-COL LAYOUT
   ================================================================ */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,56px);align-items:start}
.two-col--60-40{grid-template-columns:1.5fr 1fr}
.two-col--40-60{grid-template-columns:1fr 1.5fr}

/* ================================================================
   STICKY CTA (mobile)
   ================================================================ */
.sticky-cta{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:90;
  padding:11px var(--pad-x) max(11px,env(safe-area-inset-bottom));
  background:rgba(250,246,236,.95);backdrop-filter:blur(12px);
  border-top:1px solid var(--line);box-shadow:0 -8px 24px rgba(15,23,41,.08);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer{
  background:var(--ink);color:rgba(255,255,255,.72);
  padding:clamp(40px,6vw,72px) var(--pad-x) clamp(24px,3vw,36px);
  margin-top:clamp(48px,8vw,100px);
}
.footer__inner{
  max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:1.6fr repeat(3,1fr);
  gap:clamp(24px,4vw,52px);
}
.footer__brand{display:flex;flex-direction:column;gap:14px}
.footer__logo{display:flex;align-items:center;gap:11px}
.footer__logo .mark{
  width:34px;height:34px;border:1.5px solid rgba(255,255,255,.28);border-radius:50%;
  display:grid;place-items:center;color:rgba(255,255,255,.7);
}
.footer__logo .mark svg{width:17px;height:17px}
.footer__logo strong{font-size:14.5px;font-weight:600;color:#fff}
.footer__desc{font-size:13px;line-height:1.65;max-width:26ch}
.footer__col h4{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.38);margin-bottom:15px}
.footer__col ul{display:flex;flex-direction:column;gap:9px}
.footer__col a{font-size:13.5px;color:rgba(255,255,255,.62);transition:color .2s}
.footer__col a:hover{color:#fff}
.footer__bottom{
  max-width:var(--maxw);margin:36px auto 0;padding-top:22px;
  border-top:1px solid rgba(255,255,255,.09);
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  font-size:12.5px;color:rgba(255,255,255,.32);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1024px){
  .dirs{grid-template-columns:repeat(2,1fr)}
  .testimonials{grid-template-columns:repeat(2,1fr)}
  .footer__inner{grid-template-columns:1fr 1fr}
  .link-grid{grid-template-columns:repeat(2,1fr)}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .two-col,.two-col--60-40,.two-col--40-60{grid-template-columns:1fr}
}
@media(max-width:768px){
  .hero{grid-template-columns:1fr}
  .hero__visual{display:none}
  .stats{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:1fr}
  .dirs{grid-template-columns:1fr}
  .college-grid{grid-template-columns:1fr}
  .inst-grid{grid-template-columns:1fr}
  .inst-card__specs{grid-template-columns:repeat(2,1fr);gap:14px 12px}
  .blog-grid{grid-template-columns:1fr}
  .lead-form__row{grid-template-columns:1fr 1fr}
  .field--phone input{padding:10px 11px;font-size:14px}
  .testimonials{grid-template-columns:1fr}
  .link-grid{grid-template-columns:1fr}
  .nav__menu,.nav__cta{display:none}
  .nav__burger{display:flex}
  .sticky-cta{display:block}
  body{padding-bottom:70px}
  .footer__inner{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
}
@media(max-width:480px){
  .stats{grid-template-columns:1fr}
  .dirs{grid-template-columns:1fr}
}

/* ================================================================
   Warm catalog redesign based on the latest Downloads references
   ================================================================ */
:root{
  --bg:#FBF8F3;
  --bg-2:#F2F6FA;
  --paper:#FFFFFF;
  --ink:#171717;
  --ink-soft:#4A4A4A;
  --ink-mute:#77736D;
  --line:rgba(23,23,23,.09);
  --line-strong:rgba(23,23,23,.16);
  --brand:#D85F0E;
  --brand-deep:#B84C08;
  --brand-light:#FFF0E5;
  --green:#168455;
  --green-light:#E5F5EC;

  --t-blue:#EAF2FF;   --t-blue-ink:#2563D9;
  --t-green:#E5F5EC;  --t-green-ink:#168455;
  --t-purple:#F1EAFB; --t-purple-ink:#7C3AED;
  --t-amber:#FFF0E5;  --t-amber-ink:#D85F0E;

  --shadow-1:0 1px 2px rgba(23,23,23,.04),0 10px 28px -24px rgba(23,23,23,.24);
  --shadow-2:0 16px 40px -26px rgba(23,23,23,.28),0 2px 8px rgba(23,23,23,.04);
  --shadow-3:0 28px 70px -38px rgba(23,23,23,.36);
}

html,body{letter-spacing:0}
body{
  background:
    linear-gradient(180deg,#fff 0%,#FBF8F3 44%,#F8FAFC 100%);
}
h1,h2,h3,h4,h5,h6,
.display,.display--md,.display--sm,
.btn,.stats__item strong,.hstat b,.ic__v{letter-spacing:0}

.display{font-size:62px;line-height:1.05;font-weight:800}
.display--md{font-size:38px;line-height:1.12;font-weight:800}
.display--sm{font-size:28px;line-height:1.16;font-weight:800}
.display .word{color:var(--brand)}
.display .word::after{display:none}
.lede{font-size:16px;color:var(--ink-soft);line-height:1.65}
.eyebrow--branded{
  color:var(--brand);
  background:transparent;
  border-radius:0;
  padding:0;
  font-weight:800;
}

.nav{
  background:rgba(255,255,255,.9);
  border-bottom:1px solid rgba(23,23,23,.08);
  box-shadow:0 8px 26px -24px rgba(23,23,23,.45);
}
.brand__mark,.footer__logo .mark{
  border-color:var(--brand);
  color:var(--brand);
}
.nav__menu a{font-weight:700;color:#252525}
.nav__menu a:hover,.nav__menu a.active{
  color:var(--brand);
  background:var(--brand-light);
}
.nav__mobile{background:rgba(255,255,255,.98)}

.btn{
  border-radius:8px;
  font-weight:800;
  white-space:normal;
  justify-content:center;
  text-align:center;
}
.btn--lg{border-radius:8px}
.btn--primary{
  background:var(--brand);
  box-shadow:0 10px 24px -16px rgba(216,95,14,.75);
}
.btn--primary:hover{background:var(--brand-deep)}
.btn--white{
  background:#fff;
  border-color:var(--line-strong);
}
.btn--outline{border-color:var(--brand);color:var(--brand)}
.btn--outline:hover{background:var(--brand-light)}

.pill{
  background:#fff;
  border-color:var(--line-strong);
  color:var(--brand);
  font-weight:800;
}
.pill__dot{
  background:var(--brand);
  box-shadow:0 0 0 3px rgba(216,95,14,.16);
}

.hero{
  grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
  gap:clamp(28px,4vw,58px);
  padding-top:50px;
  padding-bottom:34px;
}
.hero__copy{gap:20px}
.hero__actions{gap:12px}
.hero__visual{
  aspect-ratio:1.16/1;
  max-width:620px;
}
.hero__visual::before,
.hero__sparkle,
.float-card{display:none}
.hero__photo{
  inset:0;
  border-radius:10px;
  background:#F2EEE8;
  box-shadow:var(--shadow-3);
}
.hero__photo::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(255,255,255,.72),rgba(255,255,255,0) 42%);
  pointer-events:none;
}
.hero__photo::after{
  content:"Подбор за 15 минут\A 9-11 класс · колледж · вуз";
  white-space:pre-line;
  position:absolute;
  left:20px;
  bottom:20px;
  z-index:2;
  max-width:230px;
  padding:16px 18px;
  border:1px solid rgba(23,23,23,.1);
  border-radius:8px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-2);
  color:var(--ink);
  font-size:14px;
  line-height:1.45;
  font-weight:800;
}
.hero__photo img{filter:saturate(1.02) contrast(1.02)}

.stats{
  width:calc(100% - 40px);
  max-width:var(--maxw);
  margin:0 auto clamp(42px,6vw,76px);
  border-radius:8px;
  padding:18px clamp(16px,3vw,30px);
  background:#fff;
  box-shadow:var(--shadow-2);
}
.stats__item{min-width:0}
.stats__icon,.hstat__ic{
  width:42px;
  height:42px;
  border-radius:8px;
}
.stats__item strong{font-size:22px}
.stats__item span{color:var(--ink-soft)}

.section{padding-top:62px;padding-bottom:62px}
.section-header{margin-bottom:26px}
.section-header--center{gap:12px}

.dirs{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.dir-card,
.step,
.testimonial,
.faq-item,
.card,
.college-card,
.inst-card,
.ic,
.dhero,
.hstat,
.blog-card,
.link-grid a{
  border-radius:8px;
  border-color:var(--line);
  background:#fff;
  box-shadow:var(--shadow-1);
}
.dir-card{padding:18px;gap:10px}
.dir-card:hover,
.step:hover,
.featured-card:hover,
.choice-card:hover,
.ic:hover,
.blog-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-2);
  border-color:rgba(216,95,14,.28);
}
.dir-card__icon,
.step__num,
.testimonial__avatar,
.form-success__icon,
.ic__fav,
.ic__badge,
.fac-card__icon,
.modal__close{
  border-radius:8px;
}
.dir-card__arrow,
.blog-card__tag,
.breadcrumbs a:hover,
.inst-card__namelink:hover,
.ic__body h4 a:hover,
.link-grid a:hover,
.consent-link{color:var(--brand)}
.dir-card:hover{border-color:rgba(216,95,14,.28)}
.dir-card h3{font-size:16px;font-weight:800}

.home-showcase{padding-top:0}
.home-showcase__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}
.home-showcase__head>div{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:720px;
}
.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand);
  font-weight:800;
  font-size:14px;
  flex:0 0 auto;
}
.link-arrow::after{content:"→"}
.featured-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.featured-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow-1);
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),border-color .18s var(--ease);
}
.featured-card__media{
  position:relative;
  display:grid;
  place-items:center;
  aspect-ratio:16/10;
  background:linear-gradient(135deg,#F3EEE6,#E8F0FA);
  overflow:hidden;
}
.featured-card__media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.featured-card__body{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:15px;
  flex:1;
}
.featured-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--brand);
  font-size:12px;
  font-weight:800;
}
.featured-card h3{
  font-size:16px;
  line-height:1.28;
  font-weight:800;
}
.featured-card p{
  margin:0;
  color:var(--ink-soft);
  font-size:13px;
  line-height:1.55;
  flex:1;
}
.mini-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin:2px 0 0;
  padding-top:10px;
  border-top:1px solid var(--line);
}
.mini-stats div{min-width:0}
.mini-stats dt{
  font-size:11px;
  color:var(--ink-mute);
  margin-bottom:3px;
}
.mini-stats dd{
  margin:0;
  color:var(--ink);
  font-size:16px;
  line-height:1.1;
  font-weight:800;
}
.choice-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.choice-card{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:6px 13px;
  align-items:start;
  padding:16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:var(--shadow-1);
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),border-color .18s var(--ease);
}
.choice-card__icon{
  grid-row:1 / span 2;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:8px;
}
.choice-card__icon svg{width:21px;height:21px}
.choice-card strong{
  font-size:14px;
  line-height:1.28;
}
.choice-card span:last-child{
  color:var(--ink-soft);
  font-size:12.5px;
  line-height:1.48;
}

.step{padding:22px}
.step__num{
  background:var(--brand-light);
  color:var(--brand);
}
.cta-band{
  border-radius:8px;
  background:
    linear-gradient(135deg,rgba(216,95,14,.92),rgba(62,45,34,.96)),
    #2E241F;
  box-shadow:var(--shadow-2);
}
.testimonial__stars{color:var(--brand)}
.faq-q:hover{background:var(--brand-light)}

.field input,.field select,.field textarea{
  border-radius:8px;
  background:#fff;
}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(216,95,14,.13);
}
.consent-row input[type=checkbox]{accent-color:var(--brand)}
.check-list li::before{
  background:var(--brand-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8'%3E%3Cpath d='M1 4l3 3 6-6' stroke='%23D85F0E' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.ic__badge--top,
.chip.on{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}
.chip:hover{border-color:var(--brand)}
.chip:disabled:hover,
.chip.is-disabled:hover{border-color:var(--line)}
.ic__media,
.dhero__media,
.college-card__img{
  background:linear-gradient(135deg,#F3EEE6,#E8F0FA);
}
.inst-card--green .inst-card__logo,
.ic--green .ic__media,
.dhero--green .dhero__media{background:linear-gradient(135deg,#E5F5EC,#D8EDE4)}
.inst-card--purple .inst-card__logo,
.ic--purple .ic__media,
.dhero--purple .dhero__media{background:linear-gradient(135deg,#F1EAFB,#E8EEF9)}
.inst-card--amber .inst-card__logo,
.ic--amber .ic__media,
.dhero--amber .dhero__media{background:linear-gradient(135deg,#FFF0E5,#F3E3D4)}
.inst-card__badge--top{background:#F1EAFB;color:#7C3AED}
.inst-card__badge--choice{background:var(--brand-light);color:var(--brand-deep)}
.toggle{background:#F4F1EC;border-radius:8px}
.toggle__btn{border-radius:7px}

.sticky-cta{
  background:rgba(255,255,255,.96);
  border-top-color:var(--line);
}
.footer{
  background:#fff;
  color:var(--ink-soft);
  border-top:1px solid var(--line);
  margin-top:44px;
}
.footer__logo strong{color:var(--ink)}
.footer__desc{color:var(--ink-soft)}
.footer__col h4{color:var(--ink);letter-spacing:0}
.footer__col a,
.footer__brand a[style]{
  color:var(--ink-soft)!important;
}
.footer__col a:hover,
.footer__brand a[style]:hover{color:var(--brand)!important}
.footer__bottom{
  border-top-color:var(--line);
  color:var(--ink-mute);
}

@media(max-width:1180px){
  .featured-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .choice-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:1024px){
  .display{font-size:54px}
  .display--md{font-size:34px}
  .hero{grid-template-columns:1fr;max-width:900px}
  .hero__visual{justify-self:stretch;max-width:none}
}
@media(max-width:768px){
  .display{font-size:42px}
  .display--md{font-size:30px}
  .display--sm{font-size:24px}
  .section{padding-top:46px;padding-bottom:46px}
  .hero{
    padding-top:30px;
    padding-bottom:28px;
    gap:22px;
  }
  .hero__visual{
    display:block;
    order:-1;
    aspect-ratio:16/10;
  }
  .hero__photo::after{
    left:12px;
    bottom:12px;
    max-width:210px;
    padding:12px 14px;
    font-size:12.5px;
  }
  .stats{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .lead-form__row{grid-template-columns:1fr}
  .home-showcase__head{display:block}
  .home-showcase__head .link-arrow{margin-top:14px}
}
@media(max-width:560px){
  .display{font-size:36px}
  .stats,
  .featured-grid,
  .choice-grid{grid-template-columns:1fr}
  .stats{width:calc(100% - 28px)}
  .hero__actions .btn{width:100%}
  .choice-card{grid-template-columns:40px minmax(0,1fr);padding:14px}
  .choice-card__icon{width:40px;height:40px}
}

/* Homepage hero based on the latest Downloads reference */
body{
  background:linear-gradient(118deg,#FFFFFF 0%,#F7F9FF 36%,#FFF7F0 76%,#FFFFFF 100%);
}

.nav{
  min-height:74px;
  padding:14px clamp(24px,4vw,76px);
  background:rgba(255,255,255,.94);
}
.brand__mark{
  width:44px;
  height:44px;
  border-width:2px;
}
.brand__text strong{font-size:16px;font-weight:800}
.brand__text em{font-size:12px}
.nav__menu{
  gap:14px;
  margin-left:28px;
}
.nav__menu a{
  font-size:15px;
  font-weight:800;
  padding:8px 2px;
}
.nav__menu a:hover,
.nav__menu a.active{background:transparent}
.nav__cta .btn{
  padding:14px 22px;
  border-radius:10px;
}
.btn--primary{
  background:linear-gradient(180deg,#F17816 0%,#D85F0E 100%);
  box-shadow:0 18px 34px -18px rgba(216,95,14,.82);
}
.btn--primary:hover{
  background:linear-gradient(180deg,#E66D12 0%,#B84C08 100%);
  box-shadow:0 22px 38px -19px rgba(216,95,14,.9);
}

.hero{
  position:relative;
  isolation:isolate;
  grid-template-columns:minmax(420px,.92fr) minmax(560px,1.08fr);
  max-width:1500px;
  gap:clamp(42px,5vw,92px);
  padding:70px clamp(28px,5vw,92px) 34px;
  align-items:start;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0 18px -108px;
  z-index:-2;
  border-radius:36px;
  background:
    linear-gradient(112deg,rgba(238,243,255,.9),rgba(255,255,255,.25) 38%,rgba(255,242,232,.85) 100%);
  opacity:.86;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  left:clamp(12px,3vw,46px);
  top:28px;
  width:min(520px,36vw);
  height:280px;
  z-index:-1;
  border:1px solid rgba(113,126,255,.14);
  border-right-color:transparent;
  border-radius:42px;
  transform:rotate(-7deg);
  animation:heroFrameDrift 9s ease-in-out infinite;
  pointer-events:none;
}
.hero__copy{
  justify-content:center;
  gap:22px;
}
.hero .pill{
  padding:10px 18px 10px 12px;
  border-radius:999px;
  box-shadow:0 10px 28px -22px rgba(23,23,23,.36);
  animation:heroFadeUp .72s var(--ease) both;
}
.hero .display{
  font-size:76px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:0;
  animation:heroFadeUp .72s var(--ease) .08s both;
}
.hero .lede{
  font-size:20px;
  line-height:1.55;
  max-width:640px;
  animation:heroFadeUp .72s var(--ease) .16s both;
}
.hero .check-list{
  gap:14px;
  max-width:620px!important;
}
.hero .check-list li{
  font-size:17px;
  line-height:1.35;
  animation:heroFadeUp .72s var(--ease) both;
}
.hero .check-list li:nth-child(1){animation-delay:.24s}
.hero .check-list li:nth-child(2){animation-delay:.30s}
.hero .check-list li:nth-child(3){animation-delay:.36s}
.hero .check-list li:nth-child(4){animation-delay:.42s}
.hero .check-list li::before{
  width:22px;
  height:22px;
  background-color:#FFF0E5;
}
.hero__actions{
  gap:14px;
  animation:heroFadeUp .72s var(--ease) .50s both;
}
.hero__actions .btn{
  min-height:58px;
  min-width:220px;
  font-size:18px;
}

.hero__visual--reference{
  position:relative;
  aspect-ratio:1.52/1;
  max-width:830px;
  justify-self:end;
  animation:heroPhotoIn .9s var(--ease) .18s both;
}
.hero__visual--reference::before{
  display:block;
  content:"";
  position:absolute;
  inset:72px 16px 10px 72px;
  z-index:0;
  border:1.5px solid rgba(216,95,14,.2);
  border-radius:28px;
  background:rgba(255,119,32,.09);
  transform:rotate(6deg);
  animation:heroPanelFloat 8s ease-in-out infinite;
}
.hero__visual--reference::after{
  content:"";
  position:absolute;
  inset:28px 112px 76px -10px;
  z-index:0;
  border:1.5px solid rgba(113,126,255,.16);
  border-radius:34px;
  transform:rotate(-5deg);
  pointer-events:none;
}
.hero__photo{
  inset:48px 104px 48px 34px;
  z-index:2;
  border-radius:18px;
  background:#F4EFE8;
  box-shadow:0 34px 80px -38px rgba(61,49,38,.42);
  animation:heroPhotoBreath 7s ease-in-out infinite;
}
.hero__photo::before{
  background:linear-gradient(90deg,rgba(255,255,255,.58),rgba(255,255,255,0) 38%);
}
.hero__photo::after{display:none}
.hero__photo img{
  filter:saturate(1.04) contrast(1.02) brightness(1.02);
}

.hero__deco{
  position:absolute;
  z-index:3;
  display:grid;
  place-items:center;
  pointer-events:none;
}
.hero__deco--cap{
  top:-4px;
  left:38%;
  width:92px;
  filter:drop-shadow(0 16px 18px rgba(66,74,180,.24));
  animation:heroFloat 5.8s ease-in-out infinite;
}
.hero__deco--percent{
  left:-84px;
  top:42%;
  width:54px;
  height:54px;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(180deg,#FF9B8E,#FF6D5D);
  font-size:25px;
  font-weight:900;
  box-shadow:0 18px 28px -18px rgba(255,109,93,.75);
  transform:rotate(-14deg);
  animation:heroFloat 6.4s ease-in-out -.8s infinite;
}
.hero__deco--note{
  left:-94px;
  bottom:12px;
  width:64px;
  filter:drop-shadow(0 14px 16px rgba(86,112,210,.2));
  transform:rotate(-12deg);
  animation:heroFloat 7s ease-in-out -1.4s infinite;
}
.hero__sparkle{
  display:block;
  z-index:3;
  color:#FF8D25;
  animation:heroTwinkle 4.8s ease-in-out infinite;
}
.hero__sparkle::before{
  content:"✦";
  font-size:30px;
  text-shadow:0 14px 24px rgba(255,141,37,.28);
}
.hero__sparkle--a{
  top:76%;
  left:8%;
  color:#FF8D25;
}
.hero__sparkle--b{
  right:4%;
  bottom:18%;
  color:#FFB14E;
  animation-delay:-1.6s;
}
.hero__visual--reference .float-card{
  display:flex;
  border-radius:14px;
  border-color:rgba(23,23,23,.09);
  background:rgba(255,255,255,.94);
  box-shadow:0 22px 48px -28px rgba(23,23,23,.34);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  animation:heroCardFloat 6.8s ease-in-out infinite;
}
.hero__visual--reference .float-card--tl,
.hero__visual--reference .float-card--ml{display:none}
.hero__visual--reference .float-card--tr{
  top:39%;
  right:0;
  max-width:188px;
  min-height:154px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
  padding:22px 18px;
  animation-delay:-2.2s;
}
.hero__visual--reference .float-card--br{
  left:70px;
  right:auto;
  bottom:26px;
  max-width:318px;
  min-height:86px;
  align-items:center;
  padding:16px 20px;
  animation-delay:-.8s;
}
.hero__visual--reference .float-card__icon{
  width:48px;
  height:48px;
  border-radius:50%;
}
.hero__visual--reference .float-card__icon svg{
  width:23px;
  height:23px;
}
.hero__visual--reference .float-card h4{
  font-size:17px;
  font-weight:900;
  line-height:1.18;
}
.hero__visual--reference .float-card p{
  margin-top:4px;
  font-size:14px;
  line-height:1.32;
  color:#292929;
  font-weight:700;
}

.stats{
  width:calc(100% - 56px);
  max-width:1500px;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  position:relative;
  isolation:isolate;
  overflow:visible;
  margin:2px auto clamp(44px,6vw,86px);
  padding:32px 40px;
  min-height:154px;
  border:1px solid transparent;
  border-radius:30px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,.9)) padding-box,
    linear-gradient(96deg,rgba(52,102,220,.18),rgba(36,178,126,.14),rgba(148,77,220,.16),rgba(244,102,16,.2)) border-box;
  box-shadow:0 34px 70px -44px rgba(23,23,23,.42),0 1px 0 rgba(255,255,255,.9) inset;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  animation:heroFadeUp .78s var(--ease) .62s both;
}
.stats::before{
  content:"";
  position:absolute;
  inset:1px;
  z-index:-1;
  border-radius:inherit;
  background:
    radial-gradient(330px 130px at 6% 20%,rgba(62,107,223,.14),transparent 70%),
    radial-gradient(330px 120px at 34% 82%,rgba(22,149,92,.12),transparent 72%),
    radial-gradient(340px 120px at 64% 20%,rgba(148,62,214,.12),transparent 72%),
    radial-gradient(340px 130px at 91% 78%,rgba(244,102,16,.15),transparent 72%);
  pointer-events:none;
}
.stats__paths{
  position:absolute;
  inset:-48px 0 -48px;
  z-index:0;
  width:100%;
  height:calc(100% + 96px);
  overflow:visible;
  pointer-events:none;
}
.stats__track{
  fill:none;
  stroke-width:1.7;
  stroke-linecap:round;
  opacity:.38;
}
.stats__track--blue{stroke:#4A7FEA}
.stats__track--green{stroke:#19A86E}
.stats__track--purple{stroke:#9746DD}
.stats__track--amber{stroke:#FF7118}
.stats__particle{
  opacity:.9;
  transform-box:fill-box;
  transform-origin:center;
}
.stats__particle--blue{fill:#3D73D9}
.stats__particle--green{fill:#16A66B}
.stats__particle--purple{fill:#923DDA}
.stats__particle--amber{fill:#F66A16}
.stats__item{
  position:relative;
  z-index:1;
  gap:24px;
  min-height:88px;
  padding:0 34px;
  border-left:1px solid rgba(23,23,23,.08);
}
.stats__item:first-of-type{border-left:0}
.stats__icon{
  width:78px;
  height:78px;
  border-radius:19px;
  display:grid;
  place-items:center;
  box-shadow:0 1px 0 rgba(255,255,255,.85) inset;
}
.stats__icon svg{
  width:34px;
  height:34px;
}
.stats__item strong{
  font-size:40px;
  font-weight:900;
  letter-spacing:0;
  line-height:1;
}
.stats__item:nth-of-type(1) strong{color:#3542D6}
.stats__item:nth-of-type(2) strong{color:#118D53}
.stats__item:nth-of-type(3) strong{color:#8F3DCE}
.stats__item:nth-of-type(4) strong{color:#F16613}
.stats__item div > span{
  display:block;
  margin-top:12px;
  font-size:19px;
  line-height:1.34;
  color:#3E3E3E;
}

@keyframes heroFadeUp{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes heroPhotoIn{
  from{opacity:0;transform:translateY(24px) scale(.985)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes heroPhotoBreath{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
}
@keyframes heroPanelFloat{
  0%,100%{transform:rotate(6deg) translateY(0)}
  50%{transform:rotate(5deg) translateY(-8px)}
}
@keyframes heroFrameDrift{
  0%,100%{transform:rotate(-7deg) translateY(0)}
  50%{transform:rotate(-6deg) translateY(8px)}
}
@keyframes heroFloat{
  0%,100%{translate:0 0}
  50%{translate:0 -12px}
}
@keyframes heroTwinkle{
  0%,100%{opacity:.72;transform:scale(.9) rotate(0)}
  50%{opacity:1;transform:scale(1.08) rotate(10deg)}
}
@keyframes heroCardFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-9px)}
}

@media(max-width:1500px){
  .hero{
    padding-top:54px;
    padding-bottom:26px;
  }
  .hero__copy{gap:18px}
  .hero .display{font-size:68px}
  .hero .lede{font-size:18px;line-height:1.5}
  .hero .check-list{gap:12px}
  .hero .check-list li{font-size:16px}
  .hero__actions .btn{min-height:54px;font-size:17px}
  .hero__visual--reference{margin-top:4px}
}

@media(max-width:1180px){
  .nav__menu{gap:10px;margin-left:18px}
  .nav__menu a{font-size:14px}
  .hero{
    grid-template-columns:minmax(360px,.9fr) minmax(480px,1.1fr);
    padding-left:34px;
    padding-right:34px;
  }
  .hero .display{font-size:64px}
  .hero .lede{font-size:18px}
  .hero__deco--percent{left:-42px}
  .hero__deco--note{left:-40px}
}
@media(max-width:1024px){
  .nav__menu,.nav__cta{display:none}
  .nav__burger{display:flex}
  .hero{
    grid-template-columns:1fr;
    max-width:920px;
    padding-top:42px;
  }
  .hero .display{font-size:58px}
  .hero__visual--reference{
    justify-self:stretch;
    max-width:none;
  }
  .stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stats__item:nth-of-type(odd){border-left:0}
  .stats__item:nth-of-type(n+3){
    border-top:1px solid rgba(23,23,23,.09);
    padding-top:20px;
    margin-top:20px;
  }
}
@media(max-width:768px){
  .nav{min-height:68px;padding:12px 18px}
  .brand__mark{width:40px;height:40px}
  .brand__text strong{font-size:15px}
  .hero{
    padding:32px 18px 24px;
    gap:28px;
  }
  .hero::before{
    inset:0 8px -70px;
    border-radius:24px;
  }
  .hero::after{display:none}
  .hero .display{font-size:46px;line-height:1.06}
  .hero .lede{font-size:17px}
  .hero .check-list li{font-size:16px}
  .hero__actions .btn{
    width:100%;
    min-width:0;
    min-height:54px;
    font-size:16px;
  }
  .hero__visual--reference{
    order:0;
    aspect-ratio:16/11;
  }
  .hero__visual--reference::before,
  .hero__visual--reference::after,
  .hero__deco,
  .hero__sparkle,
  .hero__visual--reference .float-card--tr{display:none}
  .hero__photo{
    inset:0;
    border-radius:14px;
  }
  .hero__visual--reference .float-card--br{
    left:12px;
    right:12px;
    bottom:12px;
    max-width:none;
    min-height:74px;
    padding:12px 14px;
  }
  .hero__visual--reference .float-card__icon{
    width:42px;
    height:42px;
  }
  .hero__visual--reference .float-card h4{font-size:15px}
  .hero__visual--reference .float-card p{font-size:12.5px}
  .stats{
    width:calc(100% - 28px);
    padding:18px;
    border-radius:18px;
  }
  .stats__paths{display:none}
  .stats__item{
    gap:13px;
    padding:0 12px;
    min-height:68px;
  }
  .stats__icon{
    width:48px;
    height:48px;
  }
  .stats__icon svg{
    width:22px;
    height:22px;
  }
  .stats__item strong{font-size:24px}
  .stats__item span{font-size:13.5px}
  .two-col--40-60{grid-template-columns:1fr!important}
  .two-col--40-60 .card,
  .lead-form,
  .form-fields,
  .field{min-width:0}
}
@media(max-width:560px){
  .hero .display{font-size:38px}
  .hero__visual--reference{aspect-ratio:4/3}
  .stats{grid-template-columns:1fr}
  .stats__item,
  .stats__item:nth-of-type(odd){
    border-left:0;
    border-top:1px solid rgba(23,23,23,.09);
    padding:16px 0 0;
    margin-top:16px;
  }
  .stats__item:first-of-type{
    border-top:0;
    padding-top:0;
    margin-top:0;
  }
}

/* ================================================================
   DIRECTIONS REFERENCE REDESIGN
   ================================================================ */
.dirs-section{
  position:relative;
  isolation:isolate;
  max-width:1540px;
  padding-top:78px;
  padding-bottom:52px;
}
.dirs-section::before{
  content:"";
  position:absolute;
  inset:4px 20px 10px;
  z-index:-3;
  border-radius:38px;
  background:
    radial-gradient(620px 300px at 15% 4%,rgba(66,116,236,.13),transparent 70%),
    radial-gradient(660px 340px at 85% 2%,rgba(133,99,245,.14),transparent 72%),
    linear-gradient(180deg,#F8FAFF 0%,#F4F8FF 68%,#fff 100%);
}
.dirs-section::after{
  content:"";
  position:absolute;
  left:52px;
  right:52px;
  top:126px;
  height:96px;
  z-index:-2;
  opacity:.34;
  background:
    linear-gradient(90deg,transparent 0 2%,rgba(109,126,160,.12) 2% 4%,transparent 4% 7%,rgba(109,126,160,.11) 7% 9%,transparent 9% 70%,rgba(116,99,230,.14) 70% 72%,transparent 72% 75%,rgba(116,99,230,.12) 75% 77%,transparent 77%),
    linear-gradient(180deg,transparent 0 55%,rgba(224,232,250,.72) 55% 100%);
  clip-path:polygon(0 100%,0 68%,3% 68%,3% 48%,5% 48%,5% 100%,8% 100%,8% 36%,11% 36%,11% 100%,65% 100%,65% 78%,67% 78%,67% 57%,69% 57%,69% 100%,72% 100%,72% 30%,74% 30%,74% 100%,77% 100%,77% 58%,79% 58%,79% 100%,100% 100%);
  pointer-events:none;
}
.dirs-section .section-header--center{
  position:relative;
  min-height:164px;
  margin-bottom:32px;
  align-items:center;
  justify-content:center;
}
.dirs-section .display--md{
  font-size:clamp(42px,4.7vw,64px);
  line-height:1;
  font-weight:900;
  letter-spacing:0;
  color:#060A16;
}
.dirs-section .lede{
  max-width:650px;
  text-align:center;
  font-size:20px;
  line-height:1.65;
  color:#526078;
}
.dirs-eyebrow{
  gap:14px;
  color:#F16613;
  font-size:14px;
  line-height:1;
  letter-spacing:.15em;
  text-shadow:0 9px 24px rgba(241,102,19,.18);
}
.dirs-eyebrow b{
  font-size:20px;
  font-weight:700;
  line-height:.8;
  letter-spacing:0;
}
.dirs-scene{
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  overflow:hidden;
}
.dirs-scene__pin,
.dirs-scene__cap,
.dirs-scene__chart,
.dirs-scene__dot{
  position:absolute;
  display:block;
}
.dirs-scene__pin{
  left:8.5%;
  top:30px;
  width:96px;
  height:122px;
  border-radius:56% 56% 56% 0;
  background:linear-gradient(145deg,#FFBB65 0%,#FF7A3D 44%,#FF5C6C 100%);
  transform:rotate(-45deg);
  box-shadow:0 24px 42px rgba(255,102,72,.22),inset 10px 12px 18px rgba(255,255,255,.3);
  animation:dirsFloat 8s ease-in-out infinite;
}
.dirs-scene__pin::before{
  content:"";
  position:absolute;
  inset:25px;
  border-radius:50%;
  background:#fff;
  box-shadow:inset 0 0 0 3px rgba(255,111,69,.18),0 4px 12px rgba(119,59,30,.08);
}
.dirs-scene__pin::after{
  content:"";
  position:absolute;
  left:-44px;
  top:76px;
  width:178px;
  height:48px;
  border:1px solid rgba(111,95,219,.18);
  border-radius:50%;
  background:radial-gradient(closest-side,rgba(255,255,255,.8),rgba(109,95,219,.08),transparent);
  transform:rotate(45deg);
}
.dirs-scene__cap{
  right:8.2%;
  top:46px;
  width:170px;
  height:76px;
  border-radius:18px;
  background:
    linear-gradient(155deg,rgba(255,255,255,.7),rgba(255,255,255,0) 28%),
    linear-gradient(145deg,#BFC8FF 0%,#7E8CF4 100%);
  box-shadow:0 24px 44px rgba(90,94,210,.22),inset 0 1px 0 rgba(255,255,255,.55);
  transform:perspective(320px) rotateX(55deg) rotateZ(-9deg);
  animation:dirsFloat 9s ease-in-out 1.2s infinite;
}
.dirs-scene__cap::before{
  content:"";
  position:absolute;
  left:36px;
  right:36px;
  bottom:-42px;
  height:52px;
  border-radius:12px;
  background:
    linear-gradient(90deg,rgba(92,103,221,.25),transparent 16% 84%,rgba(92,103,221,.25)),
    linear-gradient(180deg,#EEF2FF,#B7C2FF);
  box-shadow:0 16px 26px rgba(80,88,200,.18);
}
.dirs-scene__cap::after{
  content:"";
  position:absolute;
  right:22px;
  bottom:-54px;
  width:3px;
  height:72px;
  background:#6C72DD;
  border-radius:999px;
  box-shadow:0 64px 0 6px #767BEB;
}
.dirs-scene__chart{
  right:5%;
  top:132px;
  width:108px;
  height:78px;
  border-radius:10px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.74),rgba(255,255,255,.24)),
    radial-gradient(circle at 74% 24%,#fff 0 4px,transparent 5px),
    linear-gradient(135deg,transparent 52%,rgba(255,255,255,.85) 53% 55%,transparent 56%),
    linear-gradient(90deg,transparent 18%,rgba(255,255,255,.75) 18% 28%,transparent 28% 40%,rgba(255,255,255,.65) 40% 50%,transparent 50% 64%,rgba(255,255,255,.85) 64% 76%,transparent 76%);
  box-shadow:0 18px 40px rgba(103,92,214,.18),inset 0 1px 0 rgba(255,255,255,.55);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  animation:dirsFloat 7.5s ease-in-out .4s infinite;
}
.dirs-scene__dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#FFAA58;
  box-shadow:0 0 0 5px rgba(255,170,88,.13),0 8px 20px rgba(241,102,19,.2);
  animation:dirsTwinkle 4.8s ease-in-out infinite;
}
.dirs-scene__dot--a{left:6%;top:66px}
.dirs-scene__dot--b{left:22%;top:96px;animation-delay:1s}
.dirs-scene__dot--c{right:10%;top:64px;animation-delay:2s}
.dirs-section .dirs{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.dirs-section .dir-card{
  position:relative;
  min-height:252px;
  overflow:hidden;
  gap:14px;
  padding:28px;
  border:1px solid rgba(21,30,54,.08);
  border-radius:14px;
  background:
    radial-gradient(360px 180px at 84% 92%,var(--dir-glow,rgba(31,102,255,.14)),transparent 74%),
    linear-gradient(145deg,rgba(255,255,255,.98),rgba(255,255,255,.9));
  box-shadow:0 24px 54px -38px rgba(14,28,61,.46),0 1px 0 rgba(255,255,255,.88) inset;
  transform:translateY(0);
}
.dirs-section .dir-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(125deg,rgba(255,255,255,.62),transparent 34%,rgba(255,255,255,.22) 78%);
  pointer-events:none;
}
.dirs-section .dir-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 74px -38px rgba(16,28,60,.58),0 1px 0 rgba(255,255,255,.9) inset;
  border-color:var(--dir-border,rgba(31,102,255,.22));
}
.dirs-section .dir-card:hover .dir-card__art{
  transform:translateY(-4px) scale(1.035);
}
.dirs-section .dir-card__icon,
.dirs-section .dir-card h3,
.dirs-section .dir-card p,
.dirs-section .dir-card__arrow{
  position:relative;
  z-index:2;
}
.dirs-section .dir-card__icon{
  width:58px;
  height:58px;
  border-radius:14px;
  box-shadow:0 12px 26px rgba(55,84,156,.08),inset 0 1px 0 rgba(255,255,255,.68);
}
.dirs-section .dir-card__icon svg{
  width:28px;
  height:28px;
}
.dirs-section .dir-card h3{
  max-width:310px;
  font-size:21px;
  line-height:1.18;
  font-weight:900;
  letter-spacing:0;
  color:#07101F;
}
.dirs-section .dir-card p{
  max-width:360px;
  font-size:15.5px;
  line-height:1.58;
  color:#4D586B;
}
.dirs-section .dir-card__arrow{
  margin-top:auto;
  width:max-content;
  max-width:100%;
  font-size:15.5px;
  line-height:1.2;
  font-weight:900;
  color:var(--dir-accent,var(--brand));
}
.dir-card--it{--dir-accent:#1F66FF;--dir-glow:rgba(31,102,255,.18);--dir-border:rgba(31,102,255,.24)}
.dir-card--med{--dir-accent:#15965C;--dir-glow:rgba(22,164,104,.18);--dir-border:rgba(22,164,104,.24)}
.dir-card--college{--dir-accent:#8B42E8;--dir-glow:rgba(139,66,232,.2);--dir-border:rgba(139,66,232,.25)}
.dir-card--university{--dir-accent:#F16613;--dir-glow:rgba(241,102,19,.18);--dir-border:rgba(241,102,19,.25)}
.dir-card--after9{--dir-accent:#16A66B;--dir-glow:rgba(22,166,107,.18);--dir-border:rgba(22,166,107,.24)}
.dir-card--rules{--dir-accent:#1F66FF;--dir-glow:rgba(88,105,231,.2);--dir-border:rgba(31,102,255,.24)}
.dir-card__art{
  position:absolute;
  right:18px;
  bottom:0;
  z-index:1;
  width:190px;
  height:146px;
  opacity:.95;
  pointer-events:none;
  filter:drop-shadow(0 24px 24px rgba(44,58,102,.18));
  transform:translateY(0) scale(1);
  transition:transform .32s var(--ease),opacity .32s var(--ease);
}
.dir-card__art::before,
.dir-card__art::after{
  content:"";
  position:absolute;
  display:block;
}
.dir-card__art--laptop::before{
  left:42px;
  top:20px;
  width:118px;
  height:78px;
  border:6px solid #7786F8;
  border-radius:10px;
  background:
    linear-gradient(90deg,#F6A23C 0 20px,transparent 20px 28px,#8DB0FF 28px 72px,transparent 72px),
    linear-gradient(#24304C,#24304C) 18px 19px/78px 4px no-repeat,
    linear-gradient(#FFCE7D,#FFCE7D) 18px 36px/52px 4px no-repeat,
    linear-gradient(#A5B9FF,#A5B9FF) 18px 52px/88px 4px no-repeat,
    #18213B;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.18),0 16px 22px rgba(58,73,164,.2);
  transform:perspective(260px) rotateY(-18deg) rotateZ(4deg);
}
.dir-card__art--laptop::after{
  left:26px;
  bottom:20px;
  width:144px;
  height:26px;
  border-radius:7px 7px 16px 16px;
  background:linear-gradient(180deg,#EAF0FF,#9DAEFF);
  transform:skewX(-22deg);
}
.dir-card__art--medkit::before{
  right:24px;
  bottom:22px;
  width:112px;
  height:94px;
  border-radius:18px;
  background:
    linear-gradient(90deg,transparent 43%,#fff 43% 57%,transparent 57%),
    linear-gradient(0deg,transparent 38%,#fff 38% 54%,transparent 54%),
    linear-gradient(145deg,#A9E4C8,#49B98C);
  box-shadow:inset 9px 10px 18px rgba(255,255,255,.34),inset -9px -12px 20px rgba(17,126,83,.2),0 16px 24px rgba(31,141,91,.18);
}
.dir-card__art--medkit::after{
  right:55px;
  bottom:106px;
  width:54px;
  height:26px;
  border:8px solid #61C999;
  border-bottom:0;
  border-radius:18px 18px 0 0;
}
.dir-card__art--city::before{
  right:0;
  bottom:0;
  width:170px;
  height:142px;
  background:
    linear-gradient(180deg,#8560EE,#C2B5FF) 118px 2px/26px 140px no-repeat,
    linear-gradient(180deg,#9D7BFF,#D5CCFF) 86px 40px/28px 102px no-repeat,
    linear-gradient(180deg,#B7A5FF,#E3DDFF) 58px 70px/24px 72px no-repeat,
    linear-gradient(180deg,#A98FFF,#DAD2FF) 26px 88px/26px 54px no-repeat,
    linear-gradient(180deg,transparent 0 88%,rgba(116,91,221,.18) 88% 100%);
  clip-path:polygon(0 100%,0 74%,15% 74%,15% 60%,31% 60%,31% 45%,48% 45%,48% 23%,62% 23%,62% 0,76% 23%,76% 100%);
}
.dir-card__art--city::after{
  right:38px;
  bottom:24px;
  width:92px;
  height:92px;
  background:repeating-linear-gradient(90deg,rgba(255,255,255,.58) 0 4px,transparent 4px 14px);
  opacity:.5;
  clip-path:polygon(24% 100%,24% 20%,50% 0,76% 20%,76% 100%);
}
.dir-card__art--university::before{
  right:-6px;
  bottom:0;
  width:184px;
  height:124px;
  border-radius:0 0 14px 14px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,0) 35%),
    linear-gradient(180deg,#BC7845,#F2C79C 82%,rgba(242,199,156,.12));
  clip-path:polygon(0 100%,0 76%,12% 76%,12% 56%,24% 56%,24% 100%,32% 100%,32% 32%,39% 32%,43% 6%,47% 32%,54% 32%,54% 100%,63% 100%,63% 64%,76% 64%,76% 100%);
}
.dir-card__art--university::after{
  right:18px;
  bottom:0;
  width:170px;
  height:54px;
  border-radius:50% 50% 0 0;
  background:radial-gradient(ellipse at center,#86A057 0 16%,#C5DBA8 17% 34%,rgba(197,219,168,.18) 35% 100%);
  opacity:.75;
}
.dir-card__art--backpack::before{
  right:34px;
  bottom:10px;
  width:110px;
  height:126px;
  border-radius:36px 36px 24px 24px;
  background:
    linear-gradient(#81D3B4,#81D3B4) 20px 82px/70px 3px no-repeat,
    linear-gradient(145deg,#C3F0DE,#6AC89F);
  box-shadow:inset 10px 12px 20px rgba(255,255,255,.35),inset -10px -14px 22px rgba(42,134,94,.2),0 18px 26px rgba(36,137,93,.18);
}
.dir-card__art--backpack::after{
  right:58px;
  bottom:70px;
  width:62px;
  height:42px;
  border:3px solid rgba(39,137,94,.32);
  border-radius:14px;
  background:linear-gradient(180deg,rgba(255,255,255,.28),rgba(255,255,255,.04));
  box-shadow:0 -72px 0 -23px #74CAA4;
}
.dir-card__art--clipboard::before{
  right:38px;
  bottom:12px;
  width:104px;
  height:128px;
  border-radius:15px;
  background:
    linear-gradient(#8794FF,#8794FF) 33px 28px/46px 5px no-repeat,
    linear-gradient(#8794FF,#8794FF) 33px 52px/50px 5px no-repeat,
    linear-gradient(#8794FF,#8794FF) 33px 77px/40px 5px no-repeat,
    linear-gradient(145deg,#EFF2FF,#9EA9FF);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8),0 18px 28px rgba(84,92,202,.2);
  transform:rotate(-6deg);
}
.dir-card__art--clipboard::after{
  right:72px;
  bottom:119px;
  width:42px;
  height:18px;
  border-radius:8px 8px 4px 4px;
  background:#7583EF;
  box-shadow:
    -25px 38px 0 -18px #48C18D,
    -25px 62px 0 -18px #48C18D,
    -25px 87px 0 -18px #48C18D,
    70px 92px 0 -8px rgba(87,99,218,.75);
}
.dir-card[data-reveal].is-revealed:hover{
  transform:translate3d(0,-6px,0) scale(1);
}
@keyframes dirsFloat{
  0%,100%{translate:0 0}
  50%{translate:0 -10px}
}
@keyframes dirsTwinkle{
  0%,100%{opacity:.65;transform:scale(.86)}
  50%{opacity:1;transform:scale(1.14)}
}

@media(max-width:1180px){
  .dirs-section{
    padding-top:64px;
  }
  .dirs-section .section-header--center{
    min-height:136px;
  }
  .dirs-scene__pin{
    left:3.5%;
    transform:rotate(-45deg) scale(.78);
  }
  .dirs-scene__cap{
    right:2%;
    transform:perspective(320px) rotateX(55deg) rotateZ(-9deg) scale(.82);
  }
  .dirs-scene__chart{
    right:1.5%;
    transform:scale(.84);
  }
  .dirs-section .dir-card{
    min-height:260px;
    padding:24px;
  }
  .dir-card__art{
    right:-8px;
    width:166px;
    opacity:.72;
  }
  .dirs-section .dir-card p{
    max-width:300px;
  }
}
@media(max-width:900px){
  .dirs-section{
    padding-top:54px;
  }
  .dirs-section::before{
    inset:0 12px 4px;
    border-radius:26px;
  }
  .dirs-section::after,
  .dirs-scene{
    display:none;
  }
  .dirs-section .section-header--center{
    min-height:0;
    margin-bottom:26px;
  }
  .dirs-section .display--md{
    font-size:clamp(34px,7vw,46px);
  }
  .dirs-section .lede{
    font-size:17px;
  }
  .dirs-section .dirs{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .dirs-section .dir-card{
    min-height:238px;
  }
  .dir-card__art{
    opacity:.42;
  }
}
@media(max-width:620px){
  .dirs-section{
    padding-top:42px;
    padding-bottom:34px;
  }
  .dirs-section::before{
    inset:0 8px;
  }
  .dirs-section .display--md{
    font-size:34px;
    line-height:1.05;
  }
  .dirs-section .lede{
    font-size:16px;
    line-height:1.55;
  }
  .dirs-eyebrow{
    font-size:12px;
    gap:10px;
  }
  .dirs-section .dirs{
    grid-template-columns:1fr;
    gap:14px;
  }
  .dirs-section .dir-card{
    min-height:214px;
    padding:22px;
  }
  .dirs-section .dir-card__icon{
    width:50px;
    height:50px;
  }
  .dirs-section .dir-card h3{
    font-size:20px;
    max-width:260px;
  }
  .dirs-section .dir-card p{
    font-size:14.5px;
    max-width:260px;
  }
  .dir-card__art{
    right:-26px;
    width:154px;
    height:126px;
    opacity:.28;
  }
}

[data-reveal]{
  opacity:0;
  transform:translate3d(0,28px,0) scale(.985);
  filter:blur(8px);
  transition:
    opacity .78s var(--ease) var(--reveal-delay,0ms),
    transform .78s var(--ease) var(--reveal-delay,0ms),
    filter .78s var(--ease) var(--reveal-delay,0ms);
  will-change:opacity,transform,filter;
}
[data-reveal].is-revealed{
  opacity:1;
  transform:translate3d(0,0,0) scale(1);
  filter:blur(0);
}
.ic[data-reveal],
.dir-card[data-reveal],
.featured-card[data-reveal],
.choice-card[data-reveal],
.step[data-reveal],
.testimonial[data-reveal],
.faq-item[data-reveal],
.blog-card[data-reveal]{
  transform:translate3d(0,22px,0) scale(.98);
}
.ic[data-reveal].is-revealed,
.dir-card[data-reveal].is-revealed,
.featured-card[data-reveal].is-revealed,
.choice-card[data-reveal].is-revealed,
.step[data-reveal].is-revealed,
.testimonial[data-reveal].is-revealed,
.faq-item[data-reveal].is-revealed,
.blog-card[data-reveal].is-revealed{
  transform:translate3d(0,0,0) scale(1);
}
@media(prefers-reduced-motion:reduce){
  .hero *,
  .hero::after,
  .stats,
  [data-reveal],
  [data-reveal].is-revealed{
    animation:none!important;
    transition:none!important;
    opacity:1!important;
    transform:none!important;
    filter:none!important;
  }
}
