:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 15.9px;
  --line-height-base: 1.68;

  --max-w: 1020px;
  --space-x: 1.24rem;
  --space-y: 1.47rem;
  --gap: 1.01rem;

  --radius-xl: 0.7rem;
  --radius-lg: 0.58rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 0px 1px rgba(0,0,0,0.08);
  --shadow-md: 0 3px 16px rgba(0,0,0,0.11);
  --shadow-lg: 0 14px 20px rgba(0,0,0,0.13);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 340ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #0A2540;
  --brand-contrast: #FFFFFF;
  --accent: #00B4D8;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F1F5F9;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #F8FAFC;
  --fg-on-page: #1E293B;

  --bg-alt: #E2E8F0;
  --fg-on-alt: #334155;

  --surface-1: #FFFFFF;
  --surface-2: #F1F5F9;
  --fg-on-surface: #1E293B;
  --border-on-surface: #CBD5E1;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #0A2540;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #14365C;
  --ring: #00B4D8;

  --bg-accent: #00B4D8;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #0096C7;

  --link: #00B4D8;
  --link-hover: #0096C7;

  --gradient-hero: linear-gradient(135deg, #0A2540 0%, #14365C 100%);
  --gradient-accent: linear-gradient(135deg, #00B4D8 0%, #0096C7 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-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.intro-cardinal-c13 {
        padding: clamp(3.8rem, 8vw, 6.9rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 30%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cardinal-c13__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
        align-items: center;
    }

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

    .intro-cardinal-c13__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-cardinal-c13__copy strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-cardinal-c13__copy span {
        display: block;
        margin-top: .9rem;

        max-width: 38rem;
    }

    .intro-cardinal-c13__cards {
        display: grid;
        gap: .75rem;
    }

    .intro-cardinal-c13__cards div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

.gallery--light-v6 {

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

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

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

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

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

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.why-choose-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

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

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

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
    }

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

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

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

    .values-spine-c1__list h3 {
        margin: 0;
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.project-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.project-list__inner {
    max-width: 720px;
    margin: 0 auto;
}

.project-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.project-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.project-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.project-list__row:first-child {
    border-top: none;
}

.project-list__row-title {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.project-list__row-meta {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.recommendations-split {
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .recommendations-split__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .recommendations-split__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .recommendations-split__card:nth-child(1) .recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .recommendations-split__link::after {
        content: '->';
    }

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

    @media (max-width: 900px) {
        .recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .recommendations-split__card {
            grid-column: span 6;
        }

        .recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .recommendations-split__card:nth-child(1) .recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

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

        /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .index-feedback-summary {
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-feedback-summary__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--neutral-900);
        font-size: 14px;
    }

    .index-feedback-summary__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-feedback-summary__who {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-summary__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-summary__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-summary__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

    .index-feedback-summary__quote {
        margin: 0;
        color: var(--neutral-800);
        font-size: 14px;
        line-height: 1.65;
    }

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

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

        /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

.team-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .team-fresh-v2 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .team-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .team-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .team-fresh-v2 article {
        display: grid;
        grid-template-columns:92px 1fr;
        gap: var(--gap);
        align-items: center;
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .team-fresh-v2 img {
        width: 92px;
        height: 92px;
        object-fit: cover;
        border-radius: 50%;
    }

    .team-fresh-v2 h3 {
        margin: 0 0 .2rem;
    }

    .team-fresh-v2 .role {
        margin: 0;
        font-weight: 700;
        color: var(--link);
    }

    .team-fresh-v2 .bio {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 620px) {
        .team-fresh-v2 article {
            grid-template-columns:1fr;
        }

        .team-fresh-v2 img {
            border-radius: var(--radius-md);
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
        }
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.project-item--light-v6 {

    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.project-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.project-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.project-item__meta {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.project-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.story-scene-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-scene-l8__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .story-scene-l8__panel {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-scene-l8__top {
        display: grid;
        grid-template-columns: 14rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .story-scene-l8__top img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .story-scene-l8__top p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-scene-l8__top h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-scene-l8__copy {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .story-scene-l8__panel a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    @media (max-width: 700px) {
        .story-scene-l8__top {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .identity-ux14 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-ux14__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-ux14__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-ux14__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

    .identity-ux14__overlay h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 42px);
    }

    .identity-ux14__overlay span {
        opacity: .92;
    }

    .identity-ux14__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-ux14__grid p {
        margin: 0 0 10px;
    }

    .identity-ux14__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-ux14__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-ux14__grid {
            grid-template-columns: 1fr;
        }
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

.touch-column {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

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

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

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

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

    .form-fresh-v6 input {
        padding: .58rem .7rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

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

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.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-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-100);
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--btn-ghost-bg-hover);
  color: var(--neutral-900);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  box-shadow: var(--shadow-sm);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 50;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-secondary {
    display: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5a623;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f5a623;
}
.footer-contact {
  width: 100%;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f5a623;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-contact ul {
    justify-content: center;
  }
}

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .err-slab-d p {
        margin: 12px 0 0;
        color: var(--neutral-100);
    }

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