
  :root {
    --white:    #FFFFFF;
    --pale:     #D5EAFA;
    --sky:      #6BB5EC;
    --navy:     #2E497C;
    --deep:     #133657;
    --mid:      #1a2e4a;
    --text:     #0e1f35;
    --muted:    #5a7a9a;
    --border:   rgba(46,73,124,0.15);
    --sans:     'Inter', sans-serif;
    --display:  'Ysabeau Infant', serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--white);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  /* ── LAYOUT ── */
  .wrap  { max-width: 1040px; margin: 0 auto; padding: 0 48px; }
  .wrap--sm { max-width: 760px; margin: 0 auto; padding: 0 48px; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 88px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  /* SVG Logo inline */
  .logo-svg-full {
    height: 68px;
    width: auto;
    flex-shrink: 0;
    display: block;
  }
  @media (max-width: 720px) {
    .logo-svg-full { height: 48px; }
  }
  .nav-cta {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.18s;
  }
  .nav-cta:hover { background: var(--deep); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(180deg, #E9F3FF 0%, #D5EAFA 100%);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
  }
  /* background circle decoration */
  .hero::before {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 600px; height: 600px;
    border: 1px solid rgba(46,73,124,0.1);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    right: 40px; top: 80px;
    width: 320px; height: 320px;
    border: 1px solid rgba(46,73,124,0.07);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .hero-badge span {
    display: block; width: 5px; height: 5px;
    border-radius: 50%; background: var(--sky);
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero h1 {
    font-family: var(--display);
    font-size: clamp(52px, 6.5vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--deep);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--navy);
  }
  .hero-lead {
    font-size: 17px; font-weight: 400;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 56px;
  }
  .hero-stats {
    display: flex; gap: 0;
    border-top: 1px solid rgba(46,73,124,0.15);
    margin-bottom: 48px;
  }
  .hero-stat {
    padding: 24px 40px 24px 0;
    margin-right: 40px;
    border-right: 1px solid rgba(46,73,124,0.12);
  }
  .hero-stat:last-child { border-right: none; }
  .stat-val {
    font-family: var(--display);
    font-size: 28px; font-weight: 300;
    color: var(--deep);
    display: block;
    line-height: 1.1;
    margin-bottom: 3px;
  }
  .stat-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
  }
  .hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--navy);
    color: var(--white);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.18s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--deep); }
  .btn-ghost {
    font-size: 13px; font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(46,73,124,0.3);
    padding-bottom: 1px;
    transition: color 0.18s, border-color 0.18s;
  }
  .btn-ghost:hover { color: var(--deep); border-color: var(--navy); }

  /* ── SECTION ── */
  section { padding: 88px 0; border-bottom: 1px solid var(--border); }
  section:last-of-type { border-bottom: none; }

  .sec-label {
    display: flex; align-items: center; gap: 16px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 44px;
  }
  .sec-label::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
  }

  h2.h2 {
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  h2.h2 em { font-style: italic; color: var(--navy); }

  p.body-l {
    font-size: 17px; color: #4a6070; line-height: 1.7;
    max-width: 580px;
  }

  /* ── STATEMENT BLOCK ── */
  .statement {
    background: #EEF5FB;
    padding: 64px 72px;
    margin: 52px 0 0;
    border-left: 4px solid var(--sky);
  }
  .statement p {
    font-family: var(--display);
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 300; font-style: italic;
    color: var(--deep);
    line-height: 1.45;
    padding-left: 0;
  }
  .statement em { color: var(--navy); font-style: normal; font-weight: 500; }

  /* ── WORKS ON GRID ── */
  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    margin-top: 12px;
  }
  .works-item {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
  }
  .works-item:last-child { border-right: none; }
  .works-num {
    font-family: var(--display);
    font-size: 48px; font-weight: 300;
    color: var(--pale);
    line-height: 1; margin-bottom: 14px;
  }
  .works-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* ── TOOLS GRID ── */
  .tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
  }
  .tool-card {
    background: var(--white);
    padding: 36px 32px;
  }
  .tool-card h4 {
    font-size: 15px; font-weight: 600;
    color: var(--deep);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  .tool-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* ── BODY TEXT ── */
  .prose {
    font-size: 15px; color: #4a6070; line-height: 1.75;
    margin-bottom: 16px;
  }

  /* ── PROGRAM ── */
  .program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
  }
  .pg-item {
    background: var(--white);
    padding: 40px 36px;
  }
  .pg-item--wide { grid-column: 1 / -1; background: #f0f6fc; }
  .pg-num {
    font-family: var(--display);
    font-size: 13px; font-weight: 400;
    color: var(--sky); letter-spacing: 0.06em;
    margin-bottom: 16px; display: block;
  }
  .pg-title {
    font-size: 18px; font-weight: 600;
    color: var(--deep); margin-bottom: 10px;
  }
  .pg-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* ── PRICE ── */
  .price-block {
    border: 1px solid var(--border);
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 52px 56px;
    background: #EEF5FB;
  }
  .price-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .price-val {
    font-family: var(--display);
    font-size: 64px; font-weight: 300;
    color: var(--deep); line-height: 1;
    margin-bottom: 10px;
  }
  .price-meta { font-size: 14px; color: var(--muted); }
  .price-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
  }
  .price-option {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 14px;
    border-left: 2px solid var(--sky);
  }
  .price-option-val {
    font-family: var(--display);
    font-size: 28px; font-weight: 300;
    color: var(--deep); line-height: 1.1;
  }
  .price-option-per {
    font-size: 16px; font-weight: 300;
    color: var(--muted);
  }
  .price-option-desc {
    font-size: 13px; color: var(--muted);
  }
  .price-diploma {
    margin-top: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--navy);
  }
  .btn-price {
    background: var(--navy);
    color: var(--white);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 18px 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s;
    display: inline-block;
  }
  .btn-price:hover { background: var(--deep); }

  /* ── TRAINER ── */
  .trainer-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 52px;
  }
  .trainer-card {
    background: var(--pale);
    aspect-ratio: 3/4;
    display: flex; align-items: flex-end;
    padding: 24px;
    position: relative;
    overflow: hidden;
  }
  .trainer-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #d5eafa 0%, #6BB5EC 100%);
    opacity: 0.3;
  }
  /* SVG logo watermark in trainer card */
  .trainer-card-logo {
    position: absolute; top: 24px; left: 50%;
    transform: translateX(-50%);
    width: 80px; opacity: 0.25;
  }
  .trainer-initials {
    font-family: var(--display);
    font-size: 80px; font-weight: 300;
    color: var(--navy);
    opacity: 0.18;
    position: absolute; bottom: 0; right: 12px;
    line-height: 1;
    font-style: italic;
  }
  .trainer-name-block { position: relative; z-index: 1; }
  .trainer-name {
    font-family: var(--display);
    font-size: 30px; font-weight: 300;
    color: var(--deep);
    line-height: 1.2; margin-bottom: 4px;
  }
  .trainer-role {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy);
  }
  .trainer-points { display: flex; flex-direction: column; gap: 24px; }
  .trainer-point {
    padding-left: 20px;
    border-left: 2px solid var(--pale);
    font-size: 15px; color: #4a6070; line-height: 1.65;
  }

  /* ── WHY ── */
  .why-list { margin-top: 52px; }
  .why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }
  .why-n {
    font-size: 13px; font-weight: 500;
    color: var(--muted); padding-top: 3px;
  }
  .why-t {
    font-size: 16px; color: #4a6070; line-height: 1.65;
  }
  .why-t strong { color: var(--text); font-weight: 600; }

  /* ── CTA ── */
  .cta-section {
    background: #EEF5FB;
    padding: 100px 0;
    text-align: center;
  }
  .cta-section h2 {
    font-family: var(--display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 300;
    color: var(--deep);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .cta-section h2 em { font-style: italic; color: var(--navy); }
  .cta-section p {
    font-size: 16px; color: var(--muted);
    max-width: 440px; margin: 0 auto 40px;
    line-height: 1.65;
  }
  .btn-cta-main {
    background: var(--navy);
    color: var(--white);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 18px 44px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.18s;
  }
  .btn-cta-main:hover { background: var(--deep); }
  .cta-date {
    margin-top: 48px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--navy);
    opacity: 0.5;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px; color: var(--muted);
  }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--navy); }
  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

  /* ── RESPONSIVE ── */
  @media (max-width: 720px) {
    .wrap, .wrap--sm { padding: 0 20px; }
    nav { padding: 0 20px; height: 72px; }
    .hero { padding: 60px 0 52px; }
    .hero::before, .hero::after { display: none; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stat { border-right: none; margin: 0; padding: 16px 0; border-bottom: 1px solid rgba(46,73,124,0.12); width: 50%; }
    .statement { padding: 36px 28px; }
    .works-grid { grid-template-columns: 1fr; }
    .works-item { border-right: none; border-bottom: 1px solid var(--border); }
    .tools-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .pg-item--wide { grid-column: 1; }
    .price-block { grid-template-columns: 1fr; padding: 36px 28px; }
    .trainer-layout { grid-template-columns: 1fr; }
    .trainer-card { aspect-ratio: unset; height: 140px; }
    footer { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  }

  /* ── FADE IN ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero > .wrap > * { animation: fadeUp 0.7s ease both; }
  .hero > .wrap > *:nth-child(2) { animation-delay: 0.1s; }
  .hero > .wrap > *:nth-child(3) { animation-delay: 0.2s; }
  .hero > .wrap > *:nth-child(4) { animation-delay: 0.3s; }
  .hero > .wrap > *:nth-child(5) { animation-delay: 0.4s; }

  /* ── GRID INTRO LABEL ── */
  .grid-intro {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
    margin-top: 52px;
    margin-bottom: 0;
  }

  /* ── DIPLOMA BADGE ── */
  .diploma-badge {
    display: inline-flex; align-items: center; gap: 12px;
    border: 1px solid var(--border);
    padding: 16px 24px;
    margin-top: 40px;
    background: #f7fbff;
  }
  .diploma-badge-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    color: var(--navy);
  }
  .diploma-badge-text {
    font-size: 13px; color: var(--deep); line-height: 1.4;
  }
  .diploma-badge-text strong { font-weight: 600; display: block; }

  /* ── TRAINER NEW LAYOUT ── */
  .trainer-layout-new {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 52px;
  }
  .trainer-photo-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .trainer-photo-wrap {
    position: relative;
  }
  .trainer-photo-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3/4;
  }
  .trainer-photo-name {
    font-family: var(--display);
    font-size: 22px; font-weight: 300;
    color: var(--deep);
    line-height: 1.2;
    margin-top: 16px;
    margin-bottom: 4px;
  }
  .trainer-photo-role {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
  }
  .trainer-right-title {
    font-family: var(--display);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 400;
    color: var(--deep);
    line-height: 1.35;
    margin-bottom: 36px;
  }
  .trainer-right-title em { font-style: italic; color: var(--navy); }

  /* ── CREDENTIALS ── */
  .trainer-credentials {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: 24px;
  }
  .cred-item {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 14px; color: #4a6070; line-height: 1.6;
  }
  .cred-icon {
    color: var(--sky); font-size: 12px;
    flex-shrink: 0; margin-top: 3px;
  }

  /* ── DIPLOMAS ── */
  .diplomas-section { margin-top: 36px; }
  .diplomas-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px;
  }
  .diplomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  .diploma-card {
    position: relative; cursor: pointer;
    border: 1px solid var(--border);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f5f8fb;
    transition: box-shadow 0.18s;
  }
  .diploma-card:hover { box-shadow: 0 4px 16px rgba(46,73,124,0.12); }
  .diploma-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: brightness(1.05) contrast(1.05);
  }
  .diploma-card::after {
    content: '⤢';
    position: absolute; bottom: 8px; right: 8px;
    font-size: 16px; color: var(--white);
    background: rgba(46,73,124,0.55);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    opacity: 0; transition: opacity 0.18s;
  }
  .diploma-card:hover::after { opacity: 1; }
  .diploma-placeholder {
    border: 1px dashed var(--border);
    aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--muted);
    text-align: center; padding: 12px;
    line-height: 1.5;
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(10,20,40,0.92);
    align-items: center; justify-content: center;
  }
  .lightbox.active { display: flex; }
  .lightbox img {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    filter: brightness(1.08) contrast(1.06);
  }
  .lightbox-close {
    position: absolute; top: 24px; right: 32px;
    font-size: 32px; color: rgba(255,255,255,0.7);
    cursor: pointer; line-height: 1;
    background: none; border: none; padding: 0;
  }
  .lightbox-close:hover { color: var(--white); }

  @media (max-width: 720px) {
    .trainer-layout-new { grid-template-columns: 1fr; gap: 32px; }
    .trainer-photo-wrap img { aspect-ratio: 4/3; object-position: center top; }
  }

  /* ── FOR WHOM BLOCK ── */
  .for-whom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 52px;
    border: 1px solid var(--border);
  }
  .for-whom-item {
    padding: 36px 40px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    align-items: start;
  }
  .for-whom-item:last-child { border-bottom: none; }
  .for-whom-num {
    font-family: var(--display);
    font-size: 32px; font-weight: 300;
    color: var(--pale);
    line-height: 1;
  }
  .for-whom-body {}
  .for-whom-title {
    font-size: 16px; font-weight: 600;
    color: var(--deep);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .for-whom-text {
    font-size: 14px; color: var(--muted); line-height: 1.7;
  }
</style>
