/* copaytoohigh.com — новостная платформа о финансовой грамотности
   Cabinet Grotesk + General Sans · dark/teal palette · soft rounded buttons */
:root {
  --c-ink: #2D3436;
  --c-mid: #636E72;
  --c-accent: #00B894;
  --c-accent-soft: #55EFC4;
  --c-pale: #DFE6E9;
  --c-paper: #FFFFFF;
  --c-paper-2: #F7F9FA;
  --c-line: #E3E8EA;
  --shadow-sm: 0 4px 16px -6px rgba(45,52,54,0.10);
  --shadow-md: 0 12px 32px -10px rgba(45,52,54,0.16);
  --r-card: 12px;
  --r-btn: 8px;
  --container: 1200px;
  --grid-gap: clamp(16px, 2vw, 28px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'General Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color .25s; }
a:hover { color: var(--c-ink); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.16;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .55rem; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--c-mid); font-weight: 300; }
strong { font-weight: 600; color: var(--c-ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px,9vw,120px) 0; }
.section--tight { padding: clamp(48px,6vw,80px) 0; }

.eyebrow {
  display: inline-block;
  font-family: 'General Sans', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; display: inline-block; vertical-align: middle;
  width: 28px; height: 1px; background: var(--c-accent);
  margin-right: 12px;
}
.section-title { max-width: 780px; margin-bottom: 48px; }
.section-title p { font-size: 1.05rem; }

/* soft-rounded buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  background: var(--c-accent);
  padding: 13px 26px;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { background: var(--c-ink); border-color: var(--c-ink); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn--outline:hover { background: var(--c-ink); color: #fff; }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--light:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn--small { padding: 8px 18px; font-size: .82rem; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.logo {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--c-ink);
  letter-spacing: -.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-soft));
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--c-ink);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: .92rem;
}
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--c-mid); font-size: .9rem; font-weight: 400; padding: 4px 0; position: relative; }
.nav a:hover, .nav a.active { color: var(--c-ink); }
.nav a.active::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--c-accent);
}
.nav-toggle {
  display: none; border: 1px solid var(--c-line); background: #fff; border-radius: 6px;
  padding: 8px 12px; cursor: pointer; font-size: 1.1rem; color: var(--c-ink);
}
@media (max-width: 1080px) {
  .nav { display: none; position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; align-items: flex-start; padding: 18px 24px; background: #fff; border-bottom: 1px solid var(--c-line); }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}

/* hero — minimal with abstract SVG */
.hero-minimal {
  position: relative;
  padding: clamp(80px,12vw,160px) 0 clamp(64px,9vw,120px);
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--c-paper-2) 100%);
}
.hero-minimal-svg {
  position: absolute; right: -100px; top: 5%;
  width: 720px; height: 720px;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.hero-minimal .container { position: relative; z-index: 2; max-width: 980px; }
.hero-minimal h1 { margin-bottom: 26px; }
.hero-minimal h1 em { color: var(--c-accent); font-style: normal; }
.hero-minimal p.lead { font-size: 1.2rem; max-width: 640px; margin-bottom: 36px; color: var(--c-mid); }
.hero-minimal .float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  font-size: .88rem;
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
  z-index: 3;
}
.hero-minimal .float-card .dot { width: 10px; height: 10px; background: var(--c-accent); border-radius: 50%; }
.hero-minimal .float-card strong { display: block; font-family: 'Cabinet Grotesk', sans-serif; }
.hero-minimal .float-card span { color: var(--c-mid); font-size: .82rem; }
.hero-minimal .fc-1 { right: 6%; top: 22%; }
.hero-minimal .fc-2 { right: 12%; bottom: 18%; animation-delay: -2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 1080px) { .hero-minimal .float-card { display: none; } }

/* hero — fullwidth */
.hero-fullwidth {
  padding: clamp(72px,10vw,140px) 0;
  background: linear-gradient(135deg, var(--c-paper-2) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero-fullwidth::before {
  content: '';
  position: absolute; left: -10%; top: 30%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--c-accent-soft), transparent);
  opacity: .35;
}
.hero-fullwidth::after {
  content: '';
  position: absolute; right: -8%; bottom: -10%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: .08;
}
.hero-fullwidth .container { position: relative; z-index: 2; }
.hero-fullwidth h1 { max-width: 880px; }
.hero-fullwidth .lead { max-width: 700px; font-size: 1.15rem; margin-top: 18px; }

/* hero — banner */
.hero-banner {
  padding: clamp(60px,8vw,100px) 0 clamp(36px,4vw,56px);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-paper-2);
}

/* hero — compact */
.hero-compact {
  padding: clamp(60px,8vw,100px) 0 clamp(40px,5vw,72px);
  background: linear-gradient(180deg, var(--c-paper-2), #fff);
  position: relative; overflow: hidden;
}
.hero-compact::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,184,148,0.18), transparent);
}
.hero-compact .container { position: relative; z-index: 2; }
.hero-compact .lead { max-width: 640px; font-size: 1.1rem; }

/* hero — minimal animated text */
.hero-typing {
  padding: clamp(80px,12vw,180px) 0 clamp(40px,5vw,80px);
}
.hero-typing h1 .gradient {
  background: linear-gradient(120deg,var(--c-ink),var(--c-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-typing h1 .typed-cursor {
  display: inline-block; width: 3px; background: var(--c-accent);
  margin-left: 4px; height: .85em; vertical-align: -.05em;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* hero — contact */
.hero-contact {
  padding: clamp(60px,8vw,100px) 0;
  background: linear-gradient(135deg, var(--c-ink), var(--c-mid));
  color: #fff;
}
.hero-contact h1, .hero-contact p { color: #fff; }
.hero-contact p { color: rgba(255,255,255,0.85); max-width: 620px; font-size: 1.1rem; }
.hero-contact .eyebrow { color: var(--c-accent-soft); }
.hero-contact .eyebrow::before { background: var(--c-accent-soft); }

/* hero — article */
.hero-article {
  position: relative;
  height: clamp(340px,50vh,540px);
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: #fff;
}
.hero-article img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-article::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(45,52,54,0.85));
}
.hero-article .container { position: relative; z-index: 2; padding-bottom: 36px; }
.hero-article h1 { color: #fff; max-width: 880px; }
.hero-article .meta { color: rgba(255,255,255,0.85); font-size: .9rem; }
.hero-article a { color: #fff; }

/* breadcrumb */
.breadcrumb {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  font-size: .85rem; color: var(--c-mid);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--c-accent); }
.breadcrumb span.sep { opacity: .4; }

/* grid */
.grid { display: grid; gap: var(--grid-gap); }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 920px) { .grid--3, .grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* outlined card */
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 30px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--c-accent-soft);
  color: var(--c-ink);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* portfolio */
.proj-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.proj-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proj-card:hover img { transform: scale(1.05); }
.proj-card-body {
  position: absolute; inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(45,52,54,0.92));
  color: #fff;
}
.proj-card-body h3 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.proj-card-body span { color: var(--c-accent-soft); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }

/* logo strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; }
.logo-strip .logo-item {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-mid);
  padding: 12px 22px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  background: #fff;
  transition: border-color .25s, color .25s;
}
.logo-strip .logo-item:hover { border-color: var(--c-accent); color: var(--c-ink); }

/* badges */
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  font-size: .88rem;
  color: var(--c-ink);
  font-weight: 500;
  transition: border-color .25s;
}
.badge-pill:hover { border-color: var(--c-accent); }
.badge-pill::before { content: '◆'; color: var(--c-accent); }

/* counters */
.counters { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 760px) { .counters { grid-template-columns: repeat(2,1fr); } }
.counter strong {
  display: block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(2.4rem,5vw,3.4rem);
  color: var(--c-ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.counter span { font-size: .92rem; color: var(--c-mid); display: block; margin-top: 8px; }

/* table */
table.compare, table.cookies {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  margin: 18px 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  overflow: hidden;
}
table.compare th, table.compare td,
table.cookies th, table.cookies td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
table.compare th, table.cookies th {
  background: var(--c-paper-2);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: var(--c-ink);
}
.table-wrap { overflow-x: auto; }

/* form */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  color: var(--c-ink); display: block; margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-btn);
  background: #fff;
  font-family: 'General Sans', sans-serif;
  font-size: .96rem;
  color: var(--c-ink);
  transition: border-color .25s, box-shadow .25s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0,184,148,0.18);
}
textarea { resize: vertical; min-height: 130px; }
.form-error { color: #c1373c; font-size: .82rem; min-height: 1em; display: block; margin-top: 4px; }
.form-status { padding: 14px 18px; border-radius: var(--r-btn); margin-top: 12px; display: none; }
.form-status.ok { display: block; background: var(--c-accent-soft); color: var(--c-ink); border: 1px solid var(--c-accent); }

/* hours */
.hours { display: grid; gap: 0; max-width: 480px; }
.hours-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--c-line); font-size: .96rem; }
.hours-row span:first-child { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; }
.hours-row span:last-child { color: var(--c-mid); }

/* map */
.map-frame { aspect-ratio: 16/9; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--c-line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* faq */
.faq details { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-card); padding: 0; margin-bottom: 14px; transition: border-color .25s; }
.faq details[open] { border-color: var(--c-accent); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 26px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.6rem; color: var(--c-accent); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 26px 22px; margin: 0; font-size: .98rem; }

/* article body */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2.4em; margin-bottom: .7em; }
.prose h3 { margin-top: 1.8em; margin-bottom: .55em; }
.prose p { font-size: 1.05rem; }
.prose ul { margin: 1em 0 1.4em 1.4em; list-style: disc; }
.prose ul li { margin-bottom: .4em; color: var(--c-mid); }
.prose blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  background: var(--c-paper-2);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  font-style: italic;
  color: var(--c-ink);
  font-size: 1.08rem;
}

/* author bio */
.author-bio {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  background: var(--c-paper-2);
  max-width: 760px; margin: 0 auto;
}
.author-bio img { width: 110px; height: 110px; object-fit: cover; border-radius: 50%; }
.author-bio h4 { margin-bottom: 4px; }
.author-bio .role { font-size: .8rem; color: var(--c-accent); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
@media (max-width: 540px) { .author-bio { grid-template-columns: 1fr; text-align: center; } .author-bio img { margin: 0 auto; } }

/* tags + share */
.tag-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-strip a {
  font-size: .8rem;
  padding: 7px 14px;
  background: var(--c-paper-2);
  color: var(--c-ink);
  border-radius: var(--r-btn);
}
.tag-strip a:hover { background: var(--c-accent-soft); }

.share-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.share-buttons a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: var(--c-ink);
  transition: all .25s;
}
.share-buttons a:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

/* article cards */
.article-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.article-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.article-card img { aspect-ratio: 16/10; object-fit: cover; }
.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.article-card-body .tag { font-size: .75rem; color: var(--c-accent); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.article-card-body h3 { font-size: 1.18rem; }
.article-card-body p { font-size: .92rem; }
.article-card-body .more { margin-top: auto; padding-top: 12px; }

/* comments */
.comments-list { display: grid; gap: 22px; }
.comment {
  padding: 22px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  background: #fff;
}
.comment-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-head img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.comment-head strong { display: block; font-size: .92rem; }
.comment-head span { font-size: .78rem; color: var(--c-mid); }

/* split */
.split { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.sidebar {
  position: sticky; top: 100px;
  align-self: start;
  background: var(--c-paper-2);
  border-radius: var(--r-card);
  padding: 24px;
}
.sidebar h4 { margin-bottom: 12px; }
.sidebar ul { display: grid; gap: 8px; }
.sidebar a { font-size: .92rem; color: var(--c-mid); display: block; padding: 4px 0; }
.sidebar a:hover { color: var(--c-ink); }

/* about-split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }
.about-split img { border-radius: var(--r-card); aspect-ratio: 4/5; object-fit: cover; }

/* events */
.events-list { display: grid; gap: 18px; }
.event {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  transition: border-color .25s, transform .25s;
}
.event:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.event-date {
  text-align: center;
  background: var(--c-paper-2);
  border-radius: var(--r-card);
  padding: 12px;
}
.event-date strong { display: block; font-family: 'Cabinet Grotesk', sans-serif; font-size: 1.6rem; color: var(--c-ink); line-height: 1; }
.event-date span { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--c-mid); margin-top: 4px; display: block; }
.event-body h4 { margin-bottom: 6px; }
.event-body p { font-size: .92rem; margin: 0; }
@media (max-width: 620px) { .event { grid-template-columns: 1fr; } }

/* timeline */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: var(--c-pale); }
.timeline-step { position: relative; padding-bottom: 32px; }
.timeline-step::before { content: ''; position: absolute; left: -28px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--c-accent); }
.timeline-step h4 { margin-bottom: 6px; }

/* journey */
.journey { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
@media (max-width: 880px) { .journey { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .journey { grid-template-columns: 1fr; } }
.journey-step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 22px;
}
.journey-step .num { display: block; color: var(--c-accent); font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.journey-step h4 { font-size: 1rem; margin-bottom: 6px; }
.journey-step p { font-size: .88rem; margin: 0; }

/* video */
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--c-line);
}
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; }

/* CTA banner */
.cta-banner {
  padding: clamp(48px,7vw,80px) 0;
  background: var(--c-ink);
  color: #fff;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; left: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,184,148,0.4), transparent);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2, .cta-banner p { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 26px; font-size: 1.1rem; }

/* live chat (decorative) */
.live-chat {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-md);
  max-width: 480px;
  margin: 0 auto;
}
.live-chat-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; border-bottom: 1px solid var(--c-line); margin-bottom: 18px;
}
.live-chat-head img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.live-chat-head strong { display: block; }
.live-chat-head span { font-size: .82rem; color: var(--c-accent); }
.live-chat-head span::before { content: '●'; margin-right: 6px; }
.live-chat-msg {
  background: var(--c-paper-2);
  padding: 12px 16px;
  border-radius: 14px 14px 14px 4px;
  font-size: .94rem;
  margin-bottom: 12px;
  max-width: 85%;
}
.live-chat-input { display: flex; gap: 8px; margin-top: 14px; }
.live-chat-input input { flex: 1; padding: 10px 14px; }
.live-chat-input button { padding: 10px 18px; }

/* fab */
.fab-stack { position: fixed; right: 22px; bottom: 88px; display: flex; flex-direction: column; gap: 12px; z-index: 60; }
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .25s, background .25s;
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700;
}
.fab:hover { background: var(--c-ink); transform: translateY(-2px); color: #fff; }

/* mega-footer block */
.mega-footer-block {
  background: var(--c-ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px,7vw,90px) 0;
}
.mega-footer-block h2, .mega-footer-block p { color: #fff; }
.mega-footer-block p { color: rgba(255,255,255,0.85); }
.mega-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .mega-footer-grid { grid-template-columns: 1fr; } }
.mega-footer-block ul { display: grid; gap: 10px; }
.mega-footer-block a { color: rgba(255,255,255,0.85); }
.mega-footer-block a:hover { color: var(--c-accent-soft); }
.mega-footer-block h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 14px; font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; }

/* legal */
.legal-toc { background: var(--c-paper-2); border-radius: var(--r-card); padding: 26px 30px; margin-bottom: 40px; }
.legal-toc h4 { margin-bottom: 14px; }
.legal-toc ol { display: grid; gap: 6px; counter-reset: toc; }
.legal-toc li { counter-increment: toc; padding-left: 32px; position: relative; font-size: .92rem; }
.legal-toc li::before { content: counter(toc) '.'; position: absolute; left: 0; font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; color: var(--c-accent); }
.legal-section h2 { margin-top: 2em; }
.legal-section h2:first-child { margin-top: 0; }

/* download cta */
.download-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 28px 32px;
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-card);
  flex-wrap: wrap;
  margin: 32px 0;
}
.download-cta h3 { color: #fff; margin-bottom: 4px; }
.download-cta p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.download-cta .btn { background: var(--c-accent); border-color: var(--c-accent); }
.download-cta .btn:hover { background: var(--c-accent-soft); border-color: var(--c-accent-soft); color: var(--c-ink); }

/* social grid */
.social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 760px) { .social-grid { grid-template-columns: repeat(2,1fr); } }
.social-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 26px;
  text-align: center;
  transition: border-color .25s, transform .25s;
  display: block;
}
.social-item:hover { border-color: var(--c-accent); transform: translateY(-3px); color: var(--c-ink); }
.social-item .ico {
  width: 48px; height: 48px; margin: 0 auto 12px;
  background: var(--c-paper-2); border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; color: var(--c-accent);
}
.social-item strong { display: block; font-family: 'Cabinet Grotesk', sans-serif; }
.social-item span { font-size: .82rem; color: var(--c-mid); }

/* footer */
.site-footer { background: var(--c-ink); color: rgba(255,255,255,0.7); padding: 80px 0 32px; font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 16px; font-family: 'Cabinet Grotesk', sans-serif; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: #fff; }
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; font-size: .82rem; }
.footer-legal nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* cookie banner */
.cookie-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px;
  max-width: 720px; margin: 0 auto;
  background: var(--c-ink); color: #fff;
  padding: 18px 22px;
  border-radius: var(--r-card);
  display: none;
  align-items: center; justify-content: space-between; gap: 18px;
  z-index: 999;
  box-shadow: var(--shadow-md);
  font-size: .92rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--c-accent-soft); }
.cookie-banner button {
  background: var(--c-accent); color: #fff;
  border: none; padding: 10px 22px; border-radius: var(--r-btn);
  font-family: 'General Sans', sans-serif; font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 540px) { .cookie-banner { flex-direction: column; align-items: stretch; } }

/* utility */
.text-center { text-align: center; }
.muted { color: var(--c-mid); }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-1 { animation: fadeUp .85s cubic-bezier(.2,.7,.3,1) .05s both; }
.fade-in-2 { animation: fadeUp .85s cubic-bezier(.2,.7,.3,1) .25s both; }
.fade-in-3 { animation: fadeUp .85s cubic-bezier(.2,.7,.3,1) .45s both; }
