
  @font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Archivo.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Inter.woff2') format('woff2');
  }
  :root {
    --navy: #1E2761;
    --navy-2: #2D3F7A;
    --orange: #F26B38;
    --ice: #CADCFC;
    --bg: #F8F9FB;
    --white: #FFFFFF;
    --ink: #1a2142;
    --ink-soft: #3D3D3D;
    --line: #E3E7F0;
    --maxw: 1140px;
    --display: 'Archivo', system-ui, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }
  #doradztwo, #omnie { scroll-margin-top: 80px; }

  body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

  .eyebrow {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
  }

  h2.section-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-top: 0.5rem;
  }

  .section-intro {
    color: var(--ink-soft);
    max-width: 620px;
    margin-top: 0.9rem;
    font-size: 1.05rem;
  }

  /* ---------- NAV ---------- */
  header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    font-family: var(--display);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    text-decoration: none;
  }
  .brand span { color: var(--orange); }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.93rem;
    font-weight: 500;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    font-family: var(--display);
    font-weight: 600;
    background: var(--orange);
    color: var(--white) !important;
    padding: 9px 18px;
    border-radius: 2px;
    font-size: 0.9rem !important;
  }
  .nav-cta:hover { background: #e35e2c; }
  .nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; margin: -8px -8px -8px 0; background: none; border: none; cursor: pointer; }
  .nav-toggle span { display: block; width: 24px; height: 2px; margin: 0 auto; background: var(--navy); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---------- HERO ---------- */
  .hero {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 500px at 85% -10%, rgba(45,63,122,0.9), transparent 60%),
      radial-gradient(600px 400px at 0% 110%, rgba(242,107,56,0.10), transparent 55%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 92px 28px 84px;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 56px;
    align-items: center;
    position: relative;
  }
  .hero .eyebrow { color: var(--ice); }
  .hero-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    color: var(--ice);
  }
  .hero h1 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.7rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 12px 0 0;
  }
  .hero h1 .h1-sub {
    display: block;
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.05rem, 1.9vw, 1.35rem);
    letter-spacing: 0.01em;
    color: var(--ice);
    margin-top: 14px;
    line-height: 1.3;
  }
  .hero .lead {
    color: var(--ice);
    font-size: clamp(1.1rem, 1.7vw, 1.3rem);
    margin-top: 22px;
    max-width: 36ch;
    line-height: 1.5;
  }
  .creds {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
    margin-top: 30px;
  }
  .cred {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(202,220,252,0.35);
    color: var(--ice);
    padding: 7px 13px;
    border-radius: 2px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    font-family: var(--display);
    font-weight: 600;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 2px;
    font-size: 1rem;
    transition: transform 0.15s, background 0.15s;
  }
  .hero-cta:hover { background: #e35e2c; transform: translateX(3px); }
  .prog-cta { text-align: center; margin-top: 34px; }
  .offer-cta { text-align: center; margin-top: 56px; }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--display); font-weight: 600;
    background: var(--orange); color: var(--white); text-decoration: none;
    padding: 15px 32px; border-radius: 2px; font-size: 1.05rem;
    transition: transform 0.15s, background 0.15s;
  }
  .cta-btn:hover { background: #e35e2c; }
  .cta-btn .arr { transition: transform 0.15s; }
  .cta-btn:hover .arr { transform: translateX(4px); }
  .hero-cta .arr { transition: transform 0.15s; }
  .hero-cta:hover .arr { transform: translateX(4px); }

  .hero-photo {
    position: relative;
    justify-self: end;
  }
  .hero-photo img {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 3px;
    position: relative;
    z-index: 2;
  }
  .hero-photo::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 22px;
    bottom: -16px;
    left: 22px;
    border: 2px solid var(--orange);
    border-radius: 3px;
    z-index: 1;
  }

  /* ---------- O MNIE ---------- */
  .foryou { padding: 88px 0; background: var(--bg); }
  .fy-title { margin-bottom: 34px; }
  .fy-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 44px; }
  .fy-list li { position: relative; padding-left: 36px; color: var(--ink); font-size: 1.06rem; line-height: 1.5; }
  .fy-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 0.82rem; line-height: 23px; text-align: center; font-weight: 700; }
  @media (max-width: 700px) { .fy-list { grid-template-columns: 1fr; gap: 15px; } }
  .about { padding: 96px 0; background: var(--white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 34px;
  }
  .about-body p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.06rem; }
  .about-body p strong { color: var(--ink); font-weight: 600; }
  .pullquote {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    line-height: 1.25;
    color: var(--navy);
    letter-spacing: -0.01em;
    border-left: 4px solid var(--orange);
    padding-left: 22px;
  }
  .quals { margin-top: 0; }
  .quals-label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: var(--orange); margin-bottom: 16px; }
  .quals ul { list-style: none; display: grid; gap: 13px; }
  .quals li { position: relative; padding-left: 20px; color: var(--ink-soft); line-height: 1.4; }
  .quals li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
  .qn { font-family: var(--display); font-weight: 600; color: var(--navy); }
  .qn em { font-style: normal; font-weight: 600; color: var(--ink-soft); }
  .qi::before { content: "—"; margin: 0 0.45em; opacity: 0.55; }
  .cert-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
  .cert-thumbs .ct {
    display: flex; align-items: center; justify-content: center;
    height: 190px; padding: 10px; cursor: zoom-in;
    background: var(--white); border: 1px solid var(--line); border-radius: 4px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  }
  .cert-thumbs .ct:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,39,97,0.13); border-color: var(--orange); }
  .cert-thumbs .ct img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
  .lb { position: fixed; inset: 0; z-index: 200; background: rgba(30,39,97,0.94); display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 28px; }
  .lb[hidden] { display: none; }
  .lb img { max-width: 92vw; max-height: 78vh; object-fit: contain; border-radius: 3px; box-shadow: 0 18px 50px rgba(0,0,0,0.45); background: #fff; }
  .lb-cap { color: var(--ice); font-family: var(--display); font-weight: 600; font-size: 0.95rem; margin-top: 18px; text-align: center; }
  .lb button { position: absolute; background: none; border: none; color: #fff; cursor: pointer; font-family: var(--display); line-height: 1; padding: 10px 16px; opacity: 0.75; transition: opacity 0.15s; }
  .lb button:hover { opacity: 1; }
  .lb-close { top: 14px; right: 18px; font-size: 2.4rem; }
  .lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 3rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }

  /* ---------- WYNIKI ---------- */
  .results { padding: 96px 0; background: var(--bg); }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 40px;
  }
  .stat {
    background: var(--white);
    padding: 34px 30px;
  }
  .stat .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.6rem, 4.5vw, 3.4rem);
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat .lab {
    font-family: var(--display);
    font-weight: 600;
    color: var(--orange);
    font-size: 0.95rem;
    margin-top: 10px;
  }
  .stat .desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: 6px; line-height: 1.45; }
  .scale-strip {
    margin-top: 28px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-style: italic;
    border-left: 3px solid var(--ice);
    padding-left: 16px;
  }

  /* ---------- REFERENCJE ---------- */
  .refs { padding: 96px 0; background: var(--navy); }
  .refs .section-title { color: var(--white); }
  .refs .section-intro { color: var(--ice); }
  .refs .refs-note { color: var(--ice); }
  .refs .refs-note a { color: var(--white); text-decoration: underline; }
  .refs .refs-note a:hover { color: var(--orange); }
  .refs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 44px;
  }
  .ref-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    border-radius: 3px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
  }
  .ref-card .mark {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 0.7;
    color: var(--ice);
    margin-bottom: 14px;
  }
  .ref-card .quote {
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.55;
    font-style: italic;
    flex: 1;
  }
  .ref-card .who {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--ink-soft);
  }
  .ref-card .wn { display: block; font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 0.98rem; margin-bottom: 2px; }
  .refs-note {
    margin-top: 28px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-style: italic;
    text-align: center;
  }

  /* ---------- CZYM JEST LEAN ---------- */
  .lean { padding: 96px 0; background: var(--white); }
  .lean-def { max-width: 880px; margin-top: 40px; }
  .lean-def p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1.1rem; }
  .lean-def .lean-emph { color: var(--navy); font-weight: 600; font-family: var(--display); font-size: 1.15rem; }
  .benefits { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .benefit { background: var(--bg); border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: 3px; padding: 20px; }
  .benefit h4 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.02rem; margin-bottom: 6px; }
  .benefit p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.45; }

  /* ---------- OFERTA ---------- */
  .offer { padding: 96px 0; background: var(--bg); }
  .part-label { margin-top: 54px; display: flex; align-items: center; gap: 14px; font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.02rem; letter-spacing: 0.03em; text-transform: uppercase; }
  .part-label.part2 { margin-top: 74px; padding-top: 50px; border-top: 1px solid var(--line); }
  .part-num { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--orange); }
  .part-title { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: clamp(1.5rem,3vw,2.1rem); letter-spacing: -0.01em; margin-top: 10px; }
  .part-lead { color: var(--ink-soft); font-size: 1.06rem; max-width: 740px; margin-top: 12px; }

  .program-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
  .pstat { background: var(--navy); border-radius: 4px; padding: 26px; text-align: center; }
  .pnum { font-family: var(--display); font-weight: 800; font-size: 2.6rem; color: var(--orange); line-height: 1; }
  .plab { font-family: var(--display); font-weight: 600; color: var(--white); font-size: 0.95rem; margin-top: 8px; }

  .modules { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
  .module { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 24px 26px; }
  .mod-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
  .mod-num { font-family: var(--display); font-weight: 800; color: var(--ice); font-size: 1.3rem; flex-shrink: 0; }
  .mod-head h4 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.1rem; letter-spacing: -0.01em; }
  .module ul { list-style: none; }
  .module li { color: var(--ink-soft); font-size: 0.96rem; padding: 5px 0 5px 22px; position: relative; }
  .module li::before { content: ""; position: absolute; left: 0; top: 12px; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

  .prog-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
  .pc-title { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.15rem; margin-bottom: 14px; }
  .checklist { list-style: none; }
  .checklist li { color: var(--ink-soft); font-size: 1rem; padding: 7px 0 7px 28px; position: relative; }
  .checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
  .finalwork { margin-top: 28px; background: var(--white); border-left: 4px solid var(--orange); padding: 16px 20px; border-radius: 3px; color: var(--ink-soft); font-size: 1rem; }
  .finalwork strong { color: var(--navy); }

  .delivery { margin-top: 40px; }
  .delivery-lead { color: var(--ink-soft); margin-bottom: 16px; }
  .delivery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
  .ditem { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--orange); border-radius: 3px; padding: 16px 14px; text-align: center; font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 0.95rem; }
  .note-modules { margin-top: 24px; color: var(--ink-soft); font-style: italic; font-size: 0.96rem; }

  .cases { padding: 96px 0; background: var(--white); }
  .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
  .case-card { background: var(--bg); border: 1px solid var(--line); border-left: 5px solid var(--orange); border-radius: 4px; padding: 26px 26px 22px; display: flex; flex-direction: column; }
  .case-title { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.06rem; line-height: 1.25; }
  .case-ctx { font-family: var(--display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.8; margin-top: 6px; margin-bottom: 18px; }
  .case-row { margin-bottom: 14px; }
  .case-row .lab { display: block; font-family: var(--display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange); margin-bottom: 3px; }
  .case-row p { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.5; }
  .case-row.eff { margin-top: auto; margin-bottom: 0; padding-top: 14px; border-top: 1px solid var(--line); }
  .case-row.eff p { color: var(--ink); }
  .cases-note { margin-top: 26px; font-size: 0.93rem; color: var(--ink-soft); }
  .advisory { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
  .adv-card { background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--navy); border-radius: 4px; padding: 26px 28px; transition: transform 0.18s, box-shadow 0.18s; }
  .adv-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30,39,97,0.08); }
  .adv-card h4 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.16rem; margin-bottom: 8px; letter-spacing: -0.01em; }
  .adv-card p { color: var(--ink-soft); font-size: 0.98rem; }

  /* ---------- KONTAKT ---------- */
  .contact { background: var(--navy); color: var(--white); padding: 92px 0; position: relative; overflow: hidden; }
  .contact::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(700px 400px at 90% 120%, rgba(242,107,56,0.12), transparent 60%);
  }
  .contact-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; column-gap: 48px; row-gap: 28px; align-items: start; }
  .contact-text { grid-column: 1; grid-row: 1; }
  .contact-card { grid-column: 2; grid-row: 1 / span 2; }
  .contact-alt  { grid-column: 1; grid-row: 2; align-self: start; margin-top: 4px; padding-top: 26px; border-top: 1px solid rgba(202,220,252,0.18); }
  .contact h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .contact .accent { color: var(--orange); font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin-top: 18px; }
  .contact .sub { color: var(--ice); margin-top: 14px; max-width: 42ch; }
  .contact-card { background: var(--navy-2); border-radius: 4px; padding: 34px; }
  .crow { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(202,220,252,0.18); }
  .crow:last-child { border-bottom: none; }
  .crow .k { font-family: var(--display); font-weight: 600; color: var(--orange); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; width: 78px; flex-shrink: 0; }
  .crow a, .crow span { color: var(--white); text-decoration: none; font-size: 1.02rem; overflow-wrap: anywhere; word-break: normal; }
  .crow a:hover { color: var(--ice); }
  .crow-li { align-items: center; }
  .li-icon { display: inline-flex; align-items: center; color: var(--white); transition: color 0.15s ease; }
  .li-icon:hover { color: var(--ice); }
  .nojs { color: var(--white); font-size: 1.02rem; }
  .lead-form { display: grid; gap: 14px; }
  .form-title { font-family: var(--display); font-weight: 700; color: var(--white); font-size: 1.2rem; margin-bottom: 2px; }
  .field { display: grid; gap: 5px; }
  .field label { font-size: 0.82rem; color: var(--ice); letter-spacing: 0.02em; }
  .field .opt { color: rgba(202,220,252,0.55); font-size: 0.78rem; }
  .lead-form input, .lead-form textarea {
    width: 100%; box-sizing: border-box;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(202,220,252,0.22);
    border-radius: 4px; padding: 11px 13px;
    color: var(--white); font-family: var(--body); font-size: 1rem;
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .lead-form input:focus, .lead-form textarea:focus {
    outline: none; border-color: var(--orange); background: rgba(255,255,255,0.09);
  }
  .lead-form textarea { resize: vertical; min-height: 96px; }
  .lead-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .form-btn {
    margin-top: 4px; justify-self: start;
    background: var(--orange); color: #fff; border: none;
    font-family: var(--display); font-weight: 700; font-size: 1rem;
    padding: 12px 26px; border-radius: 4px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity 0.15s ease;
  }
  .form-btn:hover { opacity: 0.92; }
  .form-btn:disabled { opacity: 0.6; cursor: default; }
  .form-btn .arr { transition: transform 0.15s ease; }
  .form-btn:hover .arr { transform: translateX(3px); }
  .form-status { font-size: 0.92rem; min-height: 1em; }
  .form-status.ok { color: var(--ice); }
  .form-status.err { color: #ff9b7a; }
  .form-consent { font-size: 0.78rem; line-height: 1.45; color: rgba(202,220,252,0.7); margin-top: 6px; }
  .form-consent a { color: var(--ice); text-decoration: underline; }
  .form-consent a:hover { color: #fff; }
  .form-success { text-align: center; padding: 18px 6px 6px; }
  .fs-check { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.7rem; line-height: 54px; font-weight: 700; }
  .fs-title { font-family: var(--display); font-weight: 700; color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
  .fs-text { color: var(--ice); font-size: 0.98rem; line-height: 1.55; }


  footer.foot { background: var(--navy); color: var(--ice); text-align: center; padding: 26px; font-size: 0.85rem; border-top: 1px solid rgba(202,220,252,0.15); }
  footer.foot a { color: var(--ice); text-decoration: underline; }
  footer.foot a:hover { color: #fff; }

  /* ---------- reveal ---------- */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 860px) {
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .nav-toggle { display: flex; }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 6px 0 10px;
      background: var(--white);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(30,39,97,0.10);
      display: none;
    }
    .nav-links.open,
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 14px 28px; font-size: 1rem; }
    .nav-cta { margin: 10px 28px 4px; text-align: center; padding: 13px 18px; font-size: 1rem !important; border-radius: 2px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 28px 64px; }
    .hero-photo { justify-self: start; order: -1; }
    .hero-photo img { max-width: 240px; }
    .hero-photo::after { left: 16px; right: -10px; }
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .refs-grid { grid-template-columns: 1fr; gap: 18px; }
    .modules { grid-template-columns: 1fr; }
    .prog-cols { grid-template-columns: 1fr; gap: 28px; }
    .delivery-grid { grid-template-columns: 1fr 1fr; }
    .case-grid { grid-template-columns: 1fr 1fr; }
    .advisory { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; column-gap: 0; row-gap: 32px; }
    .contact-text, .contact-card, .contact-alt { grid-column: 1; grid-row: auto; align-self: auto; }
    .contact-alt { padding-top: 24px; border-top: 1px solid rgba(202,220,252,0.18); }
  }
  @media (max-width: 520px) {
    body { font-size: 16px; }
    .cert-thumbs .ct { height: 140px; }
    .contact-card { padding: 24px; }
    .crow { flex-direction: column; align-items: stretch; gap: 4px; padding: 12px 0; }
    .crow-li { align-items: stretch; }
    .crow .k { width: auto; }
    .case-grid { grid-template-columns: 1fr; }
    .benefits { grid-template-columns: 1fr; }
    .program-stats { grid-template-columns: 1fr; }
    .delivery-grid { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { transition: none; opacity: 1; transform: none; }
    .hero-cta, .adv-card { transition: none; }
  }
