
#ot-hero {
  position: relative;
  isolation: isolate;
  background: #f8f9fb;
  color: #172033;
  font: 16px/1.5 Arial, sans-serif;
  text-align: left;
}

#ot-hero,
#ot-hero * {
  box-sizing: border-box;
}

#ot-hero a {
  color: inherit;
  text-decoration: none;
}

#ot-hero a:focus-visible {
  outline: 3px solid #ff8c45;
  outline-offset: 5px;
}

#ot-hero .oth-shell {
  max-width: 1260px;
  margin: auto;
  padding: 38px 28px 30px;
}

#ot-hero .oth-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
}

#ot-hero .oth-copy {
  min-width: 0;
  padding: 25px 0;
}

#ot-hero .oth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 7px 12px;
  border: 1px solid #e4e7ec;
  border-radius: 100px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
}

#ot-hero .oth-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ff651a;
}

#ot-hero h1 {
  margin: 0;
  color: #172033;
  font: 800 clamp(38px, 4.4vw, 60px)/1.06 Arial, sans-serif;
  letter-spacing: -2.3px;
  text-wrap: balance;
}

#ot-hero .oth-accent {
  display: block;
  margin-top: 9px;
  color: #ed5b13;
}

#ot-hero .oth-lead {
  max-width: 510px;
  margin: 25px 0 0;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}

#ot-hero .oth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 29px;
}

#ot-hero .oth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 100px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}

#ot-hero .oth-primary {
  background: linear-gradient(105deg, #ff4b1a, #ff8b0b);
  color: #fff;
  box-shadow: 0 9px 23px #ff651a24;
}

#ot-hero .oth-secondary {
  background: #fff;
  border: 1px solid #e1e5eb;
}

#ot-hero .oth-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 23px #18203512;
}

#ot-hero .oth-note {
  margin: 16px 0 0;
  max-width: 455px;
  font-size: 11px;
  line-height: 1.6;
  color: #7b8290;
}

#ot-hero .oth-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

#ot-hero .oth-tag {
  font-size: 11px;
  color: #626b79;
}

#ot-hero .oth-tag + .oth-tag::before {
  content: "·";
  margin-right: 8px;
  color: #a1a8b4;
}

/* Фотография */

#ot-hero .oth-portrait {
  position: relative;
  isolation: isolate;
  min-width: 0;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
}

#ot-hero .oth-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2%;
  right: 2%;
  bottom: 0;
  height: 85%;
  border-radius: 48% 48% 22px 22px;
  background: radial-gradient(
    ellipse at 50% 48%,
    #ffe2c9 0%,
    #fff0e4 48%,
    #f8f9fb 76%
  );
}

#ot-hero .oth-photo {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 92%,
    transparent 100%
  );
}

/* Нижняя полоса */

#ot-hero .oth-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid #e3e6ec;
}

#ot-hero .oth-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

#ot-hero .oth-number {
  padding-top: 2px;
  color: #ec6827;
  font-weight: 700;
  letter-spacing: 1px;
}

#ot-hero .oth-feature strong {
  display: block;

  font-weight: 700;
}

#ot-hero .oth-feature p {
  margin: 5px 0 0;
  color: #7b8290;

  line-height: 1.5;
  max-width: 280px;
}

/* === Адаптация === */

/* Планшеты (800–1100px) */
@media (max-width: 1100px) {
  #ot-hero .oth-shell {
    padding: 30px 22px 26px;
  }

  #ot-hero .oth-grid {
    gap: 24px;
  }

  #ot-hero h1 {
    font-size: 46px;
    letter-spacing: -1.7px;
  }

  #ot-hero .oth-lead {
    font-size: 15px;
  }
}

/* Переход на мобильную сетку (640–800px) */
@media (max-width: 800px) {
  #ot-hero .oth-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #ot-hero .oth-copy {
    max-width: 640px;
    padding: 12px 0 0;
  }

  #ot-hero h1 {
    font-size: clamp(38px, 7vw, 54px);
  }

  #ot-hero .oth-lead {
    max-width: 580px;
  }

  #ot-hero .oth-portrait {
    width: 100%;
    max-width: 460px;
    justify-self: center;
  }

  #ot-hero .oth-photo {
    max-width: 360px;
    max-height: 500px;
  }

  #ot-hero .oth-bottom {
    gap: 18px;
    margin-top: 8px;
  }
}

/* Малые планшеты / крупные телефоны (480–640px) */
@media (max-width: 640px) {
  #ot-hero .oth-shell {
    padding: 28px 20px 24px;
  }

  #ot-hero .oth-grid {
    gap: 6px;
  }

  #ot-hero .oth-copy {
    padding: 8px 0 0;
  }

  #ot-hero h1 {
    font-size: clamp(34px, 6.5vw, 44px);
    letter-spacing: -1.3px;
  }

  #ot-hero .oth-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  #ot-hero .oth-actions {
    margin-top: 24px;
    gap: 10px;
  }

  #ot-hero .oth-button {
    flex: 1 1 auto;
    min-height: 50px;
  }

  #ot-hero .oth-tags {
    margin-top: 22px;
  }

  #ot-hero .oth-photo {
    max-width: 320px;
    max-height: 440px;
  }

  #ot-hero .oth-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    padding-top: 22px;
  }

  #ot-hero .oth-feature p {
    max-width: none;
  }
}

/* Телефоны (400–480px) */
@media (max-width: 480px) {
  #ot-hero .oth-shell {
    padding: 24px 16px 20px;
  }

  #ot-hero .oth-eyebrow {
    font-size: 10px;
    padding: 6px 10px;
    margin-bottom: 18px;
    gap: 7px;
  }

  #ot-hero .oth-dot {
    width: 6px;
    height: 6px;
  }

  #ot-hero h1 {
    font-size: clamp(30px, 7.5vw, 38px);
    letter-spacing: -1px;
  }

  #ot-hero .oth-accent {
    margin-top: 6px;
  }

  #ot-hero .oth-lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  #ot-hero .oth-actions {
    flex-direction: column;
    margin-top: 22px;
    gap: 10px;
  }

  #ot-hero .oth-button {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
    font-size: 13px;
  }

  #ot-hero .oth-note {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.55;
  }

  #ot-hero .oth-tags {
    margin-top: 18px;
    gap: 6px;
  }

  #ot-hero .oth-tag {
    font-size: 10px;
  }

  #ot-hero .oth-portrait {
    margin-top: 6px;
  }

  #ot-hero .oth-photo {
    max-width: 260px;
    max-height: 380px;
  }

  #ot-hero .oth-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 16px;
    padding-top: 18px;
  }

  #ot-hero .oth-feature {
    gap: 10px;
  }

  #ot-hero .oth-feature strong {
    font-size: 13px;
  }

  #ot-hero .oth-feature p {
    font-size: 12px;
  }
}

/* Очень маленькие телефоны (320–400px) */
@media (max-width: 400px) {
  #ot-hero .oth-shell {
    padding: 20px 12px 18px;
  }

  #ot-hero .oth-eyebrow {
    font-size: 9px;
    padding: 5px 9px;
    margin-bottom: 16px;
    gap: 6px;
  }

  #ot-hero .oth-dot {
    width: 5px;
    height: 5px;
  }

  #ot-hero h1 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }

  #ot-hero .oth-lead {
    margin-top: 14px;
    font-size: 13px;
  }

  #ot-hero .oth-actions {
    margin-top: 18px;
  }

  #ot-hero .oth-button {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 12px;
  }

  #ot-hero .oth-note {
    font-size: 10px;
  }

  #ot-hero .oth-tags {
    margin-top: 16px;
  }

  #ot-hero .oth-photo {
    max-width: 220px;
    max-height: 320px;
  }

  #ot-hero .oth-bottom {
    gap: 16px;
    margin-top: 14px;
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ot-hero * {
    transition: none !important;
  }
}


strong {
    font-size: 14px;
}

@media (max-width: 400px) {
    .oth-button {
        font-size: 14px;
    }
}


#ot-programs{--opc-ink:#172033;--opc-muted:#747d8c;--opc-orange:#ee631c;background:#f8f9fb;color:var(--opc-ink);font:16px/1.5 Arial,sans-serif;text-align:left;scroll-margin-top:30px}
#ot-programs,#ot-programs *{box-sizing:border-box}
#ot-programs a{color:inherit;text-decoration:none}
#ot-programs a:focus-visible{outline:3px solid #ff9c5e;outline-offset:5px}
#ot-programs .opc-container{max-width:1260px;margin:auto;padding:72px 28px}
#ot-programs .opc-intro{display:flex;align-items:flex-end;justify-content:space-between;gap:36px;margin-bottom:32px}
#ot-programs .opc-eyebrow{display:inline-flex;align-items:center;gap:8px;margin:0 0 15px;font-size:10px;font-weight:700;letter-spacing:1.6px;color:#9a6c50;text-transform:uppercase}
#ot-programs .opc-eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:#ff8039}
#ot-programs h2{margin:0;color:var(--opc-ink);font:800 clamp(30px,3.3vw,44px)/1.12 Arial,sans-serif;letter-spacing:-1.5px}
#ot-programs .opc-intro-text{max-width:350px;margin:0;color:var(--opc-muted);font-size:14px;line-height:1.7}
#ot-programs .opc-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:20px}
#ot-programs .opc-card{grid-column:span 2;min-width:0;display:flex;flex-direction:column;padding:27px;background:#fff;border:1px solid #e9ebf0;border-radius:23px;box-shadow:0 5px 20px #1a2b4404;transition:transform .2s,border-color .2s,box-shadow .2s}
#ot-programs .opc-wide{grid-column:span 3}
#ot-programs .opc-card-top{display:flex;align-items:center;gap:12px;margin-bottom:23px}
#ot-programs .opc-icon{display:grid;place-items:center;flex-shrink:0;width:45px;height:45px;border-radius:14px;background:#fff2e8;color:var(--opc-orange)}
#ot-programs .opc-icon svg{display:block;width:24px;height:24px}
#ot-programs .opc-label{font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:#9299a5}
#ot-programs h3{margin:0 0 12px;font:700 21px/1.3 Arial,sans-serif;letter-spacing:-.5px;color:var(--opc-ink)}
#ot-programs h3 a:hover{color:var(--opc-orange)}
#ot-programs .opc-description{margin:0 0 26px;font-size:14px;line-height:1.7;color:var(--opc-muted)}
#ot-programs .opc-footer{margin-top:auto;padding-top:20px;border-top:1px solid #eef0f4}
#ot-programs .opc-price-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:17px}
#ot-programs .opc-price{font-size:29px;font-weight:800;letter-spacing:-1px;white-space:nowrap}
#ot-programs .opc-price small{font-size:15px;font-weight:600;letter-spacing:0}
#ot-programs .opc-more{display:inline-flex;align-items:center;gap:8px;color:#7c8390;font-size:12px}
#ot-programs .opc-more:hover{color:var(--opc-orange)}
#ot-programs .opc-apply{display:flex;justify-content:space-between;align-items:center;gap:12px;min-height:47px;padding:12px 17px;background:#fff3ea;border:1px solid #ffe5d2;border-radius:12px;color:#ca5014;font-weight:700;transition:background .2s,color .2s,border-color .2s}
#ot-programs .opc-apply:hover{background:#ff7024;border-color:#ff7024;color:#fff}
#ot-programs .opc-subheading{display:flex;align-items:center;gap:17px;margin:38px 0 20px}
#ot-programs .opc-subheading h3{margin:0;font-size:17px;letter-spacing:-.3px}
#ot-programs .opc-subheading::after{content:"";flex:1;height:1px;background:#e5e8ee}
#ot-programs .opc-extra .opc-icon{background:#f1f3f8;color:#62718c}
#ot-programs .opc-extra .opc-card{box-shadow:none}
#ot-programs .opc-note{margin:19px 0 0;font-size:11px;line-height:1.6;color:#858d99}
#ot-programs .opc-help{position:relative;display:flex;align-items:center;justify-content:space-between;gap:26px;margin-top:30px;padding:27px 30px;border:1px solid #f1e1d5;border-radius:22px;background:linear-gradient(110deg,#fff4e9,#fffbf7 65%,#fff)}
#ot-programs .opc-help-label{margin:0 0 6px;font-size:10px;letter-spacing:1px;text-transform:uppercase;color:#b57a50;font-weight:700}
#ot-programs .opc-help h3{margin:0 0 7px;font-size:22px}
#ot-programs .opc-help p:not(.opc-help-label){margin:0;max-width:590px;color:#807c79;font-size:13px;line-height:1.65}
#ot-programs .opc-help-button{display:inline-flex;align-items:center;justify-content:center;gap:16px;flex-shrink:0;min-height:50px;padding:14px 23px;border-radius:100px;background:linear-gradient(105deg,#ff4b1a,#ff8b0b);color:#fff;font-weight:700;box-shadow:0 8px 22px #ff641a26}
@media(hover:hover){#ot-programs .opc-card:hover{transform:translateY(-4px);border-color:#f2d6c3;box-shadow:0 14px 35px #25304409}}
@media(max-width:1050px){
#ot-programs .opc-container{padding:55px 22px}
#ot-programs .opc-card{padding:22px}
#ot-programs h3{font-size:19px}
#ot-programs .opc-grid{gap:16px}
}
@media(max-width:900px){
#ot-programs .opc-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
#ot-programs .opc-card,#ot-programs .opc-wide{grid-column:span 1}
#ot-programs .opc-main>.opc-card:last-child{grid-column:1/-1}
#ot-programs .opc-intro{align-items:flex-start;flex-direction:column;gap:16px}
#ot-programs .opc-intro-text{max-width:580px}
#ot-programs .opc-help{align-items:flex-start;flex-direction:column;gap:20px}
}
@media(max-width:600px){
#ot-programs .opc-container{padding:40px 16px}
#ot-programs h2{font-size:32px;letter-spacing:-1px}
#ot-programs .opc-intro{margin-bottom:24px}
#ot-programs .opc-grid{grid-template-columns:1fr;gap:14px}
#ot-programs .opc-card{padding:23px;border-radius:20px}
#ot-programs .opc-card-top{margin-bottom:19px}
#ot-programs h3{font-size:21px}
#ot-programs .opc-description{font-size:14px;margin-bottom:22px}
#ot-programs .opc-subheading{margin-top:30px;gap:12px}
#ot-programs .opc-subheading h3{font-size:16px}
#ot-programs .opc-help{padding:24px 21px;border-radius:20px}
#ot-programs .opc-help h3{font-size:22px}
#ot-programs .opc-help-button{width:100%;padding:14px 16px}
}
@media(prefers-reduced-motion:reduce){#ot-programs *{transition:none!important}}


.opc-apply {
    font-size: 16px;
}

.opc-help-button {
    font-size: 16px;
}

:root{--ink:#172033;--muted:#747d8c;--accent:#ed641f;--line:#e6e9ee;--surface:#f8f9fb}*{box-sizing:border-box}html{scroll-behavior:smooth;scroll-padding-top:100px}body{margin:0;background:var(--surface);color:var(--ink);font:16px/1.65 Arial,sans-serif}a{color:inherit;text-decoration:none}button,input,textarea{font:inherit}button,a,input,textarea{-webkit-tap-highlight-color:transparent}button{cursor:pointer}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:3px solid #ff8c42;outline-offset:4px}a:hover{color:var(--accent)}button{border:0}h1,h2,h3,p{margin-top:0}h1,h2,h3{line-height:1.15}h1{font-size:clamp(34px,4.5vw,58px);letter-spacing:-1.8px;max-width:950px;margin-bottom:24px}h2{font-size:40px;letter-spacing:-1.3px;margin-bottom:18px}h3{font-size:20px;letter-spacing:-.4px}em{font-style:normal;color:var(--accent)}.wrap{max-width:1260px;padding-left:28px;padding-right:28px;margin:auto}.section{padding:78px 0}.white{background:white}.eyebrow{font-size:12px!important;color:#98775d;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;margin-bottom:18px;line-height:1.5}.eyebrow:before{content:'';display:inline-block;width:22px;height:2px;background:#f7772a;vertical-align:middle;margin-right:10px}.intro{font-size:17px;line-height:1.7;max-width:770px;color:var(--muted);margin:20px 0 30px}.muted{color:var(--muted)}.button{display:inline-flex;align-items:center;justify-content:center;gap:20px;min-height:50px;padding:14px 22px;border-radius:99px;font-weight:700;font-size:14px;line-height:1.5;transition:transform .18s,box-shadow .18s}.button:hover{transform:translateY(-2px)}.primary{background:linear-gradient(105deg,#ff4b1a,#ff8b0b);color:white;box-shadow:0 8px 22px #ff641a22}.primary:hover{color:white;box-shadow:0 9px 26px #ff641a40}.secondary{border:1px solid #dfe4eb;background:white}.skip{position:fixed;top:-100px;z-index:100;background:white;padding:15px}.skip:focus{top:0}header{position:sticky;top:0;z-index:30;background:#ffffffef;backdrop-filter:blur(12px);border-bottom:1px solid var(--line)}.nav{display:flex;align-items:center;justify-content:space-between;gap:25px;min-height:88px}.brand{display:flex;align-items:center;gap:10px;font-size:16px;font-weight:800;letter-spacing:.4px;line-height:1.2;white-space:nowrap}.brand small{display:block;font-size:10px;letter-spacing:2px;color:#9299a5;margin-top:7px}.brand-icon{width:42px;height:46px;border-radius:13px;background:#fff0e5;color:var(--accent);display:grid;place-items:center}.brand-icon svg{width:27px;height:27px}#navigation{display:flex;gap:25px;font-size:14px;font-weight:600}.menu-toggle{display:none;border:1px solid var(--line);border-radius:10px;padding:9px 12px;background:white}.section-top{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:35px}.section-top h2{margin:0}.cards{display:grid;gap:20px;margin-top:40px}.three{grid-template-columns:repeat(3,minmax(0,1fr))}.trust-card{background:#fff;border:1px solid var(--line);border-radius:23px;padding:28px;text-align:center;box-shadow:0 4px 13px #17203308}.trust-card h3{font-size:18px;margin:18px 0 10px}.trust-card p{font-size:15px;color:var(--muted);margin:0}.icon{display:inline-grid;place-items:center;width:50px;height:50px;border-radius:15px;background:#fff0e5;color:var(--accent);flex-shrink:0}.icon svg{width:25px;height:25px}.documents-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:70px;align-items:center;margin-top:48px}.document-list{list-style:none;padding:0;margin:0;display:grid;gap:23px}.document-list li{display:flex;gap:15px;align-items:flex-start}.document-list .icon{width:39px;height:39px;border-radius:12px}.document-list h3{font-size:16px;margin:0 0 5px}.document-list p{font-size:15px;color:var(--muted);margin:0}.document-card{border-radius:24px;padding:40px 38px;background:radial-gradient(ellipse at 100% 0%,#f47a2530,transparent 62%),linear-gradient(120deg,#131e31,#1d3355);color:white;border:1px solid #243b5e;box-shadow:0 15px 34px #172b4d1c}.document-card .eyebrow{color:#ffb27c}.document-card h3{font-size:27px;margin-bottom:14px}.document-card p:not(.eyebrow){color:#c0cadb}.badge{display:inline-flex;align-items:center;gap:10px;border:1px solid #ffb77e42;border-radius:12px;padding:12px 15px;background:#ff9b3d12;color:#fff1e5;font-size:13px;font-weight:bold}.badge svg{width:20px;height:20px;color:#ffae73}.article-card{border:1px solid var(--line);border-radius:22px;overflow:hidden;background:white;display:flex;flex-direction:column;transition:transform .2s}.article-card:hover{transform:translateY(-4px);color:inherit}.article-art{height:155px;display:flex;align-items:center;justify-content:space-between;padding:28px 35px;background:#fff0e4;color:#df7b3d}.article-art span{font-size:72px;font-weight:800;letter-spacing:-5px;opacity:.4;line-height:1}.article-art svg{width:65px;height:65px;opacity:.8}.art-1{background:#eaf0f7;color:#71839d}.art-2{background:#eaf2ef;color:#719a85}.article-info{padding:27px;display:flex;flex-direction:column;flex:1}.article-info .eyebrow{font-size:11px!important;letter-spacing:1px}.article-info h3{font-size:22px;line-height:1.3}.article-info p:not(.eyebrow){font-size:15px;color:var(--muted)}.read{display:block;margin-top:auto;font-size:14px;font-weight:bold;color:var(--accent)}.end-banner{margin-top:60px;margin-bottom:80px;padding:45px 40px;display:flex;gap:30px;align-items:center;justify-content:space-between;border:1px solid #f1e1d5;border-radius:24px;background:linear-gradient(110deg,#fff4e9,#fffbf7 65%,#fff)}.end-banner h2{font-size:34px}.end-banner p:not(.eyebrow){color:var(--muted);margin:0}.end-banner .button{flex-shrink:0}footer{padding-top:52px;background:#fff;border-top:1px solid var(--line)}.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:50px;padding-bottom:45px}.footer-grid p{color:var(--muted);font-size:14px;margin-top:15px}.footer-grid>div>a:not(.brand){display:block;margin-top:12px;font-size:14px}.footer-grid strong{font-size:15px}.text-button{padding:0;background:none;color:var(--accent);margin-top:12px;font-size:14px}.footer-bottom{display:flex;justify-content:space-between;border-top:1px solid var(--line);padding-top:22px;padding-bottom:24px;color:var(--muted);font-size:12px}.breadcrumbs{font-size:13px;color:var(--muted);padding-top:28px}.breadcrumbs a{margin:0 6px}.breadcrumbs a:first-child{margin-left:0}.page-hero{padding-top:56px;padding-bottom:60px}.price-line{font-size:32px;font-weight:800;margin:25px 0}.price-line span{font-size:14px;font-weight:400;color:var(--muted);display:block}.prose{max-width:800px}.prose h2{font-size:29px;line-height:1.25;margin:36px 0 18px;letter-spacing:-.6px}.prose p,.prose li{font-size:17px;line-height:1.9}.prose a{color:#c4511d;text-decoration:underline;text-underline-offset:4px}.prose .button{text-decoration:none;color:white}.prose li{margin-bottom:10px}.article-heading{max-width:1260px}.article-heading h1{max-width:920px;font-size:48px}.reading-layout{display:grid;grid-template-columns:minmax(0,780px) 310px;justify-content:space-between;gap:60px;align-items:start;padding-bottom:70px}.reading-aside{position:sticky;top:120px;padding:28px;border:1px solid #f0dfd2;border-radius:22px;background:#fff7f0}.reading-aside h3{font-size:26px;margin:20px 0 16px}.reading-aside p{font-size:15px;color:var(--muted)}.aside-price{display:block;font-size:30px;margin-bottom:18px}.reading-aside .button{width:100%;font-size:13px}.toc{border:1px solid var(--line);background:white;border-radius:20px;padding:28px}.toc ol{margin-bottom:0;padding-left:22px}.toc li,.toc a{font-size:15px;color:#566276;text-decoration:none}.inline-cta{margin:38px 0;padding:28px;border-radius:18px;background:#fff0e5}.inline-cta h3{margin-bottom:10px}.inline-cta p{font-size:16px}.editor-note{border-top:1px solid var(--line);padding-top:25px;color:var(--muted);font-size:14px!important}.mobile-apply{display:none}.search-label{display:block;max-width:650px;font-size:14px;font-weight:bold;margin-top:35px}.search-label input{margin-top:9px;padding:17px 22px;font-size:17px;border-radius:14px;background:white}.alphabet{display:flex;flex-wrap:wrap;gap:7px;margin-top:25px}.alphabet a{border:1px solid var(--line);border-radius:9px;min-width:35px;padding:5px 8px;text-align:center;background:white;font-size:14px}.city-directory{padding-bottom:40px}.city-group{padding-bottom:35px}.city-group h2{font-size:25px;color:var(--accent);border-bottom:1px solid var(--line);padding-bottom:15px}.city-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:25px}.city-link{padding:15px 18px;border:1px solid var(--line);border-radius:13px;background:white;font-size:15px;font-weight:bold;overflow-wrap:anywhere}.city-link:hover{border-color:#eeac81;background:#fff8f3}.city-link small{display:block;font-weight:400;font-size:12px;color:var(--muted);margin-top:4px}.city-hero{display:block;font-size:.65em;letter-spacing:-.7px;margin-top:15px}.local-steps{margin-bottom:30px}.local-steps article{border:1px solid var(--line);border-radius:18px;padding:25px}.local-steps p{color:var(--muted);font-size:15px}.local-steps h3{font-size:18px}dialog{padding:38px;border:0;border-radius:25px;max-width:520px;width:calc(100% - 32px);color:var(--ink);max-height:90dvh;overflow:auto;box-shadow:0 30px 100px #17203340}dialog::backdrop{background:#17203399;backdrop-filter:blur(4px)}dialog h2{font-size:30px;letter-spacing:-.8px}dialog p{font-size:14px}.close{position:absolute;right:16px;top:12px;font-size:30px;background:none;color:#748093;line-height:1;padding:5px}.honey{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important}form label{display:block;font-size:14px;font-weight:bold;margin:16px 0}input,textarea{display:block;width:100%;border:1px solid #dce1e8;border-radius:10px;background:#fafbfc;padding:11px 13px;color:var(--ink);margin-top:7px;min-width:0}textarea{resize:vertical}.consent{display:flex;gap:10px;align-items:flex-start;font-size:12px!important;font-weight:400!important;line-height:1.6}.consent input{width:18px;height:18px;flex-shrink:0;margin:2px 0;accent-color:var(--accent)}.consent a{text-decoration:underline}.submit{width:100%;margin-top:7px}.form-note{font-size:12px!important;text-align:center;color:var(--muted);margin:14px 0 0}.body-locked{overflow:hidden}[hidden]{display:none!important}#ot-hero .oth-eyebrow{font-size:12px}#ot-hero .oth-shell{padding-top:42px}#ot-hero .oth-feature strong{font-size:15px}#ot-hero .oth-feature p{font-size:14px}#ot-programs .opc-label,#ot-programs .opc-eyebrow,#ot-programs .opc-help-label{font-size:12px}#ot-programs .opc-description{font-size:15px}#ot-programs .opc-more{font-size:14px}#ot-programs .opc-help p:not(.opc-help-label){font-size:15px}#ot-programs .opc-apply{font-size:14px}#ot-programs .opc-note{font-size:12px}
@media(max-width:1100px){#navigation{gap:15px}.nav{gap:16px}.nav>.button{padding:12px 16px;font-size:12px}.brand{font-size:14px}.reading-layout{gap:30px;grid-template-columns:minmax(0,1fr) 280px}.documents-grid{gap:30px}.wrap{padding-left:22px;padding-right:22px}.end-banner{margin-left:22px;margin-right:22px}.city-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:800px){.nav{min-height:76px;flex-wrap:wrap;padding-top:13px;padding-bottom:13px}.menu-toggle{display:block;margin-left:auto}.nav>.button{display:none}#navigation{display:none;width:100%;flex-direction:column;padding:16px 0;gap:0}#navigation.open{display:flex}#navigation a{padding:12px 0;border-top:1px solid var(--line)}h2{font-size:33px}.section{padding:52px 0}.three{grid-template-columns:1fr}.documents-grid{grid-template-columns:1fr}.section-top{align-items:flex-start}.article-cards{grid-template-columns:repeat(2,minmax(0,1fr))}.article-cards .article-card:last-child:nth-child(odd){grid-column:1/-1}.end-banner{flex-direction:column;align-items:flex-start;padding:30px}.footer-grid{gap:25px;grid-template-columns:1fr 1fr}.footer-grid>div:first-child{grid-column:1/-1}.reading-layout{grid-template-columns:1fr}.reading-aside{display:none}.mobile-apply{display:block;position:fixed;bottom:0;left:0;right:0;padding:10px 16px;background:#ffffffec;backdrop-filter:blur(10px);z-index:20;border-top:1px solid var(--line)}.mobile-apply .button{width:100%}body:has(.mobile-apply){padding-bottom:75px}.article-heading h1{font-size:38px}.city-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.page-hero{padding-top:36px;padding-bottom:36px}}
@media(max-width:520px){.wrap{padding-left:16px;padding-right:16px}h1{font-size:34px;letter-spacing:-1px}h2{font-size:30px;letter-spacing:-.9px}h2 br{display:none}.intro{font-size:16px}.section{padding:42px 0}.section-top{flex-direction:column;gap:20px}.cards{margin-top:28px}.article-cards{grid-template-columns:1fr}.article-art{height:145px}.article-info{padding:24px}.end-banner{margin:35px 16px 50px;padding:28px 22px}.end-banner h2{font-size:28px}.end-banner .button{width:100%}.document-card{padding:28px 23px}.document-card h3{font-size:24px}.footer-grid{grid-template-columns:1fr}.footer-grid>div:first-child{grid-column:auto}.footer-bottom{display:block}.footer-bottom a{display:block;margin-top:10px}.city-grid{gap:9px}.city-link{font-size:14px;padding:13px 11px}.city-link small{font-size:11px}.article-heading h1{font-size:34px}.prose p,.prose li{font-size:16px}.toc{padding:22px}.prose h2{font-size:26px}.breadcrumbs{font-size:12px}.search-label input{font-size:16px}dialog{padding:30px 22px}dialog h2{font-size:27px}#ot-hero .oth-lead{font-size:16px}#ot-hero .oth-feature strong{font-size:14px}#ot-hero .oth-feature p{font-size:14px}#ot-hero .oth-button{font-size:14px}#ot-hero .oth-eyebrow{font-size:10px}#ot-programs h3{font-size:20px}#ot-programs .opc-description{font-size:15px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important}}
.form-step{padding-top:10px}.quiz-counter{float:right;color:var(--muted);font-size:13px;letter-spacing:0}.quiz-progress{height:6px;margin:7px 0 26px;border-radius:99px;background:#e9edf3;overflow:hidden}.quiz-progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#2f5fc8,var(--accent));transition:width .25s ease}.form-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:26px 0 18px}.form-option{position:relative;display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:62px;padding:15px 17px;border:1px solid #dfe4eb;border-radius:15px;background:#fff;color:var(--ink);font-size:15px;font-weight:700;text-align:left;line-height:1.25;transition:background .18s,border-color .18s,box-shadow .18s,transform .18s}.form-option:hover,.form-option.is-selected{border-color:var(--accent);background:#fff7f1;box-shadow:0 5px 18px #ed641f18}.form-option:active{transform:translateY(1px)}.form-option>span:not(.form-check){color:var(--accent);font-size:20px;line-height:1}.form-check{width:20px;height:20px;border:2px solid #dce3ec;border-radius:6px;flex:0 0 20px;order:-1;position:relative;background:#fff}.form-option.is-selected .form-check{border-color:var(--accent);background:var(--accent)}.form-option.is-selected .form-check:after{content:'✓';position:absolute;left:3px;top:-4px;color:#fff;font-size:15px}.form-option.is-selected>span:not(.form-check){display:none}.form-option[aria-pressed="true"]>span:not(.form-check){display:none}.quiz-actions{display:flex;justify-content:space-between;align-items:center;gap:15px;margin-top:12px}.quiz-next{min-height:44px;padding:10px 18px}.quiz-next:disabled{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}.quiz-hint{margin:17px 0 0;text-align:center;color:var(--muted);font-size:12px!important}.quiz-summary{display:flex;flex-wrap:wrap;gap:8px;margin:19px 0 24px}.quiz-summary span{display:inline-flex;align-items:center;border-radius:999px;padding:8px 12px;background:#fff0e5;color:#a64c20;font-size:12px;font-weight:700;line-height:1.25}.snm-form label{margin:12px 0}.snm-form input:not([type=checkbox]),.snm-form textarea{background:#fff;border-radius:13px}.snm-form textarea{min-height:54px}.snm-form .consent{margin-top:18px}.snm-form .form-note{margin-bottom:0}@media(max-width:600px){dialog{padding:30px 20px 24px}.form-options{grid-template-columns:1fr;gap:10px;margin-top:20px}.form-option{min-height:56px;font-size:14px}.form-step h2{font-size:26px}.quiz-counter{font-size:12px}}

/* Simple contact form */
.application-intro{max-width:420px;color:var(--muted);margin:-5px 0 24px}
#application .eyebrow{margin-bottom:12px}
#application .snm-form label:not(.consent){margin:15px 0}
#application .snm-form input:not([type=checkbox]){min-height:52px;border-color:#dfe4eb;background:#fff}
#application .snm-form input:not([type=checkbox]):focus{border-color:var(--accent);box-shadow:0 0 0 4px #ed641f18}
#application .snm-form .consent{margin:19px 0 14px}
#submit-status{min-height:0;color:#a83c29}
#submit-status:not(:empty){margin-top:12px}
#application .submit:disabled{opacity:.7;cursor:wait;transform:none}

/* Thank-you page */
.thank-page{padding-top:clamp(34px,7vw,82px);padding-bottom:clamp(55px,9vw,100px)}
.thank-card{position:relative;isolation:isolate;overflow:hidden;max-width:850px;margin:0 auto;padding:clamp(28px,6vw,64px);border:1px solid #f1e4dc;border-radius:32px;background:radial-gradient(ellipse at 50% 0%,#fff2e8 0%,#fff 47%);box-shadow:0 24px 70px #17203312;text-align:center;opacity:0;transform:translateY(18px);animation:thank-card-in .65s ease-out forwards}
.thank-card:before{content:"";position:absolute;z-index:-1;top:-115px;right:-100px;width:260px;height:260px;border-radius:50%;background:#ed641f0b}
.thank-card>.eyebrow{display:flex;align-items:center;justify-content:center;color:#b45a2c;margin:0 0 15px}
.thank-card h1{max-width:none;margin:0 auto 17px;font-size:clamp(32px,5.2vw,50px);letter-spacing:-1.6px}
.success-animation{display:grid;place-items:center;width:112px;height:112px;margin:0 auto 24px;border-radius:50%;background:#fff2e8;opacity:0;animation:thank-card-in .55s ease-out .12s forwards}
.checkmark{display:block;width:90px;height:90px;overflow:visible}
.checkmark__circle{stroke:var(--accent);stroke-width:3.5;stroke-dasharray:296;stroke-dashoffset:296;animation:success-draw .75s cubic-bezier(.65,0,.45,1) .3s forwards}
.checkmark__check{stroke:var(--accent);stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:70;stroke-dashoffset:70;animation:success-draw .45s cubic-bezier(.65,0,.45,1) .9s forwards}
.thank-lead{max-width:560px;margin:0 auto 23px;color:var(--muted);font-size:17px}
.redirect-note{display:inline-block;padding:11px 17px;border:1px solid #f3dfd2;border-radius:999px;background:#fff8f3;color:#596273;font-size:14px}
.redirect-note strong{color:var(--ink)}
.redirect-track{height:4px;max-width:370px;margin:17px auto 27px;border-radius:99px;background:#f0e6df;overflow:hidden}
.redirect-track span{display:block;width:100%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#ff8a3d,var(--accent));transform-origin:left;animation:redirect-drain 5s linear forwards}
.redirect-track.is-paused span{animation-play-state:paused}
.social-follow{max-width:540px;margin:0 auto}
.social-follow p{margin-bottom:14px;font-size:15px;color:var(--muted)}
.social-buttons{display:flex;justify-content:center}
.social-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:50px;padding:13px 23px;border-radius:999px;background:#0077ff;color:#fff;font-size:14px;font-weight:700;transition:transform .18s,background .18s}
.social-btn:hover{transform:translateY(-2px);background:#1685ff;color:#fff}
.stay-button{margin-top:16px;padding:9px 14px;background:transparent;color:#697386;font-size:13px;text-decoration:underline;text-underline-offset:3px}
.stay-button:hover{color:var(--accent)}
@keyframes thank-card-in{to{opacity:1;transform:translateY(0)}}
@keyframes success-draw{to{stroke-dashoffset:0}}
@keyframes redirect-drain{to{transform:scaleX(0)}}
@media(max-width:560px){
  #application{padding:30px 20px 24px}
  .thank-card{border-radius:24px;padding:30px 20px}
  .success-animation{width:96px;height:96px}
  .checkmark{width:78px;height:78px}
  .redirect-note{border-radius:14px;line-height:1.5}
  .social-btn{width:100%;padding:13px 15px}
}
@media(prefers-reduced-motion:reduce){
  .thank-card,.success-animation{opacity:1;transform:none;animation:none}
  .checkmark__circle,.checkmark__check{stroke-dashoffset:0;animation:none}
  .redirect-track span{animation:none}
  .social-btn{transition:none}
}

