:root{
  --font-body: "Onest", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Onest", sans-serif;
  --bg-top: #fff7ef;
  --bg-bottom: #f7fcff;
  --surface: rgba(255,255,255,.72);
  --surface-strong: rgba(255,255,255,.9);
  --surface-muted: rgba(255,255,255,.56);
  --text: #192131;
  --title: #121a29;
  --muted: #5d687a;
  --muted-strong: #455063;
  --border: rgba(18,26,41,.10);
  --border-strong: rgba(18,26,41,.16);
  --accent: #ff6b57;
  --accent-strong: #ff543b;
  --accent-cyan: #1fc5c8;
  --accent-gold: #ffc247;
  --accent-mint: #81d59b;
  --shadow-soft: 0 20px 60px rgba(18,26,41,.08);
  --shadow-strong: 0 28px 80px rgba(18,26,41,.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --radius-xs: 14px;
  --container: 1180px;
  --header-offset: 104px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-padding-top: 130px;
}

body{
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top) 0%, #fffaf5 34%, var(--bg-bottom) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(620px 420px at 12% 6%, rgba(255,107,87,.15), transparent 68%),
    radial-gradient(560px 360px at 86% 10%, rgba(31,197,200,.12), transparent 66%),
    radial-gradient(520px 360px at 52% 100%, rgba(255,194,71,.12), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,0) 45%, rgba(31,197,200,.04) 70%, rgba(255,194,71,.05));
  pointer-events: none;
  z-index: -2;
}

body::after{
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
    linear-gradient(120deg, rgba(255,107,87,.03), rgba(31,197,200,.03), rgba(255,194,71,.03));
  backdrop-filter: saturate(110%);
  pointer-events: none;
  z-index: -1;
}

body.modal-open,
html.modal-open{
  overflow: hidden;
}

a,
button,
input,
select,
textarea{
  font: inherit;
}

button{
  border: 0;
}

.skip-link{
  position: absolute;
  left: 18px;
  top: 18px;
  transform: translateY(-160%);
  background: #fff;
  color: var(--title);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  z-index: 200;
  transition: transform .2s ease;
}

.skip-link:focus{
  transform: translateY(0);
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-main{
  padding-top: calc(var(--header-offset) + 8px);
}

.section{
  position: relative;
  padding: 64px 0;
}

#top,
#how,
#focus,
#experts,
#faq,
#contacts{
  scroll-margin-top: 136px;
}

.site-header{
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 70;
}

.header-inner{
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 26px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: 0 16px 40px rgba(18,26,41,.08);
  backdrop-filter: blur(20px);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-header.is-scrolled .header-inner{
  background: rgba(255,255,255,.8);
  box-shadow: 0 18px 48px rgba(18,26,41,.12);
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 6px 10px 6px 6px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.brand:hover{
  background: rgba(255,255,255,.64);
}

.brand-mark{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 14px 28px rgba(255,107,87,.26);
  position: relative;
  overflow: hidden;
}

.brand-mark::before{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,0));
}

.brand-copy{
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-title{
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -.03em;
}

.brand-subtitle{
  color: var(--muted);
  font-size: .8rem;
}

.nav{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nav-link::after{
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.nav-link:hover{
  color: var(--title);
  background: rgba(255,255,255,.64);
}

.nav-link:hover::after{
  transform: scaleX(1);
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle{
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(18,26,41,.08);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(18,26,41,.08);
}

.nav-toggle-line{
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--title);
  margin: 3px auto;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.is-open .nav-toggle-line:nth-child(1){
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-open .nav-toggle-line:nth-child(2){
  opacity: 0;
}

.site-header.is-open .nav-toggle-line:nth-child(3){
  transform: translateY(-5px) rotate(-45deg);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn:disabled{
  cursor: wait;
  opacity: .72;
  transform: none;
  box-shadow: none;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.icon-btn:focus-visible,
.hero-scroll-cue:focus-visible,
.link-chip:focus-visible,
.footer-link-button:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,107,87,.16);
}

.brand:focus,
.brand:focus-visible,
.nav-link:focus,
.nav-link:focus-visible{
  outline: none;
  box-shadow: none;
}

.btn-primary{
  color: #111826;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
  box-shadow: 0 20px 34px rgba(255,107,87,.24);
}

.btn-primary:hover{
  box-shadow: 0 22px 38px rgba(255,107,87,.28);
}

.btn-secondary{
  color: var(--title);
  background: rgba(255,255,255,.64);
  border-color: rgba(18,26,41,.08);
  box-shadow: 0 12px 28px rgba(18,26,41,.06);
}

.btn-secondary:hover{
  background: rgba(255,255,255,.84);
}

.btn-sm{
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
}

.btn-full{
  width: 100%;
}

.hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 40px;
  align-items: center;
}

.hero-copy{
  max-width: 640px;
}

.hero-eyebrow,
.section-eyebrow,
.modal-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-strong);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-eyebrow::before,
.modal-eyebrow::before{
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255,107,87,0));
}

.hero-title{
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.05em;
  color: var(--title);
}

.hero-title-accent{
  display: block;
  color: var(--accent-strong);
}

.hero-lead{
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--muted-strong);
  max-width: 58ch;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pill{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(18,26,41,.08);
  color: var(--muted-strong);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(18,26,41,.05);
}

.hero-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.metric-card{
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18,26,41,.08);
  box-shadow: var(--shadow-soft);
}

.metric-value{
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: .9;
  color: var(--title);
  letter-spacing: -.08em;
}

.metric-label{
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.42;
  font-size: .84rem;
}

.hero-scroll-cue{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  text-decoration: none;
  color: var(--muted-strong);
  font-size: .94rem;
  font-weight: 700;
  transition: transform .18s ease, color .18s ease;
}

.hero-scroll-cue:hover{
  transform: translateY(-1px);
  color: var(--title);
}

.hero-scroll-ring{
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}

.hero-scroll-ring::before,
.hero-scroll-ring::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-scroll-ring::before{
  inset: -6px;
  border: 1px solid rgba(255,107,87,.22);
  animation: scrollCuePulse 1.8s ease-in-out infinite;
}

.hero-scroll-ring::after{
  inset: -18px;
  background: radial-gradient(circle, rgba(255,107,87,.14), transparent 68%);
  opacity: .55;
  animation: scrollCueBlink 1.8s ease-in-out infinite;
}

.hero-scroll-arrow{
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--title);
  border-bottom: 3px solid var(--title);
  transform: rotate(45deg) translateY(-4px);
  border-radius: 2px;
}

.hero-scroll-text{
  max-width: 18ch;
  line-height: 1.42;
}

.hero-visual{
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 20px 22px 24px;
}

.hero-visual-card{
  position: relative;
  width: min(100%, 560px);
  padding: 34px 30px 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
    linear-gradient(135deg, rgba(255,107,87,.1), rgba(31,197,200,.06));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-visual-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255,107,87,.14), rgba(255,107,87,0) 34%, rgba(31,197,200,.12) 72%, rgba(31,197,200,0));
  pointer-events: none;
}

.hero-visual-card > *{
  position: relative;
  z-index: 1;
}

.visual-label{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18,26,41,.06);
  color: var(--muted-strong);
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
}

.visual-title{
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--title);
}

.visual-text{
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
  max-width: 30ch;
}

.signal-grid{
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.signal-card{
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(18,26,41,.08);
  box-shadow: 0 12px 24px rgba(18,26,41,.05);
}

.signal-tag{
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--title);
  font-size: .8rem;
  font-weight: 800;
}

.signal-tag--coral{
  background: rgba(255,107,87,.14);
}

.signal-tag--cyan{
  background: rgba(31,197,200,.14);
}

.signal-tag--gold{
  background: rgba(255,194,71,.18);
}

.signal-title{
  margin-top: 14px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--title);
}

.signal-text{
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.64;
  font-size: .95rem;
}

.visual-footer{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.visual-footer span{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18,26,41,.06);
  color: var(--muted-strong);
  font-size: .82rem;
  font-weight: 700;
}

.floating-badge{
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  color: var(--title);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  pointer-events: none;
  z-index: 3;
}

.badge-a{
  top: -6px;
  left: 56px;
}

.badge-b{
  top: 212px;
  right: -18px;
}

.badge-c{
  bottom: -10px;
  left: 64px;
}

.section-heading{
  max-width: 780px;
  margin-bottom: 28px;
}

.section-title{
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: .98;
  letter-spacing: -.05em;
  color: var(--title);
}

.section-lead{
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.78;
  font-size: 1rem;
}

.process-grid,
.areas-grid,
.contacts-grid{
  display: grid;
  gap: 18px;
}

.process-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card{
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18,26,41,.08);
  box-shadow: var(--shadow-soft);
}

.process-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,107,87,.16), rgba(255,194,71,.22));
  color: var(--title);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}

.process-title{
  margin: 16px 0 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--title);
}

.process-text{
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.section-note{
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,245,240,.92) 38%, rgba(255,255,255,.82));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}

.section-note-copy{
  max-width: 780px;
}

.section-note-title{
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--title);
}

.section-note-text{
  margin-top: 10px;
  color: var(--muted-strong);
  line-height: 1.62;
}

.section-note .btn{
  justify-self: end;
}

.areas-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-card{
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,26,41,.08);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.area-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(18,26,41,.10);
}

.area-card--coral{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,107,87,.08));
}

.area-card--cyan{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(31,197,200,.08));
}

.area-card--gold{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,194,71,.10));
}

.area-card--mint{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(129,213,155,.10));
}

.area-label{
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.area-title{
  margin: 16px 0 12px;
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--title);
}

.area-text{
  margin: 0 0 18px;
  color: var(--muted-strong);
  line-height: 1.72;
}

.link-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18,26,41,.10);
  color: var(--title);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}

.link-chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.9);
}

.section-experts{
  padding-top: 74px;
}

.experts-panel{
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}

.experts-toolbar{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.search-field{
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
}

.search-label,
.field-label{
  color: var(--muted-strong);
  font-size: .84rem;
  font-weight: 800;
}

.category-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.filter-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(18,26,41,.05);
  border: 1px solid transparent;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.filter-tab:hover{
  color: var(--title);
}

.filter-tab.is-active{
  color: var(--title);
  background: rgba(255,107,87,.14);
  border-color: rgba(255,107,87,.14);
}

.experts-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.experts-count{
  color: var(--muted-strong);
  font-weight: 700;
}

.experts-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expert-card{
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.8)),
    linear-gradient(135deg, rgba(255,107,87,.06), rgba(31,197,200,.05));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.expert-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(18,26,41,.11);
}

.expert-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.expert-head{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.avatar{
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,107,87,.16), rgba(255,194,71,.24));
  color: var(--title);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.badge-verified{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31,197,200,.14);
  color: var(--title);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.expert-name{
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--title);
}

.expert-role{
  margin-top: 6px;
  color: var(--muted-strong);
  font-size: .92rem;
  line-height: 1.58;
}

.expert-category{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18,26,41,.05);
  color: var(--muted-strong);
  font-size: .8rem;
  font-weight: 700;
  align-self: flex-start;
}

.expert-summary{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: .94rem;
}

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

.tag{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(18,26,41,.08);
  color: var(--muted-strong);
  font-size: .78rem;
  font-weight: 700;
}

.expert-footer{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.expert-location{
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.empty-state{
  margin-top: 20px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.68);
  border: 1px dashed rgba(18,26,41,.12);
  box-shadow: var(--shadow-soft);
}

.empty-title{
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--title);
}

.empty-text{
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.68;
}

.cta-panel{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,107,87,.16), rgba(255,194,71,.16)),
    rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.cta-copy{
  max-width: 720px;
}

.cta-title{
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--title);
}

.cta-text{
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.74;
}

.cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.faq-list{
  display: grid;
  gap: 14px;
}

.faq-item{
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  color: var(--title);
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
}

.faq-question-icon{
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}

.faq-question-icon::before,
.faq-question-icon::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--title);
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .2s ease;
}

.faq-question-icon::after{
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-question-icon::after{
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.faq-answer{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-item.is-open .faq-answer{
  grid-template-rows: 1fr;
}

.faq-answer-inner{
  overflow: hidden;
  padding: 0 24px 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.faq-item.is-open .faq-answer-inner{
  padding-bottom: 22px;
}

.contacts-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card{
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.contact-card--accent{
  background:
    linear-gradient(160deg, rgba(255,255,255,.9), rgba(31,197,200,.12)),
    rgba(255,255,255,.74);
}

.contact-label{
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-value{
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--title);
}

.contact-text{
  color: var(--muted-strong);
  line-height: 1.7;
}

.site-footer{
  padding: 18px 0 34px;
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.footer-brand{
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--title);
}

.footer-text{
  margin-top: 6px;
  color: var(--muted);
}

.footer-links{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-link,
.footer-link-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-link:hover,
.footer-link-button:hover{
  color: var(--title);
}

.modal{
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal[hidden]{
  display: none;
}

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(18,26,41,.28);
  backdrop-filter: blur(8px);
}

.modal-panel{
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    linear-gradient(145deg, rgba(255,107,87,.08), rgba(31,197,200,.06));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 32px 90px rgba(18,26,41,.20);
}

.modal-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-title{
  margin: 16px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--title);
}

.modal-subtitle{
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.modal-context{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,107,87,.1);
  color: var(--title);
  font-size: .88rem;
  font-weight: 700;
}

.icon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(18,26,41,.06);
  color: var(--title);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(18,26,41,.06);
}

.icon-btn span{
  font-size: 1.7rem;
  line-height: 1;
}

.modal-form{
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field{
  display: grid;
  gap: 10px;
}

input,
select,
textarea{
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(18,26,41,.1);
  background: rgba(255,255,255,.82);
  color: var(--title);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.46);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

textarea{
  min-height: 142px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder{
  color: #8792a2;
}

input:hover,
select:hover,
textarea:hover{
  background: rgba(255,255,255,.94);
}

input:focus,
select:focus,
textarea:focus{
  border-color: rgba(255,107,87,.34);
  background: #fff;
}

.checkbox{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.checkbox input{
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 4px;
  padding: 0;
}

.form-hint{
  color: var(--muted);
  line-height: 1.68;
  font-size: .92rem;
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  min-width: 260px;
  max-width: calc(100% - 32px);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(18,26,41,.88);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 46px rgba(18,26,41,.24);
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  z-index: 140;
}

.redirect-body{
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.redirect-main{
  width: min(640px, calc(100% - 32px));
}

.redirect-card{
  padding: 32px;
  border-radius: 32px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.redirect-card h1{
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--title);
}

@keyframes scrollCuePulse{
  0%, 100%{
    opacity: .35;
    transform: scale(.96);
  }
  50%{
    opacity: .95;
    transform: scale(1.08);
  }
}

@keyframes scrollCueBlink{
  0%, 100%{
    opacity: .2;
  }
  45%{
    opacity: .62;
  }
  70%{
    opacity: .34;
  }
}

.redirect-card p{
  margin: 0 0 22px;
  color: var(--muted-strong);
  line-height: 1.72;
}

@media (max-width: 1100px){
  :root{
    --header-offset: 96px;
  }

  .nav-toggle{
    display: inline-flex;
  }

  .nav{
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: 0 20px 44px rgba(18,26,41,.10);
  }

  .site-header.is-open .nav{
    display: flex;
  }

  .nav-link{
    justify-content: flex-start;
  }

  .hero-grid{
    grid-template-columns: 1fr;
  }

  .hero-visual{
    min-height: auto;
    justify-content: stretch;
    padding: 10px 0 18px;
  }

  .hero-visual-card{
    width: 100%;
  }

  .badge-a{
    top: -8px;
    left: 24px;
  }

  .badge-b{
    top: 24px;
    bottom: auto;
    right: 20px;
  }

  .badge-c{
    left: 30px;
    bottom: -10px;
  }

  .process-grid,
  .contacts-grid{
    grid-template-columns: 1fr;
  }

  .experts-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  .header-inner{
    min-height: 72px;
  }

  .header-cta{
    display: none;
  }

  .hero-metrics,
  .areas-grid,
  .form-grid{
    grid-template-columns: 1fr;
  }

  .floating-badge{
    display: none;
  }

  .section-note{
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .footer-inner,
  .experts-toolbar,
  .experts-meta{
    flex-direction: column;
    align-items: stretch;
  }

  .section-note{
    align-items: stretch;
  }

  .cta-actions{
    justify-content: flex-start;
  }

  .section-note .btn{
    width: 100%;
  }

  .modal-panel{
    padding: 22px;
  }
}

@media (max-width: 640px){
  :root{
    --header-offset: 90px;
  }

  .site-header{
    top: 10px;
  }

  .container{
    width: min(var(--container), calc(100% - 20px));
  }

  .section{
    padding: 52px 0;
  }

  .hero-title{
    margin-top: 16px;
  }

  .hero-actions,
  .cta-actions{
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .footer-link-button{
    width: 100%;
  }

  .hero-scroll-cue{
    width: 100%;
  }

  .hero-scroll-text{
    max-width: none;
  }

  .hero-visual{
    display: grid;
    gap: 12px;
  }

  .experts-grid{
    grid-template-columns: 1fr;
  }

  .expert-footer{
    flex-direction: column;
    align-items: stretch;
  }

  .expert-footer .btn{
    width: 100%;
  }

  .footer-links{
    width: 100%;
  }

  .footer-link,
  .footer-link-button{
    width: 100%;
    justify-content: center;
  }

  .faq-question{
    padding: 18px;
  }

  .faq-answer-inner{
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-item.is-open .faq-answer-inner{
    padding-bottom: 18px;
  }
}
