/* ============================================================
   CyFun Landing Page — style.css
   Design: dark hero + white sections, green #339911 accent
   Fonts: Montserrat (headings) + Mulish (body), self-hosted
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-400-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-600-latin.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-700-latin.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/mulish-400-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/mulish-700-latin.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Custom Properties ---------- */
:root {
  --green:        #339911;
  --green-hover:  #2b800e;
  --green-light:  rgba(51,153,17,0.12);
  --green-glow:   rgba(51,153,17,0.25);
  --dark:         #111111;
  --dark2:        #1a1a1a;
  --dark3:        #222222;
  --text:         #333333;
  --text-muted:   #666666;
  --bg-alt:       #f6f7f5;
  --white:        #ffffff;
  --blue:         #2980b9;
  --orange:       #e67e22;
  --red:          #c0392b;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
  --transition:   0.25s ease;
  --font-head:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Mulish',     -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:        68px;
  --section-pad:  96px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* prefers-reduced-motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  html { scroll-behavior: auto; }
  .browser-frame { transition: none; }
  .context-image:hover img,
  .contact-image-wrap:hover img,
  .resource-card:hover { transform: none; }
}

/* ---------- Utility ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); box-shadow: 0 4px 16px var(--green-glow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover { background: var(--green-light); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green);
  color: white;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Global focus styles (WCAG 2.1 AA) ---------- */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(51,153,17,.15);
  padding: 10px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  padding: 4px 18px;
  white-space: nowrap;
}
.trust-bar__icon { font-size: .85rem; line-height: 1; }
.trust-bar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-bar__item { padding: 4px 10px; font-size: .68rem; }
  .trust-bar__sep { display: none; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }
.nav__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { width: 34px; height: 34px; }
.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.nav--active { color: var(--green); }
.nav__lang {
  display: flex;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 7px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-head);
  letter-spacing: .05em;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.nav__cta { flex-shrink: 0; }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
/* Decorative shield in background */
.hero__bg-deco {
  position: absolute;
  pointer-events: none;
  filter: saturate(0) brightness(1.8);
  user-select: none;
}
.hero__bg-deco--right {
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 640px;
  opacity: .09;
}
.hero__bg-deco--left {
  left: -100px; top: 5%;
  transform: rotate(25deg);
  width: 36%;
  max-width: 460px;
  opacity: .05;
}
.hero__bg-deco--bottom {
  left: 5%; bottom: -100px;
  transform: rotate(-20deg);
  width: 30%;
  max-width: 380px;
  opacity: .04;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__left {}
.hero__eyebrow {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero__title span { color: var(--white); }
.hero__title span.hero__title-accent { color: var(--green); }
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Green accent line under title */
.hero__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green);
  margin-top: 20px;
}

/* Browser frame mockup */
.hero__right { display: flex; justify-content: flex-end; }
.browser-frame {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  background: #1a1a1a;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.browser-frame:hover { transform: perspective(900px) rotateY(0deg) rotateX(0deg); }
.browser-chrome {
  background: #2a2a2a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #444;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--font-head);
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}
/* Mock tool UI inside the frame */
.mock-ui {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 340px;
  font-family: var(--font-head);
}
.mock-sidebar {
  background: #151515;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,.05);
}
.mock-sidebar-header {
  padding: 0 14px 14px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 10px;
}
.mock-nav-item {
  padding: 7px 14px;
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: 7px;
}
.mock-nav-item.active {
  background: rgba(51,153,17,.15);
  color: var(--green);
  font-weight: 700;
}
.mock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.mock-main { overflow: hidden; }
.mock-hero-panel {
  background: linear-gradient(135deg, #1a3a10 0%, #0f2008 100%);
  padding: 18px 20px;
  position: relative;
}
.mock-hero-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.mock-hero-title span { color: var(--green); }
.mock-hero-sub {
  font-size: .58rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
  max-width: 200px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mock-stat {
  padding: 8px 6px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.04);
}
.mock-stat:last-child { border-right: none; }
.mock-stat-val {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
}
.mock-stat-lbl {
  font-size: .5rem;
  color: rgba(255,255,255,.3);
}
.mock-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0,0,0,.2);
  padding: 10px;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.mock-step {
  background: rgba(255,255,255,.04);
  border-radius: 4px;
  padding: 8px 6px;
  text-align: center;
}
.mock-step-num {
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  font-size: .55rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
}
.mock-step-label {
  font-size: .55rem;
  font-weight: 700;
  color: var(--white);
}
.mock-step-sub {
  font-size: .48rem;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
  line-height: 1.3;
}
.mock-content-area {
  padding: 14px;
  background: #f5f5f5;
}
.mock-section-title {
  font-size: .65rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.mock-org-empty {
  text-align: center;
  padding: 20px 10px;
}
.mock-org-icon {
  width: 28px; height: 28px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
}
.mock-org-text {
  font-size: .55rem;
  color: #aaa;
}
.mock-new-btn {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: .58rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  float: right;
  margin-top: -22px;
}

/* ---------- Section: Context (NIS2 & CyFun) ---------- */
.section-context {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.context-content .section-title { max-width: 520px; }
.context-cards { display: flex; flex-direction: column; gap: 28px; }
.context-card {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
  background: var(--bg-alt);
}
.context-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.context-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.context-card .card-links {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.context-card .card-link {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
}
.context-card .card-link:hover { text-decoration: underline; }
.context-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.context-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.context-image:hover img {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

/* ---------- Section: Framework ---------- */
.section-framework {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-framework .eyebrow,
.section-framework .section-title { color: var(--white); }
.section-framework .section-subtitle { color: rgba(255,255,255,.55); }
.fw-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
.fw-stat {
  background: rgba(255,255,255,.03);
  padding: 28px 16px;
  text-align: center;
  transition: background var(--transition);
}
.fw-stat:hover { background: rgba(51,153,17,.12); }
.fw-stat-val {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.fw-stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  font-family: var(--font-head);
}
.fw-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fw-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.fw-caption {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 14px;
  font-style: italic;
}

/* ---------- Section: Assurance Levels ---------- */
.section-levels {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}
.levels-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.level-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.level-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.level-card--basic    { border-color: var(--blue); }
.level-card--important { border-color: var(--orange); }
.level-card--essential { border-color: var(--red); }
.level-card__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.level-card--basic    .level-card__badge { background: rgba(41,128,185,.12); color: var(--blue); }
.level-card--important .level-card__badge { background: rgba(230,126,34,.12); color: var(--orange); }
.level-card--essential .level-card__badge { background: rgba(192,57,43,.12); color: var(--red); }
.level-card__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.level-card__tag {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-style: italic;
}
.level-card__body {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}
.level-card__cta {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
}
.level-card__cta--basic     { color: var(--blue); }
.level-card__cta--important { color: var(--orange); }
.level-card__cta--essential { color: var(--red); }
.level-card__cta:hover { text-decoration: underline; }
.levels-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.levels-table-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.levels-table-caption {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ---------- Section: How it Works ---------- */
.section-how {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connector line — runs between centres of circle 1 and circle 4 */
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px; /* half of 56px circle height */
  left: calc(12.5% + 28px);  /* centre of col-1 + radius */
  right: calc(12.5% + 28px); /* centre of col-4 + radius */
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(51,153,17,.3));
  z-index: 0;
}
.how-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step__num {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px var(--green-glow);
}
.how-step__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-step__body {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- Section: Pricing ---------- */
.section-pricing {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(51,153,17,.08) 0%, transparent 70%);
  pointer-events: none;
}
.section-pricing .eyebrow,
.section-pricing .section-title { color: var(--white); }
.section-pricing .section-subtitle { color: rgba(255,255,255,.55); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}
.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}
.pricing-grid .pricing-card {
  padding: 32px 20px;
}
.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: border-color var(--transition), background var(--transition);
}
.pricing-card--featured {
  background: rgba(51,153,17,.1);
  border-color: var(--green);
  position: relative;
}
.pricing-card__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: var(--green);
  color: var(--white);
}
.pricing-card--soon .pricing-card__badge {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
}
.pricing-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__price { color: var(--green); }
.pricing-card__period {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
}
.pricing-card__features {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  line-height: 1.4;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card--soon .pricing-card__features li::before { color: rgba(255,255,255,.3); }

/* ---------- Section: Disclaimer ---------- */
.section-disclaimer {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(0,0,0,.06);
}
.disclaimer-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.disclaimer-box .section-title { font-size: 1.3rem; margin-bottom: 16px; }
.disclaimer-box p {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ---------- Section: Contact ---------- */
.section-contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-muted);
}
.contact-detail .label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  font-size: .82rem;
  min-width: 60px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.contact-link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-link:hover { text-decoration: underline; }
.contact-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ---------- What's at stake bar ---------- */
.stakes-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}
.stakes-bar__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.stakes-bar__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stakes-bar__label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.stakes-bar__fines {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stakes-bar__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.stakes-bar__val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.stakes-bar__desc {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-head);
  white-space: nowrap;
}
.stakes-bar__sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.stakes-bar__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.stakes-bar__cta-text {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.stakes-bar__link {
  align-self: flex-start;
}
.stakes-bar__link:hover { text-decoration: none; }

@media (max-width: 900px) {
  .stakes-bar__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stakes-bar__right { flex-wrap: wrap; }
}

/* ---------- Section: Resources ---------- */
.section-resources {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--green);
  transition: transform .25s ease, box-shadow .25s ease;
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.resource-card__icon { font-size: 1.6rem; }
.resource-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.resource-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.resource-link {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.resource-link:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark2);
  padding: 56px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-head);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--green); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  font-family: var(--font-head);
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-family: var(--font-head);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--green); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --section-pad: 64px; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__right { justify-content: center; }
  .browser-frame { transform: none; max-width: 480px; width: 100%; }

  .context-grid { grid-template-columns: 1fr; }
  .context-image { order: -1; }

  .fw-stats { grid-template-columns: repeat(3, 1fr); }

  .levels-cards { grid-template-columns: 1fr; }

  .how-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .how-steps::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .pricing-card { padding: 40px 36px; }

  .contact-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--dark2);
    flex-direction: column;
    padding: 20px 32px 28px;
    gap: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
  }
  .nav__links--open { display: flex; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
  }
  .nav__toggle span {
    display: block;
    width: 22px; height: 2px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    transition: var(--transition);
  }
  .nav__cta { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card { padding: 32px 24px; }
  .fw-stats { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .container { padding: 0 20px; }
}
