:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.34;

  --max-w: 1060px;
  --space-x: 1.66rem;
  --space-y: 1.5rem;
  --gap: 2.14rem;

  --radius-xl: 1.31rem;
  --radius-lg: 0.9rem;
  --radius-md: 0.57rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 3px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 10px 22px rgba(0,0,0,0.17);
  --shadow-lg: 0 32px 42px rgba(0,0,0,0.21);

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

  --brand: #0ea5e9;
  --brand-contrast: #ffffff;
  --accent: #22d3ee;
  --accent-contrast: #ffffff;

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

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

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

  --surface-1: #1e293b;
  --surface-2: #334155;
  --fg-on-surface: #e2e8f0;
  --border-on-surface: #475569;

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

  --bg-primary: #0ea5e9;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0284c7;
  --ring: #0ea5e9;

  --bg-accent: #f0f9ff;
  --fg-on-accent: #0c4a6e;
  --bg-accent-hover: #38bdf8;

  --link: #22d3ee;
  --link-hover: #38bdf8;

  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
  --gradient-accent: linear-gradient(90deg, #0ea5e9 0%, #22d3ee 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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.intro-beacon-c8 {
        padding: clamp(3.8rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        overflow: hidden;
    }

    .intro-beacon-c8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(16rem, .85fr);
        gap: 1.5rem;
        align-items: center;
    }

    .intro-beacon-c8__eyebrow {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .intro-beacon-c8__content h1 {
        margin: .7rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.6rem);
        line-height: 1.02;
        color: var(--fg-on-page);
    }

    .intro-beacon-c8__lead {
        margin: 1rem 0 0;
        max-width: 42rem;
        color: var(--fg-on-page);
    }

    .intro-beacon-c8__fact {
        margin-top: 1rem;
        padding-left: .9rem;
        border-left: 3px solid var(--bg-accent);
        color: var(--fg-on-page);
    }

    .intro-beacon-c8__links {
        margin-top: 1.2rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-beacon-c8__links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.8rem;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.14);
        color: var(--fg-on-page);
        font-weight: 500;
    }

    .intro-beacon-c8__links a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .intro-beacon-c8__links a:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .intro-beacon-c8__links a:first-child:hover {
        background: var(--bg-accent-hover);
    }

    .intro-beacon-c8__aside {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: var(--shadow-md);
        order: var(--random-number);
    }

    .intro-beacon-c8__aside img {
        width: 100%;
        border-radius: var(--radius-md);
        display: block;
    }

    .intro-beacon-c8__content {
        order: calc(3 - var(--random-number));
    }

    .intro-beacon-c8__aside--panel div + div {
        margin-top: .55rem;
        font-size: 0.85rem;
        color: var(--fg-on-page);
        opacity: 0.9;
    }

    @media (max-width: 860px) {
        .intro-beacon-c8__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

    .about-struct-v1 .split, .about-struct-v1 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v1 .split img, .about-struct-v1 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v1 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v1 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v1 article, .about-struct-v1 .values div, .about-struct-v1 .facts div, .about-struct-v1 .quote, .about-struct-v1 .statement {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v1 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v1 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v1 .values, .about-struct-v1 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v1 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v1 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v1 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v1 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v1 .split, .about-struct-v1 .duo, .about-struct-v1 .cards, .about-struct-v1 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v1 .split, .about-struct-v1 .duo, .about-struct-v1 .cards, .about-struct-v1 .gallery {
            grid-template-columns:1fr
        }
    }

.capabilities-alt {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

    .capabilities-alt .capabilities-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);

    }

    .capabilities-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-alt .capabilities-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);

        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

    .capabilities-alt .capabilities-alt__bubble p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.blog-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--bg-primary);
        background: var(--fg-on-primary);
        border-radius: var(--radius-lg);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: white;
        color: black;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list__card {
        position: relative;
        overflow: hidden;
    }

    .blog-list__card::after {
        animation-duration: 6s;
        opacity: 0.3;
    }

    @keyframes fall {
        from {
            transform: translateY(-80px);
        }
        to {
            transform: translateY(80px);
        }
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .blog-list .blog-list__date {
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        text-decoration: none;
    }

    .blog-list p {
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-page);
    }

    .visual-film-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
        color: var(--accent-color);
    }

    .visual-film-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--fg-on-page);
    }

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: var(--overlay);
        color: var(--neutral-0);
        font-size: .9rem;
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid figcaption small {
        color: var(--accent-color);
        font-weight: 600;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
        color: var(--fg-on-surface);
    }

    .visual-film-c1__grid p {
        margin: 0;
        color: var(--alt-fg);
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.blog-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--bg-primary);
        background: var(--fg-on-primary);
        border-radius: var(--radius-lg);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: white;
        color: black;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list__card {
        position: relative;
        overflow: hidden;
    }

    .blog-list__card::after {
        animation-duration: 6s;
        opacity: 0.3;
    }

    @keyframes fall {
        from {
            transform: translateY(-80px);
        }
        to {
            transform: translateY(80px);
        }
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .blog-list .blog-list__date {
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        text-decoration: none;
    }

    .blog-list p {
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

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

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

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

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

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .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-v5 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .touch-panorama .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .main-form input::placeholder {
        color: var(--input-placeholder);
        opacity: 0.7;
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.blogitem-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .blogitem-fresh-v6 h1 {
        margin: 0;
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    }

    .blogitem-fresh-v6 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .86rem;
    }

    .blogitem-fresh-v6 img {
        width: 100%;
        aspect-ratio: 3/2;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .blogitem-fresh-v6 .body {
        display: grid;
        gap: .85rem;
    }

    .blogitem-fresh-v6 .body p {
        margin: 0;
        padding-bottom: .8rem;
        border-bottom: 1px solid var(--border-on-surface);
    }

    .blogitem-fresh-v6 .body p:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

.author {

        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

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

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.blogitem-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-page);
    }

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

    .blogitem-fresh-v6 h1 {
        margin: 0;
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
        color: var(--fg-on-page);
    }

    .blogitem-fresh-v6 .meta {
        margin: 0;
        color: var(--neutral-300);
        font-size: .86rem;
    }

    .blogitem-fresh-v6 img {
        width: 100%;
        aspect-ratio: 3/2;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .blogitem-fresh-v6 .body {
        display: grid;
        gap: .85rem;
    }

    .blogitem-fresh-v6 .body p {
        margin: 0;
        padding-bottom: .8rem;
        border-bottom: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
    }

    .blogitem-fresh-v6 .body p:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

    .support-lv4__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-lv4__wrap {
            grid-template-columns: 1fr;
        }
    }

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

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

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

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

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

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .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-v5 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.contact-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

    .contact-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .contact-layout-c .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-c .section-head p {
        margin: 10px auto 0;
        max-width: 74ch;
        color: var(--neutral-600);
    }

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

    .connect__content p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.form-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

    .form-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .form-layout-c .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .form-layout-c .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        color: var(--neutral-600);
    }

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout-c label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.policy-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .policy-layout-f .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.policy-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .policy-layout-a .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-layout-a .section-head {
        margin-bottom: 16px;
    }

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

    .policy-layout-a .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 72ch;
    }

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.thank-mode-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

    .thank-mode-d h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.header.scrolled {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-surface);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--link);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 2);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 3) var(--space-x);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
  }
  .nav__link:hover {
    background-color: var(--surface-2);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        align-items: start;
    }

    .footer-brand .logo {
        font-size: 2.2rem;
        font-weight: 800;
        color: #3498db;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #bdc3c7;
        line-height: 1.5;
    }

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

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

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-legal .social-links {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-legal .social-links a {
        background-color: #4a6572;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }

    .footer-legal .social-links a:hover {
        background-color: #3498db;
    }

    .footer-contact h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact strong {
        color: #bdc3c7;
        min-width: 80px;
        display: inline-block;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-disclaimer {
        border-top: 1px solid #4a6572;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.6;
    }

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

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

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

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

        .footer-contact address p {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .footer-contact strong {
            min-width: auto;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.err-slab-b {
    padding: clamp(56px, 10vw, 112px) 20px;
    background: var(--bg-alt);
    color: var(--fg-on-page);
}

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

.err-slab-b h1 {
    margin: 0;
    font-size: clamp(32px, 6vw, 56px);
    color: var(--brand);
}

.err-slab-b p {
    margin: 10px 0 0;
    color: var(--neutral-600);
}

.err-slab-b a {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 17px;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
}