:root {
  --c-bg: #FAF7F2;
  --c-bg-alt: #F1EAE0;
  --c-surface: #FFFFFF;
  --c-surface-tint: #FDFBF7;
  --c-text: #2A2733;
  --c-text-muted: #63596c;
  --c-text-soft: #8b8293;
  --c-primary: #2C3454;
  --c-primary-dark: #1B2038;
  --c-primary-soft: #4A5578;
  --c-teal: #3E6B67;
  --c-teal-soft: #DCE9E6;
  --c-accent: #C1531F;
  --c-accent-bright: #E2672E;
  --c-accent-soft: #F6E2D4;
  --c-border: rgba(44,52,84,0.12);
  --c-border-strong: rgba(44,52,84,0.22);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(30,25,45,0.06), 0 1px 1px rgba(30,25,45,0.04);
  --shadow-md: 0 8px 24px -8px rgba(30,25,45,0.15), 0 2px 6px rgba(30,25,45,0.06);
  --shadow-lg: 0 24px 48px -16px rgba(30,25,45,0.22), 0 8px 16px -8px rgba(30,25,45,0.1);
  --shadow-glow: 0 0 0 1px rgba(193,83,31,0.15), 0 14px 32px -12px rgba(193,83,31,0.35);

  --gradient-hero: linear-gradient(135deg, #2C3454 0%, #3E6B67 100%);
  --gradient-accent: linear-gradient(135deg, #E2672E 0%, #C1531F 100%);

  --ease: cubic-bezier(.4,0,.2,1);
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Red Hat Text', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

h1, h2, h3, h4 {
  font-family: 'Red Hat Display', sans-serif;
  color: var(--c-primary-dark);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 4vw + 1rem, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 2.6vw + 1rem, 2.8rem); }
h3 { font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem); }

p { margin: 0 0 1em; color: var(--c-text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 0; margin: 0; list-style: none; }

.u-hidden { display: none !important; }
.u-text-center { text-align: center; }


.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .9rem 1.7rem;
  border-radius: var(--radius-md);
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  min-height: 48px;

  &.c-btn--accent {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
    &:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(193,83,31,0.45); }
  }
  &.c-btn--outline {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-border-strong);
    &:hover { background: var(--c-bg-alt); border-color: var(--c-primary); }
  }
  &.c-btn--ghost {
    background: transparent;
    color: var(--c-text-muted);
    &:hover { color: var(--c-primary); }
  }
  &.c-btn--ghost-light {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    &:hover { background: rgba(255,255,255,0.22); }
  }
  &.c-btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
  &.c-btn--sm { padding: .6rem 1.1rem; font-size: .82rem; min-height: 40px; }
}


.c-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(14px);
  z-index: 500;
  transition: box-shadow .2s var(--ease);
  border-bottom: 1px solid var(--c-border);

  .c-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 clamp(1.2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .c-nav__logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--c-primary-dark);
    flex-shrink: 0;
    img { border-radius: 8px; }
  }
  .c-nav__links {
    display: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
  }
  .c-nav__link {
    position: relative;
    font-weight: 600;
    font-size: .95rem;
    color: var(--c-text);
    padding: .4rem 0;
    transition: color .2s var(--ease);
    &::after {
      content: '';
      position: absolute;
      left: 0; bottom: -2px;
      width: 0; height: 2px;
      background: var(--gradient-accent);
      transition: width .3s var(--ease);
    }
    &:hover, &.is-active { color: var(--c-accent); }
    &:hover::after, &.is-active::after { width: 100%; }
  }
  .c-nav__cta { display: none; flex-shrink: 0; }
  .c-nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    background: var(--c-surface);
    color: var(--c-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s var(--ease), transform .2s var(--ease);
    &:hover { background: var(--c-bg-alt); }
    &:active { transform: scale(.94); }
  }
}

@media (min-width: 960px) {
  .c-nav {
    .c-nav__links { display: flex; }
    .c-nav__cta { display: inline-flex; }
    .c-nav__burger { display: none; }
  }
}


.c-tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  display: flex;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -8px 30px -10px rgba(30,25,45,0.2);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: .4rem .4rem calc(.4rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .35s var(--ease);

  &.is-active { transform: translateY(0); }

  .c-tabbar__tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    padding: .5rem .2rem;
    border-radius: var(--radius-md);
    color: var(--c-text-soft);
    font-size: .68rem;
    font-weight: 700;
    transition: color .2s var(--ease), background .2s var(--ease);
    min-height: 48px;
    i { font-size: 1.15rem; }
    &.is-active { color: var(--c-accent); background: var(--c-accent-soft); }
  }
}

@media (min-width: 960px) {
  .c-tabbar { display: none; }
}


.c-cookie {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transform: translateY(-110%);
  transition: transform .5s var(--ease);
  padding: 1rem;

  &.is-visible { transform: translateY(0); }

  .c-cookie__bar {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--c-primary-dark);
    color: #EFEAF2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .c-cookie__text {
    margin: 0;
    font-size: .88rem;
    color: #D8D2DE;
    flex: 1;
    a { color: var(--c-accent-bright); text-decoration: underline; }
  }
  .c-cookie__actions { display: flex; gap: .6rem; flex-shrink: 0; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .c-cookie .c-cookie__bar { flex-direction: column; align-items: stretch; }
  .c-cookie .c-cookie__actions { justify-content: stretch; }
  .c-cookie .c-cookie__actions .c-btn { flex: 1; }
}

.c-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(27,32,56,0.55);
  backdrop-filter: blur(4px);
  padding: 1.2rem;

  &.is-visible { display: flex; }

  .c-cookie-modal__panel {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    max-width: 520px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    h3 { margin-bottom: .4rem; }
    > p { font-size: .9rem; }
  }
  .c-cookie-modal__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--c-border);
    strong { font-family: 'Red Hat Display', sans-serif; font-size: .95rem; color: var(--c-primary-dark); }
    p { margin: .2rem 0 0; font-size: .82rem; }
  }
  .c-cookie-modal__locked { font-size: .78rem; color: var(--c-teal); font-weight: 700; }
  .c-cookie-modal__actions {
    display: flex;
    gap: .7rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
    .c-btn { flex: 1; }
  }
}

.c-switch {
  position: relative;
  display: inline-block;
  width: 46px; height: 26px;
  flex-shrink: 0;
  input { opacity: 0; width: 0; height: 0; }
  span {
    position: absolute; inset: 0;
    background: var(--c-border-strong);
    border-radius: 20px;
    cursor: pointer;
    transition: background .25s var(--ease);
    &::before {
      content: '';
      position: absolute;
      left: 3px; top: 3px;
      width: 20px; height: 20px;
      background: #fff;
      border-radius: 50%;
      transition: transform .25s var(--ease);
      box-shadow: var(--shadow-sm);
    }
  }
  input:checked + span { background: var(--gradient-accent); }
  input:checked + span::before { transform: translateX(20px); }
}


.s-hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--nav-h) * -1);
  padding-top: var(--nav-h);

  .s-hero__panel-left {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    background: var(--gradient-hero);
    z-index: 2;
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    animation: heroSlide 1.1s var(--ease) .2s both;
  }
  .s-hero__mark {
    color: rgba(255,255,255,0.85);
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  .s-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .s-hero__img { width: 100%; height: 100%; object-fit: cover; }
  .s-hero__content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem;
    color: #fff;
    opacity: 0;
    animation: heroFade .9s var(--ease) 1.05s both;
  }
  .s-hero__eyebrow {
    display: inline-block;
    padding: .4rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
  }
  .s-hero__title {
    color: #fff;
    font-size: clamp(2.1rem, 3.6vw + 1rem, 3.6rem);
    text-shadow: 0 4px 30px rgba(0,0,0,0.25);
  }
  .s-hero__text {
    color: rgba(255,255,255,0.88);
    font-size: 1.08rem;
    max-width: 620px;
    margin: 0 auto 1.8rem;
  }
  .s-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@keyframes heroSlide { from { width: 100%; } to { width: 50%; } }
@keyframes heroFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 720px) {
  .s-hero .s-hero__panel-left { display: none; }
  .s-hero .s-hero__content { padding: 2rem 1.2rem; }
}


.s-section__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .8rem;
}

section { padding: clamp(3.5rem, 6vw, 6.5rem) clamp(1.2rem, 4vw, 3rem); }


.s-chips {
  padding-top: clamp(2rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
  .s-chips__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
  .s-chips__label { font-weight: 600; color: var(--c-text-muted); margin-bottom: 1.2rem; }
  .s-chips__row { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
  .s-chips__row--static { justify-content: flex-start; }
}
.c-chip {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-primary);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  &:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--c-accent); }
}


.s-intro, .s-content-block {
  .s-intro__inner, .s-content-block__row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .s-content-block__row--reverse { direction: rtl; > * { direction: ltr; } }
}
.s-content-block--alt { background: var(--c-bg-alt); }
.s-intro__image img, .s-content-block__image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.s-intro__short, .s-content-block__short {
  font-weight: 700;
  color: var(--c-primary);
  border-left: 3px solid var(--c-accent);
  padding-left: 1rem;
}

@media (min-width: 900px) {
  .s-intro__inner, .s-content-block__row { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}


.s-situations {
  .s-situations__head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
  .s-situations__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .s-situations__more { text-align: center; margin-top: 2.5rem; }
}
.s-situations--full { padding-top: 0; }

.c-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  &:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-border-strong); }
  h3 { margin-bottom: .5rem; font-size: 1.15rem; }
  p { font-size: .92rem; margin-bottom: 0; }
}
.c-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.c-card__icon--lg { width: 60px; height: 60px; background: var(--gradient-accent); border-radius: var(--radius-lg); }

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--c-accent);
  transition: gap .2s var(--ease);
  &:hover { gap: 1rem; }
}


.s-timeline {
  .s-timeline__head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
  .s-timeline__list { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.4rem; }
}
.c-tl-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  &:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
  .c-tl-item__num {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--c-accent-soft);
    -webkit-text-stroke: 1.5px var(--c-accent);
    flex-shrink: 0;
    min-width: 50px;
  }
  h3 { margin-bottom: .35rem; }
  p { margin-bottom: 0; font-size: .92rem; }
}


.s-why {
  background: var(--c-bg-alt);
  .s-why__head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
  .s-why__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}


.s-compare {
  .s-compare__head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
}
.c-table-wrap {
  max-width: 1150px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.c-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  min-width: 640px;

  th, td {
    padding: 1.1rem 1.3rem;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    font-size: .92rem;
  }
  thead th {
    font-family: 'Red Hat Display', sans-serif;
    background: var(--c-primary-dark);
    color: #fff;
    font-size: .95rem;
    position: relative;
  }
  .c-table__feature { text-align: left; font-weight: 700; color: var(--c-primary-dark); background: var(--c-surface-tint); }
  thead .c-table__feature { background: var(--c-primary-dark); color: #fff; }
  .c-table__recommended { background: var(--c-accent); position: relative; }
  .c-table__badge {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: .3rem;
  }
  .c-table__yes { color: var(--c-teal); font-size: 1.1rem; }
  .c-table__no { color: var(--c-text-soft); font-size: 1.1rem; }
  .c-table__partial { font-size: .8rem; color: var(--c-text-soft); font-style: italic; }
  tbody tr:last-child td { border-bottom: none; }
  tbody tr:hover td { background: var(--c-bg-alt); }
}


.s-gallery {
  .s-gallery__head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
  .s-gallery__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
}
.c-gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
  img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
  .c-gallery-item__overlay {
    position: absolute; inset: 0;
    background: rgba(27,32,56,0.35);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem;
    opacity: 0;
    transition: opacity .3s var(--ease);
  }
  &:hover img { transform: scale(1.06); }
  &:hover .c-gallery-item__overlay { opacity: 1; }
}


.s-faq {
  background: var(--c-bg-alt);
  .s-faq__head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
  .s-faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
}
.c-faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease);
  &:hover { box-shadow: var(--shadow-md); }
  summary {
    cursor: pointer;
    font-weight: 700;
    font-family: 'Red Hat Display', sans-serif;
    color: var(--c-primary-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    &::after { content: '+'; font-size: 1.3rem; color: var(--c-accent); }
  }
  &[open] summary::after { content: '−'; }
  p { margin: .9rem 0 0; }
}


.s-page-hero {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--gradient-hero);
  .s-page-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    h1 { color: #fff; }
    p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
  }
  .s-section__eyebrow { color: var(--c-accent-bright); }
}
.s-page-hero--legal { padding-bottom: clamp(2rem, 3vw, 3rem); }


.s-plain {
  .s-plain__inner { max-width: 780px; margin: 0 auto; }
}
.s-plain--tint { background: var(--c-bg-alt); }

.c-check-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.2rem;
  li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-sm);
    font-size: .95rem;
    color: var(--c-text-muted);
    i { color: var(--c-accent); margin-top: .2rem; flex-shrink: 0; }
  }
}

.c-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.3rem;
  counter-reset: step;
  li {
    position: relative;
    padding: 1.1rem 1.3rem 1.1rem 3.6rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: .95rem;
    color: var(--c-text-muted);
    counter-increment: step;
    &::before {
      content: counter(step);
      position: absolute;
      left: 1.1rem; top: 50%;
      transform: translateY(-50%);
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--gradient-accent);
      color: #fff;
      font-weight: 800;
      font-size: .85rem;
      display: flex; align-items: center; justify-content: center;
    }
    strong { color: var(--c-primary-dark); }
  }
}


.s-cta-mid {
  .s-cta-mid__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4rem);
    box-shadow: var(--shadow-lg);
    h2, p { color: #fff; }
    p { color: rgba(255,255,255,0.85); }
  }
}


.s-contact {
  .s-contact__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 960px) {
  .s-contact .s-contact__grid { grid-template-columns: .85fr 1.15fr; }
}
.c-info-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  .c-info-card__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    i { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--c-accent-soft); color: var(--c-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    div { display: flex; flex-direction: column; gap: .15rem; }
    strong { font-family: 'Red Hat Display', sans-serif; color: var(--c-primary-dark); font-size: .9rem; }
    a, span { color: var(--c-text-muted); font-size: .95rem; }
    a:hover { color: var(--c-accent); }
  }
}
.c-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  iframe { display: block; }
}
.c-form-card {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.8rem, 3vw, 2.8rem);
}
.c-form-row {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  label { font-weight: 700; font-size: .88rem; color: var(--c-primary-dark); }
  input[type="text"], input[type="email"], textarea {
    padding: .85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border-strong);
    background: var(--c-surface-tint);
    font-family: 'Red Hat Text', sans-serif;
    font-size: .95rem;
    color: var(--c-text);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    &:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-soft); }
  }
  textarea { resize: vertical; min-height: 120px; }
}
.c-form-row--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .7rem;
  input { margin-top: .25rem; width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--c-accent); }
  label { font-weight: 500; font-size: .85rem; color: var(--c-text-muted); a { color: var(--c-accent); text-decoration: underline; } }
}
.c-form-submit { width: 100%; }


.s-legal {
  .s-legal__list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.c-legal-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-teal);
  box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  h2 { font-size: 1.25rem; margin-bottom: .7rem; }
  p { font-size: .95rem; margin-bottom: 0; }
}
.s-legal--cookies .c-legal-card { border-left-color: var(--c-accent); }


.s-thanks {
  min-height: calc(70vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  .s-thanks__inner { max-width: 620px; }
  h1 { margin-bottom: .8rem; }
  p { font-size: 1.1rem; margin-bottom: 2.2rem; }
}


.c-footer {
  background: var(--c-primary-dark);
  color: #D8D2DE;
  margin-top: 2rem;

  .c-footer__cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem 3rem;
    h2, p { color: #fff; }
    p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 1.8rem; }
  }
  .c-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem clamp(1.2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .c-footer__col {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    h4 { color: #fff; font-size: .95rem; margin-bottom: .3rem; }
    a, span { color: rgba(216,210,222,0.85); font-size: .9rem; transition: color .2s var(--ease); display: flex; align-items: center; gap: .5rem; }
    a:hover { color: var(--c-accent-bright); }
    p { color: rgba(216,210,222,0.7); font-size: .88rem; }
  }
  .c-footer__logo { color: #fff; margin-bottom: .3rem; }
  .c-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem clamp(1.2rem, 4vw, 3rem) 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .6rem;
    font-size: .8rem;
    color: rgba(216,210,222,0.55);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
}
.c-footer--simple .c-footer__cta { display: none; }

@media (min-width: 700px) {
  .c-footer .c-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}


@media (max-width: 599px) {
  section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .c-table { min-width: 560px; }
}