@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --c-bg: #f3eee7;
  --c-bg-soft: #fbf8f3;
  --c-surface: rgba(255, 255, 255, 0.72);
  --c-surface-strong: rgba(255, 255, 255, 0.9);
  --c-panel: #101114;
  --c-panel-soft: #17191d;
  --c-text: #131416;
  --c-text-soft: #5f625f;
  --c-line: rgba(19, 20, 22, 0.1);
  --c-line-dark: rgba(255, 255, 255, 0.12);
  --c-accent: #c9482d;
  --c-accent-2: #1f7e88;
  --c-accent-soft: rgba(201, 72, 45, 0.12);
  --c-white: #ffffff;

  --f-display: 'Sora', sans-serif;
  --f-body: 'Manrope', sans-serif;

  --nav-h: 82px;
  --wrap: 1240px;
  --gutter: 24px;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow-lg: 0 30px 80px rgba(10, 14, 20, 0.18);
  --shadow-md: 0 18px 48px rgba(10, 14, 20, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background:
    radial-gradient(circle at top left, rgba(201, 72, 45, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(31, 126, 136, 0.1), transparent 22%),
    linear-gradient(180deg, #f7f2eb 0%, #f3eee7 34%, #fbf8f3 100%);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Prevent any section/element from causing horizontal scroll */
section, main, header, footer, article, aside, nav {
  max-width: 100%;
  overflow-x: clip;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.wrap {
  width: min(100%, var(--wrap));
  margin: 0 auto;
  padding-inline: var(--gutter);
  min-width: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--c-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
}

.section-head,
.preview-head {
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  max-width: 720px;
  color: var(--c-text-soft);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 14px 32px rgba(201, 72, 45, 0.25);
}

.btn-primary:hover {
  background: #b94228;
}

.btn-secondary {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.14);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding-block: 14px;
  transition:
    background-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

/* ── TRANSPARENT STATE — over dark hero ── */
.nav:not(.scrolled):not(.nav-solid) .logo-text {
  color: rgba(255, 255, 255, 0.95);
}

.nav:not(.scrolled):not(.nav-solid) .nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.nav:not(.scrolled):not(.nav-solid) .nav-links a:hover,
.nav:not(.scrolled):not(.nav-solid) .nav-links a:focus-visible {
  color: var(--c-white);
}

.nav:not(.scrolled):not(.nav-solid) .nav-links a::after {
  background: var(--c-white);
}

.nav:not(.scrolled):not(.nav-solid) .burger i {
  background: var(--c-white);
}

.nav:not(.scrolled):not(.nav-solid) .lang-sw {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav:not(.scrolled):not(.nav-solid) .lang-btn {
  color: rgba(255, 255, 255, 0.72);
}

.nav:not(.scrolled):not(.nav-solid) .lang-btn.active,
.nav:not(.scrolled):not(.nav-solid) .lang-btn:hover {
  color: var(--c-white);
}

.nav:not(.scrolled):not(.nav-solid) .lang-sep {
  color: rgba(255, 255, 255, 0.22);
}

.nav:not(.scrolled):not(.nav-solid) .nav-cta {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nav:not(.scrolled):not(.nav-solid) .nav-cta:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

/* ── SCROLLED or SOLID NAV ── */
.nav.scrolled,
.nav.nav-solid {
  background: rgba(243, 238, 231, 0.55);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(10, 14, 20, 0.06);
  border-bottom: 1px solid rgba(19, 20, 22, 0.06);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: auto;
  height: 42px;
}

.logo-img.hidden {
  display: none;
}

.logo-text {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.footer-nav a,
.back-link,
.link-all {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: var(--c-text-soft);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--c-accent);
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--c-text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.lang-sw {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(19, 20, 22, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.lang-btn {
  background: transparent;
  border: 0;
  padding: 0 6px;
  color: var(--c-text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--c-accent);
}

.lang-sep {
  color: rgba(19, 20, 22, 0.2);
}

.nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.92);
  color: var(--c-white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--c-accent);
}

.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: 0;
}

.burger i {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--c-text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.96), rgba(16, 17, 20, 0.98)),
    radial-gradient(circle at top, rgba(201, 72, 45, 0.2), transparent 30%);
}

.mob-overlay.open {
  display: flex;
}

.mob-overlay a {
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  text-transform: uppercase;
  padding: 4px 0;
  /* large tap target */
  min-height: 56px;
  display: flex;
  align-items: center;
}

.lang-sw--mob {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  margin-top: 8px;
}

.lang-sw--mob .lang-btn {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  padding: 0 8px;
}

.lang-sw--mob .lang-btn.active,
.lang-sw--mob .lang-btn:hover {
  color: var(--c-accent);
}

.lang-sw--mob .lang-sep {
  color: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 54px;
  color: var(--c-white);
  background:
    linear-gradient(112deg, rgba(8, 10, 13, 0.88) 0%, rgba(8, 10, 13, 0.48) 50%, rgba(8, 10, 13, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.22) 0%, rgba(8, 10, 13, 0.72) 100%),
    url('../img/PHOTO-2026-05-16-00-53-40.jpg') center 42% / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(201, 72, 45, 0.28), transparent 30%),
    radial-gradient(ellipse at bottom right, rgba(31, 126, 136, 0.22), transparent 28%),
    radial-gradient(ellipse at center bottom, rgba(8, 10, 13, 0.45), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  align-items: end;
  min-width: 0;
}

.hero-shell > * {
  min-width: 0;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.hero-kicker {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 100%;
}

.hero-text {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-panel {
  max-width: 330px;
  margin-left: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.panel-kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-metric + .panel-metric {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-metric strong,
.stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.panel-metric span,
.stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-tick {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
  animation: tickPulse 2.6s ease-in-out infinite;
}

@keyframes tickPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.82); }
  50% { opacity: 1; transform: scaleY(1); }
}

.trust,
.services,
.showcase,
.about,
.approach,
.preview,
.contact {
  padding-block: 104px;
}

.trust {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  padding-top: 0;
}

.trust-grid {
  display: grid;
  gap: 18px;
}

.trust-item,
.service-card,
.feature-card,
.approach-step,
.contact-card {
  border: 1px solid rgba(19, 20, 22, 0.08);
  border-radius: var(--radius);
  background: var(--c-surface-strong);
  box-shadow: var(--shadow-md);
}

.trust-item {
  padding: 24px;
}

.trust-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--c-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item p {
  color: var(--c-text-soft);
  font-size: 0.98rem;
}

.services-grid,
.featured-grid,
.approach-grid,
.prev-grid,
.contact-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  padding: 28px;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card h3,
.feature-card h3,
.approach-step h3,
.cinfo-title {
  font-family: var(--f-display);
  font-size: 1.42rem;
  line-height: 1.18;
}

.service-card p,
.feature-card p,
.approach-step p,
.contact-note {
  margin-top: 12px;
  color: var(--c-text-soft);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-tags span,
.feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-tags span {
  background: rgba(31, 126, 136, 0.1);
  color: var(--c-accent-2);
}

.showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy {
  padding: 22px 24px 24px;
}

.feature-tag {
  margin-bottom: 14px;
  background: rgba(201, 72, 45, 0.1);
  color: var(--c-accent);
}

.about {
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.98), rgba(16, 17, 20, 0.98)),
    radial-gradient(circle at top right, rgba(201, 72, 45, 0.22), transparent 24%);
  color: var(--c-white);
}

.about-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about .section-copy,
.about .eyebrow,
.about .stat span {
  color: rgba(255, 255, 255, 0.74);
}

.about .eyebrow {
  color: #f2a08d;
}

.stats-grid {
  margin-top: 32px;
}

.stat {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.approach-step {
  padding: 26px;
}

.approach-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--c-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.preview-head {
  align-items: end;
}

.link-all {
  color: var(--c-accent);
  transition: transform 0.3s var(--ease);
}

.link-all:hover {
  transform: translateX(4px);
}

.pcard,
.mitem {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #d8d1c7;
  box-shadow: var(--shadow-md);
}

.pcard {
  aspect-ratio: 4 / 3;
}

.pcard img,
.mitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.pcard:hover img,
.mitem:hover img {
  transform: scale(1.04);
}


.contact-intro {
  padding-block: 0 44px;
}

.contact-intro-shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 72, 45, 0.96), rgba(227, 126, 55, 0.96)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 30%);
  color: var(--c-white);
  box-shadow: 0 24px 54px rgba(201, 72, 45, 0.28);
}

.contact-intro .eyebrow,
.contact-intro .eyebrow::before {
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.ci + .ci {
  margin-top: 18px;
}

.ci-lbl {
  margin-bottom: 4px;
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ci-val,
.ci-val a {
  color: var(--c-text);
}

.contact-note {
  margin-top: 24px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  background: rgba(37, 211, 102, 0.08);
  color: #14924c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Contact Methods (direct contact layout) ── */
.contact-methods {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.cmethod {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 28px;
  border: 1px solid rgba(19, 20, 22, 0.08);
  border-radius: var(--radius);
  background: var(--c-surface-strong);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.cmethod-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  margin-bottom: 20px;
}

.cmethod--wa .cmethod-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #14924c;
}

.cmethod-label {
  color: var(--c-text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cmethod-val {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  word-break: break-all;
}

.cmethod-note {
  margin-top: 8px;
  color: var(--c-text-soft);
  font-size: 0.88rem;
}

.cmethod-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 999px;
  background: var(--c-panel);
  color: var(--c-white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.cmethod-cta:hover {
  transform: translateY(-2px);
  background: var(--c-accent);
  color: var(--c-white);
}

.cmethod--wa .cmethod-cta {
  background: rgba(37, 211, 102, 0.1);
  color: #14924c;
  border: 1px solid rgba(37, 211, 102, 0.24);
}

.cmethod--wa .cmethod-cta:hover {
  background: #25D366;
  color: var(--c-white);
}

.contact-legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 32px;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  background: rgba(19, 20, 22, 0.04);
  color: var(--c-text-soft);
  font-size: 0.78rem;
}

.contact-legal-strip span + span::before {
  content: '·';
  margin-right: 10px;
  opacity: 0.4;
}

.footer {
  padding: 28px 0 42px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(19, 20, 22, 0.08);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copy {
  color: var(--c-text-soft);
  font-size: 0.82rem;
}

.footer-legal {
  color: var(--c-text-soft);
  font-size: 0.74rem;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-s {
  position: relative;
  min-height: 66svh;
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 52px;
  color: var(--c-white);
  background:
    linear-gradient(100deg, rgba(10, 12, 15, 0.84), rgba(10, 12, 15, 0.48)),
    url('../img/68e250e2-6ecf-4fbb-aa8d-1d4f8d001671.JPG') center 32% / cover no-repeat;
}

.hero-s-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 72, 45, 0.32), transparent 26%),
    radial-gradient(circle at bottom right, rgba(31, 126, 136, 0.26), transparent 26%);
}

.hero-s-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.hero-s .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.back-link {
  color: rgba(255, 255, 255, 0.8);
}

.back-link:hover {
  color: var(--c-white);
}

.gallery-page {
  padding-top: 72px;
}

.masonry {
  columns: 1;
  column-gap: 16px;
}

.mitem {
  break-inside: avoid;
  margin-bottom: 16px;
}

.mitem:nth-child(5n + 1) { aspect-ratio: 4 / 3; }
.mitem:nth-child(5n + 2) { aspect-ratio: 3 / 4; }
.mitem:nth-child(5n + 3) { aspect-ratio: 1 / 1; }
.mitem:nth-child(5n + 4) { aspect-ratio: 16 / 10; }
.mitem:nth-child(5n) { aspect-ratio: 3 / 4; }

@media (min-width: 680px) {
  .trust-grid,
  .stats-grid,
  .prev-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .approach-grid,
  .featured-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masonry {
    columns: 2;
  }
}

@media (min-width: 980px) {
  .nav-links,
  .nav-cta {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.54fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .approach-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .prev-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .masonry {
    columns: 3;
  }
}

@media (max-width: 979px) {
  .nav-inner {
    padding-inline: 0;
  }

  .logo-text {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 18px;
    --nav-h: 68px;
    --radius: 20px;
    --radius-sm: 14px;
  }

  /* ── Section spacing ── */
  .trust,
  .services,
  .showcase,
  .about,
  .approach,
  .preview,
  .contact,
  .areas,
  .faq {
    padding-block: 64px;
  }

  .contact-intro {
    padding-bottom: 32px;
  }

  /* ── Section headings ── */
  .section-title {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .section-head,
  .preview-head {
    margin-bottom: 32px;
  }

  /* ── Nav ── */
  .nav-inner {
    gap: 10px;
  }

  .nav-right {
    gap: 10px;
  }

  .lang-sw {
    flex: 0 0 auto;
    padding: 5px 8px;
  }

  .lang-btn {
    padding: 0 4px;
    font-size: 0.68rem;
  }

  .burger {
    flex: 0 0 auto;
  }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 40px;
  }

  .hero-shell > * {
    min-width: 0;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 1.0;
  }

  .hero-copy,
  .hero-text,
  .hero-actions,
  .hero-pills,
  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.95rem;
    margin-top: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 52px;
    font-size: 0.78rem;
  }

  .hero-pills {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-pills span {
    font-size: 0.74rem;
    padding: 8px 12px;
  }

  /* Hide hero stats panel on small screens — info is redundant with about section */
  .hero-panel {
    display: none;
  }

  /* ── Trust ── */
  .trust {
    margin-top: -32px;
  }

  .trust-item {
    padding: 18px;
  }

  /* ── Service cards ── */
  .service-card {
    padding: 22px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  /* ── Feature cards (showcase) ── */
  .feature-card img {
    aspect-ratio: 16 / 9;
  }

  .feature-copy {
    padding: 16px 18px 20px;
  }

  /* ── About ── */
  .about-media {
    max-height: 280px;
    overflow: hidden;
  }

  .about-media img {
    min-height: unset;
    height: 280px;
  }

  .stat {
    padding: 16px;
  }

  /* ── Approach ── */
  .approach-step {
    padding: 20px;
  }

  /* ── Preview grid ── */
  .pcard {
    aspect-ratio: 16 / 10;
  }

  /* ── Preview head: stack vertically ── */
  .preview-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* ── Contact intro ── */
  .contact-intro-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 18px;
  }

  .contact-intro-shell .btn {
    text-align: center;
    min-height: 52px;
  }

  /* ── Contact cards ── */
  .contact-card {
    padding: 22px 18px;
  }

  .wa-btn {
    width: 100%;
    justify-content: center;
  }

  /* ── FAQ ── */
  .faq-q {
    padding: 18px 0;
  }

  .faq-q-text {
    font-size: 0.98rem;
  }

  /* ── Areas ── */
  .area-group {
    padding: 18px 20px;
  }

  /* ── Footer ── */
  .footer-inner {
    gap: 16px;
  }

  .footer-nav {
    gap: 12px 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 16px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1.0;
  }

  .hero-kicker {
    font-size: 0.7rem;
  }

  .lang-sw:not(.lang-sw--mob) {
    display: none;
  }

  /* On very small screens: 1-col for services/approach */
  .services-grid,
  .approach-grid,
  .featured-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: clamp(1.7rem, 9.5vw, 2.6rem);
  }

  .approach-step span {
    font-size: 0.74rem;
  }

  /* Hero scroll indicator hidden on very small */
  .hero-scroll {
    display: none;
  }

  /* Mobile CTA bar labels */
  .mob-cta-btn span {
    font-size: 0.58rem;
  }
}

/* =============================================================
   COOKIE CONSENT BANNER
   ============================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(16, 17, 20, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 -10px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-btn-accept {
  background: var(--c-accent);
  color: var(--c-white);
  border: 1px solid transparent;
}

.cookie-btn-accept:hover {
  background: #b94228;
}

.cookie-btn-refuse {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cookie-btn-refuse:hover {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 560px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    justify-content: center;
  }
}

/* =============================================================
   LEGAL / POLICY PAGES
   ============================================================= */

.legal-page {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.legal-content h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.legal-date {
  color: var(--c-text-soft);
  font-size: 0.82rem;
  margin-bottom: 52px;
  display: block;
}

.legal-content h2 {
  font-family: var(--f-display);
  font-size: 1.38rem;
  line-height: 1.2;
  margin-top: 44px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}

.legal-content h3 {
  font-size: 1.06rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--c-text);
}

.legal-content p {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  line-height: 1.76;
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-highlight {
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: rgba(201, 72, 45, 0.06);
  border: 1px solid rgba(201, 72, 45, 0.15);
}

.legal-highlight p {
  margin-bottom: 0;
  color: var(--c-text);
}

.legal-highlight a {
  font-weight: 700;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0 20px;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

.cookie-table th,
.cookie-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(19, 20, 22, 0.1);
  white-space: nowrap;
}

.cookie-table th {
  font-weight: 800;
  color: var(--c-text);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(19, 20, 22, 0.03);
}

.cookie-table td {
  color: var(--c-text-soft);
}

/* =============================================================
   FOOTER LEGAL LINKS
   ============================================================= */

.footer-nav a {
  color: var(--c-text-soft);
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--c-accent);
}

/* Gallery filter labels (projets.html) */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gf-btn {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(19, 20, 22, 0.12);
  background: var(--c-surface-strong);
  color: var(--c-text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.gf-btn:hover,
.gf-btn.active {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}

/* =============================================================
   SERVICE AREAS SECTION
   ============================================================= */

.areas {
  padding-block: 104px;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.97), rgba(16, 17, 20, 0.97)),
    radial-gradient(circle at bottom left, rgba(31, 126, 136, 0.2), transparent 32%);
  color: var(--c-white);
}

.areas .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.areas .eyebrow::before {
  background: rgba(255, 255, 255, 0.3);
}

.areas .section-copy {
  color: rgba(255, 255, 255, 0.62);
  max-width: 680px;
}

.areas-grid {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.area-group {
  padding: 24px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.area-group:hover {
  border-color: rgba(201, 72, 45, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.area-group-title {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 680px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================================
   FAQ SECTION
   ============================================================= */

.faq {
  padding-block: 104px;
  background: var(--c-bg-soft);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--c-line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-q-text {
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.28;
  transition: color 0.2s var(--ease);
}

.faq-q:hover .faq-q-text,
.faq-q[aria-expanded="true"] .faq-q-text {
  color: var(--c-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface-strong);
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--c-accent);
  border-color: var(--c-accent);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-text-soft);
  fill: none;
  transition: stroke 0.3s;
}

.faq-q[aria-expanded="true"] .faq-icon svg {
  stroke: var(--c-white);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}

.faq-a.open {
  max-height: 500px;
}

.faq-a-inner {
  padding-bottom: 24px;
  color: var(--c-text-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-a-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.faq-a-inner li {
  margin-bottom: 5px;
}

.faq-a-inner strong {
  color: var(--c-text);
}

/* =============================================================
   MOBILE CTA BAR (visible on mobile only)
   ============================================================= */

.mob-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background: rgba(16, 17, 20, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}

.mob-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 52px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.mob-cta-btn:hover,
.mob-cta-btn:active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-white);
}

.mob-cta-btn svg {
  width: 20px;
  height: 20px;
}

.mob-cta-btn.mob-wa {
  background: rgba(37, 211, 102, 0.1);
  color: #19a550;
  border: 1px solid rgba(37, 211, 102, 0.18);
}

.mob-cta-btn.mob-wa:hover,
.mob-cta-btn.mob-wa:active {
  background: rgba(37, 211, 102, 0.2);
  color: #14924c;
}

@media (max-width: 979px) {
  .mob-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  /* Push cookie banner above the mobile bar */
  .cookie-banner {
    bottom: calc(74px + env(safe-area-inset-bottom));
  }
}

/* footer legal info — multi-line support */
.footer-legal + .footer-legal {
  margin-top: 2px;
}

/* =============================================================
   EXTRA MOBILE — hero-s, legal page, gallery
   ============================================================= */

@media (max-width: 767px) {
  .hero-s {
    min-height: 55svh;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 36px;
  }

  .hero-s .section-title {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .gallery-page {
    padding-top: 48px;
  }

  .legal-page {
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 64px;
  }

  .legal-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .legal-content h2 {
    font-size: 1.18rem;
    margin-top: 32px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

/* =============================================================
   v2.0 ENHANCEMENTS
   ============================================================= */

/* Skip-to-content link (a11y) */
.skip-link {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.3s var(--ease);
}
.skip-link:focus-visible {
  top: 14px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 950;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-accent), #e37e37);
  box-shadow: 0 0 12px rgba(201, 72, 45, 0.6);
  transition: width 0.1s linear;
}

/* Honeypot anti-spam (hidden field for bots) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Select field — match input style */
.frow select {
  width: 100%;
  border: 1px solid rgba(19, 20, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 15px 16px;
  color: var(--c-text);
  outline: none;
  font-size: max(1rem, 16px);
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f625f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.frow select:focus {
  border-color: rgba(201, 72, 45, 0.48);
  box-shadow: 0 0 0 4px rgba(201, 72, 45, 0.1);
}

/* =============================================================
   COUNTERS section
   ============================================================= */
.counters {
  padding-block: 84px 64px;
  position: relative;
}
.counters-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.counter-card {
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78));
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.counter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(201,72,45,0.10), transparent 55%);
  pointer-events: none;
}
.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.counter-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  color: var(--c-accent);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.counter-card span {
  display: block;
  margin-top: 10px;
  color: var(--c-text-soft);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (min-width: 680px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .counters-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   WHY US section
   ============================================================= */
.why-us {
  padding-block: 104px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(251, 248, 243, 0.6) 50%, rgba(255,255,255,0) 100%);
}
.why-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.why-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: var(--c-surface-strong);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 72, 45, 0.3);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  margin-bottom: 18px;
}
.why-icon svg {
  width: 26px;
  height: 26px;
}
.why-card h3 {
  font-family: var(--f-display);
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (min-width: 680px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  padding-block: 104px;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.98), rgba(16, 17, 20, 0.98)),
    radial-gradient(circle at bottom right, rgba(31, 126, 136, 0.2), transparent 30%);
  color: var(--c-white);
}
.testimonials .eyebrow { color: #f2a08d; }
.testimonials .section-title { color: var(--c-white); }
.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.testi-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 72, 45, 0.4);
  background: rgba(255,255,255,0.06);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #f2c14e;
}
.testi-stars svg {
  width: 18px;
  height: 18px;
}
.testi-card blockquote {
  flex: 1;
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testi-author strong {
  color: var(--c-white);
  font-size: 0.95rem;
}
.testi-author span {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@media (min-width: 680px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   CERTIFICATIONS / TRUST BADGES
   ============================================================= */
.certifs {
  padding-block: 64px;
}
.certifs-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.certif-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  background: var(--c-surface-strong);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.certif-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 72, 45, 0.3);
}
.certif-badge svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--c-accent);
}
.certif-badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--c-text);
  margin-bottom: 2px;
}
.certif-badge span {
  display: block;
  color: var(--c-text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

@media (min-width: 680px) {
  .certifs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .certifs-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   FOCUS — accessibility (visible focus states)
   ============================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =============================================================
   FORM — toast / inline error
   ============================================================= */
.form-error {
  display: none;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(201, 72, 45, 0.08);
  border: 1px solid rgba(201, 72, 45, 0.24);
  color: var(--c-accent);
  font-size: 0.84rem;
}
.form-error.active { display: block; }
.frow.error input,
.frow.error textarea,
.frow.error select {
  border-color: rgba(201, 72, 45, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 72, 45, 0.08);
}

/* =============================================================
   PRINT STYLES
   ============================================================= */
@media print {
  .nav, .mob-cta-bar, .cookie-banner, .scroll-progress,
  .skip-link, .hero-scroll, .burger, .mob-overlay,
  .contact-intro-shell .btn, .wa-btn, .btn-submit { display: none !important; }
  .hero { color: var(--c-text); background: none; min-height: auto; padding-top: 0; }
  body { background: white; color: black; }
  .feature-card, .service-card, .why-card, .testi-card, .counter-card { break-inside: avoid; }
}

/* =============================================================
   MERCI (thank-you) page
   ============================================================= */
.thanks-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 64px) var(--gutter) 64px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(201, 72, 45, 0.10), transparent 30%),
    var(--c-bg);
}
.thanks-shell {
  max-width: 620px;
  margin: 0 auto;
}
.thanks-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 18px 48px rgba(201, 72, 45, 0.32);
  animation: thanksPop 0.6s var(--ease);
}
.thanks-icon svg { width: 40px; height: 40px; }

@keyframes thanksPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.thanks-page h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.thanks-page p {
  color: var(--c-text-soft);
  font-size: 1.02rem;
  margin-bottom: 32px;
}
.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================
   404 page
   ============================================================= */
.err-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 64px) var(--gutter) 64px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.97), rgba(16, 17, 20, 0.97)),
    radial-gradient(circle at top, rgba(201, 72, 45, 0.3), transparent 35%);
  color: var(--c-white);
}
.err-shell { max-width: 620px; }
.err-shell .err-code {
  font-family: var(--f-display);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 0.9;
  background: linear-gradient(180deg, #ffffff, rgba(255,255,255,0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.err-shell h1 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin-bottom: 14px;
}
.err-shell p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

/* =============================================================
   Subtle hover lift on showcase cards
   ============================================================= */
.feature-card {
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card img {
  transition: transform 0.7s var(--ease);
}
.feature-card:hover img {
  transform: scale(1.04);
}

/* =============================================================
   Service card icon hover
   ============================================================= */
.service-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 72, 45, 0.25);
}

/* =============================================================
   Mobile tweaks
   ============================================================= */
@media (max-width: 767px) {
  .counters { padding-block: 64px 32px; }
  .why-us, .testimonials, .certifs { padding-block: 64px; }
  .testi-card { padding: 24px 20px; }
  .testi-card blockquote { font-size: 0.98rem; }
  .why-card { padding: 24px 22px; }
  .certif-badge { padding: 16px 18px; }
}
