:root {
  --c-navy: #10131F;
  --c-navy-soft: #1B2036;
  --c-navy-2: #232A45;
  --c-cream: #F6F3EC;
  --c-paper: #FDFCF9;
  --c-ink: #1B1D23;
  --c-muted: #5C6070;
  --c-line: #E4E0D6;
  --c-coral: #FF5A3C;
  --c-coral-2: #FFA85C;
  --c-teal: #16BEBB;
  --c-teal-2: #0E8F8C;
  --c-amber: #FFB238;

  --g-hero: linear-gradient(150deg, #10131F 0%, #1B2036 45%, #0E8F8C 130%);
  --g-cta: linear-gradient(120deg, var(--c-coral), var(--c-coral-2));
  --g-teal: linear-gradient(120deg, var(--c-teal), var(--c-teal-2));
  --g-text: linear-gradient(120deg, var(--c-coral), var(--c-amber));
  --g-dark: linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-2) 100%);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16,19,31,0.07), 0 1px 1px rgba(16,19,31,0.05);
  --shadow-md: 0 8px 20px -6px rgba(16,19,31,0.14), 0 3px 8px rgba(16,19,31,0.08);
  --shadow-lg: 0 24px 48px -14px rgba(16,19,31,0.28), 0 10px 20px -10px rgba(16,19,31,0.16);
  --shadow-teal: 0 14px 32px -10px rgba(22,190,187,0.35);
  --shadow-coral: 0 14px 32px -10px rgba(255,90,60,0.35);

  --nav-h: 78px;
  --section-pad: clamp(3.5rem, 8vw, 7rem);

  --fs-hero: clamp(2.5rem, 4.6vw + 1.2rem, 5rem);
  --fs-h1: clamp(2.1rem, 2.6vw + 1.2rem, 3.2rem);
  --fs-h2: clamp(1.6rem, 1.6vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.15rem, 0.6vw + 1rem, 1.4rem);
  --fs-body: clamp(1rem, 0.2vw + 0.9rem, 1.1rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Schibsted Grotesk', sans-serif;
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 0.6em; }
p { margin: 0 0 1em; color: var(--c-muted); }
.s-h1 { font-size: var(--fs-h1); color: var(--c-ink); }
.s-h2 { font-size: var(--fs-h2); color: var(--c-ink); }

.s-section__inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }
.s-section__head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.s-section__lead { font-size: 1.05rem; }

.c-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(22,190,187,0.12);
  color: var(--c-teal-2);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.c-tag--dark { background: var(--c-navy); color: var(--c-cream); }


.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  min-height: 44px;
  white-space: nowrap;
}
.c-btn--primary { background: var(--g-cta); color: #fff; box-shadow: var(--shadow-coral); }
.c-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(255,90,60,0.45); }
.c-btn--ghost { background: transparent; color: var(--c-cream); border: 1.5px solid rgba(246,243,236,0.35); }
.c-btn--ghost:hover { background: rgba(246,243,236,0.1); border-color: rgba(246,243,236,0.6); }
.c-btn--light { background: var(--c-cream); color: var(--c-navy); }
.c-btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.c-btn--outline { background: transparent; color: var(--c-navy); border: 1.5px solid var(--c-line); }
.c-btn--outline:hover { border-color: var(--c-navy); background: var(--c-navy); color: #fff; }


.c-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--c-navy); box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: box-shadow .3s ease; }
.c-nav.is-scrolled { box-shadow: 0 16px 34px -12px rgba(0,0,0,0.5); }
.c-nav__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.85rem clamp(1.2rem, 4vw, 2.5rem); height: var(--nav-h); }
.c-nav__logo img { height: 34px; width: auto; }
.c-nav__links { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.c-nav__links a { color: rgba(246,243,236,0.78); font-weight: 500; font-size: 0.95rem; transition: color .25s ease; position: relative; padding: 4px 0; }
.c-nav__links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--g-cta); transition: width .3s ease; }
.c-nav__links a:hover, .c-nav__links a.is-active { color: var(--c-cream); }
.c-nav__links a:hover::after, .c-nav__links a.is-active::after { width: 100%; }
.c-nav__cta { padding: 0.7rem 1.3rem; font-size: 0.9rem; }
.c-nav__toggle { display: none; background: none; border: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.c-nav__toggle span { display: block; width: 24px; height: 2px; background: var(--c-cream); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

@media (max-width: 900px) {
  .c-nav__links, .c-nav__cta { display: none; }
  .c-nav__toggle { display: flex; }
}


.c-sheet { position: fixed; inset: 0; z-index: 1200; pointer-events: none; }
.c-sheet__backdrop { position: absolute; inset: 0; background: rgba(16,19,31,0.55); opacity: 0; transition: opacity .35s ease; }
.c-sheet__panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--c-paper);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 0.8rem 1.5rem 2.2rem;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.32,.72,0,1);
  box-shadow: 0 -20px 50px rgba(16,19,31,0.3);
  max-height: 80vh;
  overflow-y: auto;
}
.c-sheet.is-open { pointer-events: auto; }
.c-sheet.is-open .c-sheet__backdrop { opacity: 1; }
.c-sheet.is-open .c-sheet__panel { transform: translateY(0); }
.c-sheet__handle { width: 44px; height: 5px; border-radius: var(--r-pill); background: var(--c-line); margin: 0.4rem auto 1.4rem; }
.c-sheet__nav { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.4rem; }
.c-sheet__nav a { display: flex; align-items: center; gap: 0.9rem; padding: 0.95rem 0.6rem; border-radius: var(--r-md); font-weight: 600; color: var(--c-ink); transition: background .25s ease; min-height: 44px; }
.c-sheet__nav a i { width: 22px; color: var(--c-teal-2); font-size: 1.05rem; }
.c-sheet__nav a:hover { background: var(--c-cream); }
.c-sheet__cta { width: 100%; }


.s-hero { position: relative; min-height: calc(100vh - var(--nav-h)); margin-top: var(--nav-h); overflow: hidden; background: var(--c-navy); display: flex; align-items: center; justify-content: center; }
.s-hero__curtain { position: absolute; top: 0; bottom: 0; width: 50%; z-index: 2; }
.s-hero__curtain--left { left: 50%; background: var(--g-hero); animation: curtainLeft 1.1s cubic-bezier(.65,0,.35,1) 0.2s forwards; }
.s-hero__curtain--right { right: 50%; background-size: cover; background-position: center; animation: curtainRight 1.1s cubic-bezier(.65,0,.35,1) 0.2s forwards; }
.s-hero__curtain--right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,19,31,0.55), rgba(16,19,31,0.15)); }

@keyframes curtainLeft { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@keyframes curtainRight { from { transform: translateX(0); } to { transform: translateX(100%); } }

.s-hero__content {
  position: relative; z-index: 3;
  max-width: 780px;
  text-align: center;
  padding: 2rem clamp(1.2rem, 4vw, 2rem);
  opacity: 0;
  transform: translateY(28px);
  animation: heroContentIn 0.9s cubic-bezier(.2,.7,.2,1) 1.15s forwards;
}
@keyframes heroContentIn { to { opacity: 1; transform: translateY(0); } }

.s-hero__eyebrow { color: var(--c-amber); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 1rem; }
.s-hero__title { font-size: var(--fs-hero); color: var(--c-cream); font-weight: 800; margin-bottom: 1.1rem; }
.s-hero__title span { background: var(--g-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.s-hero__lead { color: rgba(246,243,236,0.82); font-size: clamp(1rem, 0.4vw + 1rem, 1.2rem); max-width: 620px; margin: 0 auto 2rem; }
.s-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


.s-intro, .s-process, .s-lessons, .s-diag-flow, .s-facts { background: var(--c-cream); padding: var(--section-pad) 0; }
.s-services, .s-story, .s-approach, .s-diag-output, .s-pricing, .s-legal { background: var(--c-paper); padding: var(--section-pad) 0; }
.s-gallery, .s-sectors, .s-diag-scope, .s-included { background: var(--c-navy); padding: var(--section-pad) 0; }
.s-gallery .s-h2, .s-sectors .s-h2, .s-diag-scope .s-h2, .s-included .s-h2 { color: var(--c-cream); }
.s-gallery .s-section__lead, .s-sectors .s-section__lead, .s-diag-scope .s-section__lead { color: rgba(246,243,236,0.7); }
.s-page-hero { background: var(--g-dark); padding: calc(var(--nav-h) + 4rem) 0 4rem; }
.s-page-hero .s-h1, .s-page-hero__lead { color: var(--c-cream); }
.s-page-hero__lead { max-width: 640px; color: rgba(246,243,236,0.78); font-size: 1.1rem; }

.s-intro__grid, .s-story__grid, .s-approach__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.s-approach__grid { grid-template-columns: 0.9fr 1.1fr; }
.s-intro__media img, .s-story__grid img, .s-approach__grid img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; }


.s-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.6rem; }
.c-card { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.c-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-teal); }
.c-card__icon { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--g-teal); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; margin-bottom: 1.2rem; box-shadow: var(--shadow-teal); }
.c-card h3 { font-size: var(--fs-h3); }
.c-card p { margin: 0; font-size: 0.96rem; }


.s-process__list { display: flex; flex-direction: column; gap: 1.2rem; max-width: 820px; margin: 0 auto; }
.c-process { display: flex; gap: 1.6rem; background: var(--c-paper); border-radius: var(--r-lg); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--c-line); transition: box-shadow .3s ease, transform .3s ease; }
.c-process:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.c-process__num { font-weight: 800; font-size: 1.6rem; background: var(--g-text); -webkit-background-clip: text; background-clip: text; color: transparent; min-width: 48px; }
.c-process h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.c-process p { margin: 0; font-size: 0.95rem; }


.s-gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.c-gallery-item { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: 0; }
.c-gallery-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .5s ease; }
.c-gallery-item:hover img { transform: scale(1.06); }
.c-gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.1rem; background: linear-gradient(0deg, rgba(16,19,31,0.85), transparent); color: var(--c-cream); font-size: 0.9rem; font-weight: 600; }


.s-faq { background: var(--c-paper); padding: var(--section-pad) 0; }
.s-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.s-faq__list { display: flex; flex-direction: column; gap: 1rem; }
.c-faq-item { background: var(--c-cream); border-radius: var(--r-lg); border: 1px solid var(--c-line); overflow: hidden; transition: box-shadow .3s ease; }
.c-faq-item:hover { box-shadow: var(--shadow-sm); }
.c-faq-item__q { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 1.5rem; font-weight: 600; font-size: 1rem; text-align: left; color: var(--c-ink); min-height: 44px; }
.c-faq-item__q i { transition: transform .3s ease; color: var(--c-teal-2); }
.c-faq-item.is-open .c-faq-item__q i { transform: rotate(180deg); }
.c-faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 1.5rem; }
.c-faq-item.is-open .c-faq-item__a { max-height: 320px; padding: 0 1.5rem 1.4rem; }
.c-faq-item__a p { margin: 0; font-size: 0.95rem; }


.s-cta { background: var(--g-dark); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.s-cta::before { content: ''; position: absolute; width: 500px; height: 500px; background: var(--g-teal); opacity: 0.25; border-radius: 50%; filter: blur(80px); top: -200px; right: -150px; }
.s-cta__inner { text-align: center; max-width: 620px; position: relative; z-index: 1; }
.s-cta__inner h2 { color: var(--c-cream); font-size: var(--fs-h2); }
.s-cta__inner p { color: rgba(246,243,236,0.75); margin-bottom: 1.8rem; }


.s-sectors__grid, .s-diag-scope__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.c-card--sector, .c-card--diag { background: var(--c-navy-soft); border: 1px solid rgba(246,243,236,0.1); }
.c-card--sector i, .c-card--diag i { font-size: 1.6rem; color: var(--c-teal); margin-bottom: 1rem; display: block; }
.c-card--sector h3, .c-card--diag h3 { color: var(--c-cream); }
.c-card--sector p, .c-card--diag p { color: rgba(246,243,236,0.68); }
.c-card--sector:hover, .c-card--diag:hover { border-color: var(--c-teal); }

.s-lessons__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.c-card--lesson { position: relative; }
.c-card__index { display: block; font-size: 2rem; font-weight: 800; color: var(--c-line); margin-bottom: 0.6rem; }


.s-pricing__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.6rem; align-items: stretch; }
.c-price-card { position: relative; background: var(--c-cream); border-radius: var(--r-lg); border: 1px solid var(--c-line); padding: 2.2rem 1.8rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.c-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.c-price-card--featured { background: var(--g-dark); border: none; }
.c-price-card--featured h3, .c-price-card--featured .c-price-card__price, .c-price-card--featured .c-price-card__desc { color: var(--c-cream); }
.c-price-card--featured ul li { color: rgba(246,243,236,0.82); }
.c-price-card__badge { position: absolute; top: -14px; left: 1.8rem; background: var(--g-cta); color: #fff; padding: 0.3rem 0.9rem; border-radius: var(--r-pill); font-size: 0.75rem; font-weight: 700; box-shadow: var(--shadow-coral); }
.c-price-card__price { font-size: 1.5rem; font-weight: 800; margin: 0.4rem 0 0.8rem; background: var(--g-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.c-price-card--featured .c-price-card__price { -webkit-text-fill-color: unset; background: none; color: var(--c-amber); }
.c-price-card__desc { font-size: 0.94rem; margin-bottom: 1.2rem; }
.c-price-card ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; }
.c-price-card ul li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--c-muted); }
.c-price-card ul li i { color: var(--c-teal-2); margin-top: 3px; }
.c-price-card .c-btn { margin-top: auto; }
.s-pricing__note { max-width: 780px; margin: 2.5rem auto 0; text-align: center; font-size: 0.9rem; }

.s-included__table { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--c-navy-soft); }
.c-included-row { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); align-items: center; padding: 1rem 1.4rem; border-bottom: 1px solid rgba(246,243,236,0.08); }
.c-included-row:last-child { border-bottom: none; }
.c-included-row--head { background: rgba(246,243,236,0.05); font-weight: 700; color: var(--c-cream); }
.c-included-row span { color: rgba(246,243,236,0.75); font-size: 0.9rem; text-align: center; }
.c-included-row span:first-child { text-align: left; color: var(--c-cream); }
.c-included-row i { color: var(--c-teal); }


.s-diag-flow__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.s-diag-flow__grid img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.s-diag-output__list { display: flex; flex-direction: column; gap: 1.2rem; max-width: 780px; margin: 0 auto; }


.s-facts__strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.c-fact { display: flex; align-items: center; gap: 1rem; background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.c-fact i { font-size: 1.4rem; color: var(--c-teal-2); }
.c-fact strong { display: block; font-size: 0.98rem; }
.c-fact span { font-size: 0.82rem; color: var(--c-muted); }


.s-contact__split { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.s-contact__map { min-height: 340px; }
.s-contact__map iframe { width: 100%; height: 100%; min-height: 340px; }
.s-contact__form-wrap { padding: var(--section-pad) clamp(1.2rem, 4vw, 3.5rem); background: var(--c-cream); }
.s-contact__form-lead { margin-bottom: 1.6rem; }
.c-form { display: flex; flex-direction: column; gap: 1.1rem; max-width: 520px; }
.c-form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.c-form__group label { font-size: 0.88rem; font-weight: 600; color: var(--c-ink); }
.c-form__group input, .c-form__group textarea {
  border: 1.5px solid var(--c-line); border-radius: var(--r-md); padding: 0.85rem 1rem;
  font-family: inherit; font-size: 0.98rem; background: var(--c-paper); color: var(--c-ink);
  transition: border-color .25s ease, box-shadow .25s ease;
  min-height: 44px;
}
.c-form__group textarea { min-height: 120px; resize: vertical; }
.c-form__group input:focus, .c-form__group textarea:focus { outline: none; border-color: var(--c-teal); box-shadow: 0 0 0 4px rgba(22,190,187,0.15); }
.c-form__checkbox { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.86rem; color: var(--c-muted); }
.c-form__checkbox input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-teal); }
.c-form__checkbox a { color: var(--c-teal-2); font-weight: 600; }
.c-form__submit { margin-top: 0.6rem; }

@media (max-width: 860px) {
  .s-contact__split { grid-template-columns: 1fr; }
  .s-contact__map { height: 320px; }
}


.s-legal__inner { max-width: 860px; }
.s-legal__updated { font-size: 0.9rem; color: var(--c-muted); margin-bottom: 2.5rem; }
.c-legal-card { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 2rem 2.2rem; box-shadow: var(--shadow-sm); margin-bottom: 1.6rem; }
.c-legal-card h2 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.c-legal-card p { margin: 0; font-size: 0.96rem; }


.s-thanks { min-height: calc(100vh - var(--nav-h) - 260px); margin-top: var(--nav-h); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; gap: 1.6rem; }
.s-thanks__dot { width: 20px; height: 20px; border-radius: 50%; background: var(--g-cta); box-shadow: var(--shadow-coral); transform: scale(0); animation: dotPop 0.6s cubic-bezier(.34,1.56,.64,1) 0.2s forwards; }
@keyframes dotPop { to { transform: scale(1); } }
.s-thanks__title { font-size: var(--fs-h1); opacity: 0; animation: fadeUp 0.7s ease 0.9s forwards; }
@keyframes fadeUp { to { opacity: 1; } }
.s-thanks__link { color: var(--c-teal-2); font-weight: 600; opacity: 0; display: inline-flex; align-items: center; gap: 0.5rem; animation: fadeUp 0.7s ease 1.6s forwards; transition: gap .3s ease; }
.s-thanks__link:hover { gap: 0.8rem; }


.c-footer { background: var(--c-navy); padding: 3.5rem 0 2rem; }
.c-footer__inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 2rem 3rem; }
.c-footer__logo { height: 34px; width: auto; }
.c-footer__links { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; }
.c-footer__links a { color: rgba(246,243,236,0.7); font-size: 0.92rem; transition: color .25s ease; }
.c-footer__links a:hover { color: var(--c-cream); }
.c-footer__contact { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }
.c-footer__contact span { display: flex; align-items: center; gap: 0.6rem; color: rgba(246,243,236,0.7); font-size: 0.88rem; }
.c-footer__contact i { color: var(--c-teal); }
.c-footer__copy { grid-column: 1 / -1; margin: 1.6rem 0 0; padding-top: 1.6rem; border-top: 1px solid rgba(246,243,236,0.1); color: rgba(246,243,236,0.5); font-size: 0.82rem; text-align: center; }
.c-footer__copy a { color: rgba(246,243,236,0.65); }
.c-footer__copy a:hover { color: var(--c-cream); }

@media (max-width: 760px) {
  .c-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .c-footer__links { justify-content: center; }
  .c-footer__contact { align-items: center; }
}


.u-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.u-reveal.is-visible { opacity: 1; transform: translateY(0); }


.c-cookie { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 1500; width: min(94vw, 640px); }
.c-cookie__pill {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between;
  background: var(--c-navy); color: var(--c-cream); border-radius: var(--r-pill);
  padding: 0.7rem 0.8rem 0.7rem 1.4rem; box-shadow: var(--shadow-lg);
  transition: opacity .3s ease, transform .3s ease;
}
.c-cookie__pill p { margin: 0; font-size: 0.85rem; color: rgba(246,243,236,0.85); }
.c-cookie__pill a { color: var(--c-teal); font-weight: 600; }
.c-cookie__actions { display: flex; gap: 0.5rem; }
.c-cookie__btn { border-radius: var(--r-pill); padding: 0.55rem 1.1rem; font-size: 0.82rem; font-weight: 600; border: none; transition: transform .25s ease, opacity .25s ease, background .25s ease; }
.c-cookie__btn--solid { background: var(--g-cta); color: #fff; }
.c-cookie__btn--ghost { background: rgba(246,243,236,0.1); color: var(--c-cream); }
.c-cookie__btn:hover { transform: translateY(-1px); opacity: 0.92; }

.c-cookie__modal {
  display: none; background: var(--c-paper); border-radius: var(--r-lg); padding: 1.8rem 1.8rem 1.5rem;
  box-shadow: var(--shadow-lg); max-height: 80vh; overflow-y: auto;
}
.c-cookie__modal.is-open { display: block; animation: modalIn 0.35s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.c-cookie__modal h3 { margin-bottom: 0.6rem; }
.c-cookie__modal > p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.c-cookie__category { border-top: 1px solid var(--c-line); padding: 0.9rem 0; }
.c-cookie__category-head { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: 0.3rem; }
.c-cookie__category-head input { width: 20px; height: 20px; accent-color: var(--c-teal); }
.c-cookie__category p { font-size: 0.85rem; margin: 0; }
.c-cookie__modal-actions { display: flex; justify-content: flex-end; gap: 0.7rem; margin-top: 1.2rem; }
.c-cookie__pill.u-hidden, .c-cookie__modal.u-hidden { display: none; }


@media (max-width: 960px) {
  .s-intro__grid, .s-story__grid, .s-approach__grid, .s-faq__grid, .s-diag-flow__grid { grid-template-columns: 1fr; }
  .s-approach__grid { grid-template-columns: 1fr; }
  .c-included-row { grid-template-columns: 1.2fr repeat(4, 0.8fr); font-size: 0.85rem; }
}
@media (max-width: 640px) {
  .s-hero__title { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .c-included-row { grid-template-columns: 1fr; gap: 0.4rem; text-align: left; }
  .c-included-row span { text-align: left; }
  .c-included-row--head span:not(:first-child) { display: none; }
  .c-included-row:not(.c-included-row--head) span:not(:first-child)::before { content: attr(data-label); }
}