:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15.6px;
  --line-height-base: 1.8;

  --max-w: 1180px;
  --space-x: 1.76rem;
  --space-y: 1.5rem;
  --gap: 0.99rem;

  --radius-xl: 1.4rem;
  --radius-lg: 1rem;
  --radius-md: 0.69rem;
  --radius-sm: 0.35rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 24px rgba(0,0,0,0.07);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 520ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #005792;
  --brand-contrast: #ffffff;
  --accent: #00a8cc;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #f1f5f9;
  --fg-on-page: #0f172a;

  --bg-alt: #e2e8f0;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #cbd5e1;

  --bg-primary: #005792;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004a7a;
  --ring: #00a8cc;

  --bg-accent: #e3f6fd;
  --fg-on-accent: #003f5c;
  --bg-accent-hover: #0097b5;

  --link: #005792;
  --link-hover: #003f5c;

  --gradient-hero: linear-gradient(135deg, #005792 0%, #00a8cc 100%);
  --gradient-accent: linear-gradient(90deg, #e3f6fd 0%, #d1ecf1 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-metrics-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

    .intro-metrics-l4__copy p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-metrics-l4__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .values-spine-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .values-spine-c1__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--brand-contrast);
    }

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .85);
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: bold;
    }

    .values-spine-c1__list h3 {
        margin: 0;
        color: var(--brand-contrast);
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .9);
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .7);
        font-style: italic;
    }

.why-choose {
        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

    .why-choose__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }
    }

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .touch-header {
        margin-bottom: 12px;
    }

    .touch-stream h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .touch-stream .touch-header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

.nfsocial-v10 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: var(--surface-1);
    }

    .nfsocial-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }

    .nfsocial-v10__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: start;
    }

    .nfsocial-v10__text {
        border-left: 2px solid var(--border-on-surface);
        padding-left: var(--space-x);
    }

    .nfsocial-v10__text:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .nfsocial-v10__text h2 {
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .nfsocial-v10__text p {
        margin-bottom: var(--space-y);
        color: var(--neutral-600);
    }

    @media (max-width: 840px) {
        .nfsocial-v10__grid {
            grid-template-columns: 1fr;
        }

        .nfsocial-v10__text {
            border-left: 0;
            padding-left: 0;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.blog-list--light-v6 {
        padding: 48px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .blog-list__inner {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list__title {
        margin: 0 0 16px;
        font-size: clamp(24px, 4vw, 30px);
    }

    .blog-list__list {
        display: grid;
        gap: 12px;
    }

    .blog-list__row {
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        padding: 14px 16px;
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: inherit;
        display: block;
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list__row:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--neutral-300);
    }

    .blog-list__row h3 {
        margin: 0 0 4px;
        font-size: 1rem;
        color: var(--link);
    }

    .blog-list__row p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--neutral-600);
    }

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

    .education-struct-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v1 h2, .education-struct-v1 h3, .education-struct-v1 p {
        margin: 0
    }

    .education-struct-v1 a {
        text-decoration: none
    }

    .education-struct-v1 article, .education-struct-v1 .row, .education-struct-v1 details, .education-struct-v1 .program {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v1 .grid, .education-struct-v1 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v1 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v1 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v1 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v1 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v1 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v1 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v1 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo, .education-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.blogitem-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .blogitem-fresh-v5 .shell {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .blogitem-fresh-v5 .meta {
        margin: 0;
        opacity: .78;
    }

    .blogitem-fresh-v5 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3rem);
    }

    .blogitem-fresh-v5 .lead {
        margin: 0;
        opacity: .88;
        max-width: 66ch;
    }

    .blogitem-fresh-v5 .frame {
        display: grid;
        grid-template-columns:.95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .blogitem-fresh-v5 img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v5 .content {
        display: grid;
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .blogitem-fresh-v5 .content p {
        margin: 0;
        opacity: .92;
    }

    @media (max-width: 860px) {
        .blogitem-fresh-v5 .frame {
            grid-template-columns:1fr;
        }

        .blogitem-fresh-v5 img {
            aspect-ratio: 16/9;
        }
    }

.articles--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.articles__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.articles__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.articles__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.articles__item {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.articles__item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.articles__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.article-content-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.author--colored-v5 {
    padding: 40px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.author__inner {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
}

.author__avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-accent);
}

.author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author__name {
    margin: 0;
    font-size: 1.05rem;
}

.author__role {
    margin: 2px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.article-content-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.support-cv3 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-cv3__head {
        margin-bottom: 14px;
    }

    .support-cv3__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

    .education-struct-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v1 h2, .education-struct-v1 h3, .education-struct-v1 p {
        margin: 0
    }

    .education-struct-v1 a {
        text-decoration: none
    }

    .education-struct-v1 article, .education-struct-v1 .row, .education-struct-v1 details, .education-struct-v1 .program {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v1 .grid, .education-struct-v1 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v1 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v1 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v1 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v1 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v1 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v1 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v1 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo, .education-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

.faq-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

    .faq-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand-contrast);
    }

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--brand-contrast);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        color: var(--brand-contrast);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--brand-contrast);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.form-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .form-fresh-v5 .shell {
        max-width: 760px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .82;
    }

    .form-fresh-v5 .panel {
        display: grid;
        gap: .7rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .form-fresh-v5 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v5 span {
        font-size: .82rem;
        opacity: .85;
    }

    .form-fresh-v5 input {
        padding: .65rem .75rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

    .form-fresh-v5 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

.support-cv3 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-cv3__head {
        margin-bottom: 14px;
    }

    .support-cv3__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.contacts-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .contacts-fresh-v5 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    }

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

    .contacts-fresh-v5 a {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.policy-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

    .policy-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.nfthank-v7 {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--fg-on-surface);
    }

    .nfthank-v7__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
    }

    .nfthank-v7 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--neutral-900);
    }

    .nfthank-v7 p {
        margin: 12px 0 0;
        opacity: .92;
        color: var(--neutral-800);
    }

    .nfthank-v7 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .nfthank-v7 a:hover {
        background: var(--bg-primary-hover);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .phone-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .phone-link:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    display: inline-block;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-sm);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface-light);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .header-bottom {
      padding: 0 var(--space-x);
      display: flex;
      align-items: center;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.active {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 1rem var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }

    .nav-list a::after {
      display: none;
    }

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e9ecef;
        color: #333;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #dee2e6;
    }

    .footer-brand h3 {
        margin: 0 0 0.5rem 0;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin: 0;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.75rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-contact p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .copyright {
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

    .disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-nav ul,
        .footer-legal ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .footer-nav li,
        .footer-legal li {
            margin-bottom: 0;
        }
    }

.cookie-cv11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

    .nf404-v12 h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        color: var(--brand);
    }

    .nf404-v12 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf404-v12 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: 999px;
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }