/* ===================================================================
   Galurvexhub — Pixel Perfect Flat
   Type-prefixed CSS: s- sections, c- components, u- utilities, is- states
=================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

:root {
  --c-bg: #FAF8F3;
  --c-bg-alt: #F1ECE0;
  --c-surface: #FFFFFF;
  --c-navy: #12192F;
  --c-navy-2: #1D2740;
  --c-navy-tint: #E8E9F1;
  --c-accent: #C8442E;
  --c-accent-dark: #A8371F;
  --c-accent-bright: #FF7A5C;
  --c-accent-soft: #F1DCD3;
  --c-teal: #0A7A70;
  --c-teal-dark: #075F58;
  --c-teal-bright: #2FBBAE;
  --c-gold: #EBA815;
  --c-text: #1B1E27;
  --c-text-soft: #565C6D;
  --c-text-invert: #F5F3EC;
  --c-text-invert-soft: #B9C0D6;
  --c-border: #DEDACC;
  --c-border-dark: #2A3450;

  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --shadow-hero: 0 20px 40px -14px rgba(18,25,47,.35), 0 6px 14px rgba(18,25,47,.18);
  --shadow-letter: 0 8px 18px rgba(18,25,47,.2);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; color: var(--c-navy); font-weight: 700; line-height: 1.15; }

.u-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.u-hidden { display: none !important; }
.u-text-center { text-align: center; }

.u-animate { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.u-animate.is-visible { opacity: 1; transform: none; }


.c-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.85rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; border: 2px solid transparent;
  min-height: 48px; cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .25s ease;
}
.c-btn--primary { background: var(--c-accent); color: #fff; }
.c-btn--primary:hover { background: var(--c-accent-dark); transform: translateY(-2px); }
.c-btn--outline { background: transparent; border-color: var(--c-navy); color: var(--c-navy); }
.c-btn--outline:hover { background: var(--c-navy); color: var(--c-text-invert); }
.c-btn--light { background: var(--c-text-invert); color: var(--c-navy); }
.c-btn--light:hover { background: #fff; transform: translateY(-2px); }
.c-btn--block { width: 100%; }

.c-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.05rem; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-full); font-size: .82rem; font-weight: 600; color: var(--c-navy);
}
.c-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: .85rem;
}


.s-section { padding: clamp(3.5rem, 6vw, 6.5rem) 1.5rem; }
.s-section--alt { background: var(--c-bg-alt); }
.s-section--navy { background: var(--c-navy); color: var(--c-text-invert-soft); }
.s-section--navy h2 { color: var(--c-text-invert); }
.s-section__head { max-width: 640px; margin-bottom: 3rem; }
.s-section__head h2 { font-size: clamp(1.9rem, 2.6vw + 1rem, 2.75rem); margin-bottom: 1rem; }
.s-section__head p { color: var(--c-text-soft); font-size: 1.05rem; line-height: 1.75; }
.s-section--navy .s-section__head p { color: var(--c-text-invert-soft); }


.c-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  background: var(--c-bg); border-bottom: 2px solid var(--c-navy);
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.c-nav.is-visible { transform: translateY(0); }
.c-nav__inner {
  max-width: 1200px; margin: 0 auto; padding: .75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.c-nav__brand { display: flex; align-items: center; gap: .6rem; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.05rem; color: var(--c-navy); }
.c-nav__logo { width: 36px; height: 36px; }
.c-nav__tabs { display: none; gap: .25rem; padding: .35rem; background: var(--c-navy-tint); border-radius: var(--radius-full); }
.c-nav__tab {
  display: inline-flex; padding: .6rem 1.15rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: .9rem; color: var(--c-navy);
  transition: background .3s ease, color .3s ease;
}
.c-nav__tab:hover { background: #fff; }
.c-nav__tab.is-active { background: var(--c-navy); color: var(--c-text-invert); }
.c-nav__burger {
  width: 46px; height: 46px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; background: var(--c-navy); border: none; border-radius: 12px;
  transition: background .3s ease;
}
.c-nav__burger:hover { background: var(--c-accent); }
.c-nav__burger span { width: 20px; height: 2px; background: var(--c-text-invert); transition: transform .3s ease, opacity .3s ease; }
.c-nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.c-nav__burger.is-active span:nth-child(2) { opacity: 0; }
.c-nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .c-nav__tabs { display: flex; }
  .c-nav__burger { display: none; }
}

.c-hero-sentinel { height: 1px; width: 100%; }


.c-mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--c-navy);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path .65s cubic-bezier(.65,0,.35,1), visibility 0s linear .65s;
  visibility: hidden;
}
.c-mobile-menu.is-active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: clip-path .65s cubic-bezier(.65,0,.35,1), visibility 0s linear 0s;
  visibility: visible;
}
.c-mobile-menu__list { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.c-mobile-menu__list a {
  opacity: 0; transform: translateY(18px);
  transition: opacity .4s ease, transform .4s ease;
  font-family: 'Space Grotesk'; font-size: 1.55rem; font-weight: 600; color: var(--c-text-invert);
}
.c-mobile-menu.is-active .c-mobile-menu__list a { opacity: 1; transform: translateY(0); }
.c-mobile-menu.is-active .c-mobile-menu__list li:nth-child(1) a { transition-delay: .32s; }
.c-mobile-menu.is-active .c-mobile-menu__list li:nth-child(2) a { transition-delay: .40s; }
.c-mobile-menu.is-active .c-mobile-menu__list li:nth-child(3) a { transition-delay: .48s; }
.c-mobile-menu.is-active .c-mobile-menu__list li:nth-child(4) a { transition-delay: .56s; }
.c-mobile-menu.is-active .c-mobile-menu__list li:nth-child(5) a { transition-delay: .64s; }
.c-mobile-menu__close {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 46px; height: 46px;
  border-radius: 12px; background: var(--c-accent); border: none; color: #fff; font-size: 1.1rem;
  transition: background .3s ease;
}
.c-mobile-menu__close:hover { background: var(--c-accent-dark); }


.s-hero { padding: 8rem 1.5rem 4.5rem; overflow: hidden; }
.s-hero__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .s-hero__inner { grid-template-columns: 1.05fr .95fr; gap: 2rem; } }
.s-hero__title { font-size: clamp(2.3rem, 4vw + 1rem, 3.9rem); margin-bottom: 1.35rem; letter-spacing: -.01em; }
.s-hero__lead { font-size: 1.12rem; color: var(--c-text-soft); line-height: 1.75; max-width: 48ch; margin-bottom: 2rem; }
.s-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.s-hero__badges { display: flex; flex-wrap: wrap; gap: .75rem; }
.s-hero__visual { position: relative; min-height: 340px; }
@media (min-width: 640px) { .s-hero__visual { min-height: 420px; } }
.s-hero__img-wrap {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  border: 5px solid var(--c-bg); box-shadow: var(--shadow-hero);
}
.s-hero__img-wrap--back { width: 62%; top: 0; right: 0; transform: rotate(-5deg); z-index: 1; }
.s-hero__img-wrap--front { width: 55%; bottom: 0; left: 0; transform: rotate(3deg); z-index: 2; border-color: var(--c-accent); }
.s-hero__img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }


.s-page-header { padding: 8.5rem 1.5rem 4rem; background: var(--c-bg-alt); border-bottom: 2px solid var(--c-border); }
.s-page-header__inner { max-width: 760px; margin: 0 auto 0 0; }
.s-page-header h1 { font-size: clamp(2.1rem, 4vw + 1rem, 3.1rem); margin: .6rem 0 1.1rem; }
.s-page-header p { font-size: 1.05rem; color: var(--c-text-soft); line-height: 1.75; max-width: 62ch; }


.s-about__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .s-about__inner { grid-template-columns: 1fr .8fr; gap: 3.5rem; } }
.s-about__text p { color: var(--c-text-soft); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.02rem; }
.s-about__text p:last-child { margin-bottom: 0; }
.s-about__img { border-radius: var(--radius-lg); overflow: hidden; border: 3px solid var(--c-border); }
.s-about__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }


.c-step-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 860px) { .c-step-grid { grid-template-columns: repeat(3, 1fr); } }
.c-step {
  container-type: inline-size; container-name: step;
  background: var(--c-navy-2); border: 1px solid var(--c-border-dark);
  border-radius: var(--radius-md); padding: 2.25rem 1.9rem; position: relative;
}
.c-step__num { font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.9rem; color: var(--c-accent-bright); line-height: 1; margin-bottom: 1rem; }
.c-step__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--c-teal); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #fff; margin-bottom: 1.25rem; }
.c-step h3 { font-size: 1.22rem; margin-bottom: .6rem; color: var(--c-text-invert); }
.c-step p { color: var(--c-text-invert-soft); line-height: 1.7; font-size: .95rem; }
.c-step__arrow { display: none; position: absolute; top: 50%; right: -1.9rem; transform: translateY(-50%); color: var(--c-accent-bright); font-size: 1.3rem; }
@media (min-width: 860px) { .c-step-grid .c-step:not(:last-child) .c-step__arrow { display: block; } }
@container step (min-width: 480px) {
  .c-step { display: flex; gap: 1.5rem; align-items: flex-start; }
  .c-step__num { margin-bottom: 0; }
  .c-step__body { flex: 1; }
  .c-step__icon { margin-bottom: 1rem; }
}


.c-service-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .c-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .c-service-grid { grid-template-columns: repeat(3, 1fr); } }
.c-service-wrap { container-type: inline-size; container-name: svc; }
.c-service {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 2rem; height: 100%; display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .3s ease, transform .25s ease;
}
.c-service:hover { border-color: var(--c-accent); transform: translateY(-4px); }
.c-service__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--c-navy-tint); color: var(--c-navy); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.c-service h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.c-service p { color: var(--c-text-soft); font-size: .93rem; line-height: 1.65; }
@container svc (min-width: 420px) {
  .c-service { flex-direction: row; align-items: flex-start; }
}


.c-checklist-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 860px) { .c-checklist-grid { grid-template-columns: 1fr 1fr; } }
.c-checklist-col { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 2.25rem; }
.c-checklist-col--scope { border-left: 4px solid var(--c-gold); }
.c-checklist-col h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.c-checklist-col ul { display: flex; flex-direction: column; gap: 1rem; }
.c-checklist-col li { display: flex; gap: .85rem; align-items: flex-start; line-height: 1.6; color: var(--c-text-soft); font-size: .96rem; }
.c-check-icon, .c-info-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .72rem; margin-top: .15rem; }
.c-check-icon { background: var(--c-teal); color: #fff; }
.c-info-icon { background: var(--c-gold); color: var(--c-navy); }


.c-compare { position: relative; max-width: 620px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; border: 3px solid var(--c-teal-bright); }
.c-compare__figure { position: relative; width: 100%; aspect-ratio: 4/3; container-type: inline-size; container-name: comparefig; }
.c-compare__after { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-compare__before-wrap {
  position: absolute; top: 0; left: 0; height: 100%; width: 50%;
  min-width: 60px; max-width: 100%; overflow: hidden; resize: horizontal;
  border-right: 4px solid var(--c-accent-bright);
}
.c-compare__before-wrap img { width: 100cqw; height: 100cqh; object-fit: cover; display: block; }
.c-compare__tag { position: absolute; top: .9rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .4rem .75rem; border-radius: var(--radius-full); background: var(--c-navy); color: #fff; z-index: 3; }
.c-compare__tag--left { left: .9rem; }
.c-compare__tag--right { right: .9rem; background: var(--c-teal-dark); }
.c-compare__hint { text-align: center; color: var(--c-text-invert-soft); font-size: .85rem; margin-top: 1rem; }
.c-compare__hint i { color: var(--c-accent-bright); }


.c-preview-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 760px) { .c-preview-grid { grid-template-columns: 1fr 1fr; } }
.c-preview-card {
  background: var(--c-navy); color: #fff; border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem; transition: background .3s ease;
}
.c-preview-card:hover { background: var(--c-navy-2); }
.c-preview-card--alt { background: var(--c-teal-dark); }
.c-preview-card--alt:hover { background: var(--c-teal); }
.c-preview-card h3 { color: #fff; font-size: 1.4rem; }
.c-preview-card p { color: rgba(255,255,255,.82); line-height: 1.65; font-size: .95rem; }
.c-preview-card span { font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; color: var(--c-gold); }


.s-cta { background: var(--c-accent); color: #fff; text-align: center; padding: 5rem 1.5rem; }
.s-cta h2 { color: #fff; font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem); margin-bottom: 1rem; }
.s-cta p { color: rgba(255,255,255,.92); max-width: 55ch; margin: 0 auto 2rem; font-size: 1.05rem; }
.s-cta .c-btn--primary { background: var(--c-navy); }
.s-cta .c-btn--primary:hover { background: #0B1120; }


.c-timeline { display: flex; flex-direction: column; position: relative; padding-left: 2.9rem; }
.c-timeline::before { content: ''; position: absolute; left: 1.15rem; top: .5rem; bottom: .5rem; width: 2px; background: var(--c-border); }
.c-timeline__item { position: relative; padding-bottom: 2.5rem; }
.c-timeline__item:last-child { padding-bottom: 0; }
.c-timeline__dot { position: absolute; left: -2.9rem; top: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--c-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Space Grotesk'; font-size: .92rem; }
.c-timeline__item h3 { margin-bottom: .4rem; font-size: 1.12rem; }
.c-timeline__item p { color: var(--c-text-soft); line-height: 1.7; font-size: .95rem; }


.c-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2.5rem; }
.c-table th, .c-table td { border: 1px solid var(--c-border); padding: .95rem 1.1rem; text-align: left; font-size: .92rem; }
.c-table thead th { background: var(--c-navy); color: #fff; font-family: 'Space Grotesk'; font-weight: 600; }
.c-table tbody tr:nth-child(even) { background: var(--c-bg-alt); }
.c-impressum-table th { width: 230px; background: var(--c-bg-alt); font-family: 'Space Grotesk'; color: var(--c-navy); }


.c-accordion { border: 1px solid var(--c-border); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; background: var(--c-surface); }
.c-accordion summary { list-style: none; cursor: pointer; padding: 1.3rem 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: 'Space Grotesk'; font-weight: 600; color: var(--c-navy); }
.c-accordion summary::-webkit-details-marker { display: none; }
.c-accordion summary i { transition: transform .3s ease; color: var(--c-teal); flex-shrink: 0; }
.c-accordion[open] summary i { transform: rotate(45deg); }
.c-accordion__body { padding: 0 1.6rem 1.6rem; color: var(--c-text-soft); line-height: 1.75; font-size: .96rem; }


.c-dl { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .c-dl { grid-template-columns: repeat(2, 1fr); } }
.c-dl > div { border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 1.6rem; background: var(--c-surface); }
.c-dl dt { font-family: 'Space Grotesk'; font-weight: 600; color: var(--c-navy); margin-bottom: .5rem; }
.c-dl dd { color: var(--c-text-soft); font-size: .93rem; line-height: 1.65; }


.c-notice { background: var(--c-navy-tint); border-left: 4px solid var(--c-gold); border-radius: var(--radius-xs); padding: 1.6rem 1.85rem; color: var(--c-navy); font-size: .93rem; line-height: 1.75; }


.c-check-category { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 2.1rem; margin-bottom: 1.75rem; }
.c-check-category__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.35rem; }
.c-check-category__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--c-teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.c-check-category h3 { font-size: 1.15rem; }
.c-check-list { display: flex; flex-direction: column; gap: .8rem; }
.c-check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--c-text-soft); font-size: .96rem; line-height: 1.65; }
.c-check-list li i { color: var(--c-teal); margin-top: .22rem; flex-shrink: 0; }


.c-footer { background: var(--c-navy); color: var(--c-text-invert-soft); position: relative; }
.c-footer__accent { height: 6px; background: linear-gradient(90deg, var(--c-accent) 0 33.33%, var(--c-teal) 33.33% 66.66%, var(--c-gold) 66.66% 100%); }
.c-footer__inner { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem 2rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 720px) { .c-footer__inner { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.c-footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.c-footer__brand-name { display: flex; align-items: center; gap: .6rem; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.2rem; color: #fff; }
.c-footer__brand-name img { width: 34px; height: 34px; }
.c-footer__desc { color: var(--c-text-invert-soft); line-height: 1.7; font-size: .9rem; max-width: 34ch; }
.c-footer h4 { font-size: 1rem; margin-bottom: 1.1rem; color: #fff; }
.c-footer__col ul { display: flex; flex-direction: column; gap: .65rem; }
.c-footer a { color: var(--c-text-invert-soft); font-size: .9rem; transition: color .25s ease; }
.c-footer a:hover { color: var(--c-accent-bright); }
.c-footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; line-height: 1.55; color: var(--c-text-invert-soft); }
.c-footer__contact i { color: var(--c-teal-bright); margin-top: .2rem; }
.c-footer__bottom { border-top: 1px solid var(--c-border-dark); padding: 1.5rem; text-align: center; font-size: .8rem; color: #7B8299; }


.c-form { display: flex; flex-direction: column; gap: 1.1rem; }
.c-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 860px) { .c-form__row { grid-template-columns: 1fr 1fr 1.5fr; } }
.c-form__group { display: flex; flex-direction: column; gap: .4rem; }
.c-form label { font-size: .85rem; font-weight: 600; color: var(--c-navy); }
.c-form input, .c-form textarea {
  border: 2px solid var(--c-border); border-radius: 10px; padding: .8rem .95rem;
  font-size: .95rem; color: var(--c-text); background: var(--c-surface); resize: none; min-height: 48px;
  transition: border-color .25s ease;
}
.c-form textarea { min-height: 64px; }
.c-form input:focus, .c-form textarea:focus { outline: none; border-color: var(--c-teal); }
.c-form__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; justify-content: space-between; }
.c-form__check { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--c-text-soft); max-width: 46ch; }
.c-form__check input { width: 20px; height: 20px; flex-shrink: 0; margin-top: .1rem; }
.c-form__check a { color: var(--c-teal-dark); text-decoration: underline; }


.s-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .s-contact-grid { grid-template-columns: .85fr 1.15fr; } }
.c-contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.c-contact-info__img { border-radius: var(--radius-lg); overflow: hidden; border: 3px solid var(--c-border); }
.c-contact-info__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.c-contact-block { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 1.9rem; }
.c-contact-block h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.c-contact-block ul { display: flex; flex-direction: column; gap: .85rem; }
.c-contact-block li { display: flex; gap: .7rem; align-items: flex-start; color: var(--c-text-soft); font-size: .95rem; line-height: 1.6; }
.c-contact-block li i { color: var(--c-accent); margin-top: .22rem; flex-shrink: 0; width: 18px; }
.c-contact-form-wrap { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 2.25rem; }
.c-map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 3px solid var(--c-border); }
.c-map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }


.s-legal { padding: 8.5rem 1.5rem 5rem; }
.c-legal-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .c-legal-layout { grid-template-columns: 270px 1fr; align-items: start; } }
.c-legal-nav { background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 1.5rem; }
@media (min-width: 900px) { .c-legal-nav { position: sticky; top: 6.5rem; } }
.c-legal-nav ul { display: flex; flex-direction: column; gap: .4rem; }
.c-legal-nav a { color: var(--c-text-soft); font-size: .89rem; padding: .5rem .75rem; border-radius: 8px; display: block; transition: background .25s ease, color .25s ease; }
.c-legal-nav a:hover { background: var(--c-navy-tint); color: var(--c-navy); }
.c-legal-content { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 2.5rem; }
.c-legal-content section, .c-legal-content .c-cookie-block { margin-bottom: 2.6rem; scroll-margin-top: 6.5rem; }
.c-legal-content section:last-child { margin-bottom: 0; }
.c-legal-content h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.c-legal-content p { color: var(--c-text-soft); line-height: 1.8; font-size: .97rem; margin-bottom: 1rem; }
.c-legal-content p:last-child { margin-bottom: 0; }
.c-legal-content ul, .c-legal-content ol { padding-left: 1.3rem; margin: 1rem 0; display: flex; flex-direction: column; gap: .55rem; }
.c-legal-content ul { list-style: disc; }
.c-legal-content ol { list-style: decimal; }
.c-legal-content li { color: var(--c-text-soft); line-height: 1.7; font-size: .97rem; }
.c-legal-updated { display: inline-block; font-size: .82rem; color: var(--c-text-soft); background: var(--c-navy-tint); padding: .4rem .9rem; border-radius: var(--radius-full); margin-bottom: 2rem; }


.c-cookie-block { border-left: 4px solid var(--c-teal); background: var(--c-bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.6rem 1.9rem; }
.c-cookie-block:nth-of-type(4n+2) { border-color: var(--c-accent); }
.c-cookie-block:nth-of-type(4n+3) { border-color: var(--c-gold); }
.c-cookie-block:nth-of-type(4n) { border-color: var(--c-navy); }


.c-consent-overlay {
  position: fixed; inset: 0; background: rgba(18,25,47,.62); z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility 0s linear .35s;
}
.c-consent-overlay.is-active { opacity: 1; visibility: visible; transition: opacity .35s ease; }
.c-consent-modal {
  background: var(--c-surface); border-radius: var(--radius-lg); max-width: 560px; width: 100%;
  max-height: 88vh; overflow-y: auto; padding: 2.25rem; border: 2px solid var(--c-navy);
}
.c-consent-modal h2 { font-size: 1.4rem; margin-bottom: .75rem; }
.c-consent-modal > p { color: var(--c-text-soft); line-height: 1.7; margin-bottom: 1.5rem; font-size: .92rem; }
.c-consent-modal > p a { color: var(--c-teal-dark); text-decoration: underline; }
.c-consent-cat { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--c-border); }
.c-consent-cat:last-of-type { border-bottom: none; }
.c-consent-cat h3 { font-size: .97rem; color: var(--c-navy); margin-bottom: .3rem; font-family: 'Space Grotesk'; }
.c-consent-cat p { font-size: .84rem; color: var(--c-text-soft); line-height: 1.55; }
.c-toggle { position: relative; width: 46px; height: 26px; flex-shrink: 0; margin-top: .2rem; }
.c-toggle input { opacity: 0; width: 100%; height: 100%; position: absolute; cursor: pointer; margin: 0; z-index: 2; }
.c-toggle__track { position: absolute; inset: 0; background: var(--c-border); border-radius: 999px; transition: background .3s ease; }
.c-toggle__track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .3s ease; }
.c-toggle input:checked + .c-toggle__track { background: var(--c-teal); }
.c-toggle input:checked + .c-toggle__track::after { transform: translateX(20px); }
.c-toggle input:disabled + .c-toggle__track { background: var(--c-navy); opacity: .55; }
.c-consent-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.c-consent-actions .c-btn { flex: 1; min-width: 140px; }
.c-consent-gear {
  position: fixed; bottom: 1.25rem; left: 1.25rem; width: 50px; height: 50px; border-radius: 50%;
  background: var(--c-navy); color: #fff; border: none; display: flex; align-items: center;
  justify-content: center; font-size: 1.15rem; z-index: 400;
  transition: background .3s ease, transform .3s ease;
}
.c-consent-gear:hover { background: var(--c-accent); transform: rotate(30deg); }


.s-thanks { padding: 9rem 1.5rem 6rem; text-align: center; }
.c-envelope { width: 220px; height: 150px; margin: 0 auto 2.75rem; position: relative; perspective: 600px; }
.c-envelope__body { position: absolute; inset: 0; background: var(--c-navy-tint); border: 3px solid var(--c-navy); border-radius: 12px; overflow: hidden; }
.c-envelope__body::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 60%; background: var(--c-bg-alt); clip-path: polygon(0 100%, 50% 30%, 100% 100%); }
.c-envelope__flap {
  position: absolute; top: -3px; left: -3px; right: -3px; height: 78px; background: var(--c-teal);
  clip-path: polygon(0 0, 100% 0, 50% 90%);
  transform-origin: top center; transform-style: preserve-3d;
  animation: flapOpen 2s ease forwards; border-top-left-radius: 10px; border-top-right-radius: 10px;
}
@keyframes flapOpen { 0% { transform: rotateX(0deg); } 45% { transform: rotateX(180deg); } 100% { transform: rotateX(180deg); } }
.c-envelope__letter {
  position: absolute; left: 50%; bottom: 8px; width: 150px; height: 100px; background: #fff;
  border: 2px solid var(--c-navy); border-radius: 6px; transform: translate(-50%, 10px); opacity: 0;
  box-shadow: var(--shadow-letter);
  animation: letterSlide 2s ease forwards;
}
.c-envelope__letter span { position: absolute; left: 14px; right: 14px; height: 3px; background: var(--c-border); border-radius: 2px; }
.c-envelope__letter span:nth-child(1) { top: 22px; }
.c-envelope__letter span:nth-child(2) { top: 38px; width: 70%; }
.c-envelope__letter span:nth-child(3) { top: 54px; width: 85%; }
@keyframes letterSlide { 0%, 48% { transform: translate(-50%, 10px); opacity: 0; } 70% { opacity: 1; } 100% { transform: translate(-50%, -75px); opacity: 1; } }
.c-thanks-text { opacity: 0; animation: fadeUp .8s ease forwards; animation-delay: 1.95s; }
.c-thanks-text h1 { margin-bottom: 1rem; font-size: clamp(2rem, 3vw + 1rem, 2.8rem); }
.c-thanks-text p { color: var(--c-text-soft); max-width: 52ch; margin: 0 auto 2rem; line-height: 1.75; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 899px) {
  .s-page-header__inner { max-width: 100%; }
}