:root {
  --navy: #0a1f38;
  --navy-mid: #123255;
  --navy-soft: #1c4468;
  --orange: #e85d04;
  --orange-hot: #ff6a12;
  --orange-deep: #c44a00;
  --ink: #152338;
  --muted: #5a6b7d;
  --line: rgba(10, 31, 56, 0.12);
  --paper: #eef2f7;
  --paper-2: #e3eaf3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 31, 56, 0.14);
  --radius: 18px;
  --max: 1160px;
  --header-h: 76px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(232, 93, 4, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(28, 68, 104, 0.12), transparent 50%),
    linear-gradient(180deg, #f5f7fb 0%, var(--paper) 40%, #f8fafc 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

h1,
h2,
h3,
.hero-brand,
.brand-text strong {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5.4vw, 3.9rem);
  font-weight: 800;
  color: var(--white);
  max-width: 16ch;
  text-wrap: balance;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 750;
  color: var(--navy);
  max-width: 18ch;
  text-wrap: balance;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
}

.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(232, 93, 4, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7a2a, var(--orange-deep));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 249, 252, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(10, 31, 56, 0.06);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(10, 31, 56, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.02rem;
  color: var(--navy);
}

.brand-text span {
  font-size: 0.88rem;
  color: var(--muted);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  padding: 0.5rem 0.55rem;
  text-decoration: none;
  color: var(--navy-mid);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--navy);
  background: rgba(10, 31, 56, 0.06);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  background: var(--navy);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--orange);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 18, 32, 0.88) 8%, rgba(7, 18, 32, 0.55) 48%, rgba(7, 18, 32, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 18, 32, 0.72) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  animation: heroIn 0.9s ease both;
}

.hero-brand {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 750;
  color: var(--orange-hot);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* About */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section-copy p {
  color: var(--muted);
  max-width: 38rem;
}

.checklist {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 600;
  color: var(--navy);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.15);
}

.about-visual {
  position: relative;
}

.about-visual > img,
.about-visual > picture,
.about-visual picture img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
}

.about-visual > picture {
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual picture img {
  box-shadow: none;
  border-radius: 0;
}

.about-stat {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: auto;
  background: rgba(10, 31, 56, 0.92);
  color: var(--white);
  padding: 1rem 1.15rem;
  border-radius: 16px;
  max-width: 13rem;
  backdrop-filter: blur(8px);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange-hot);
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Services */
.services {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55) 20%, rgba(255, 255, 255, 0.75)),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 22px,
      rgba(10, 31, 56, 0.025) 22px,
      rgba(10, 31, 56, 0.025) 23px
    );
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.service {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.service figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.service picture {
  display: block;
}

.service img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service:hover img {
  transform: scale(1.04);
}

.service h3 {
  margin: 0;
}

.service p {
  margin: 0;
  color: var(--muted);
}

.prose {
  color: var(--muted);
}

.prose p {
  margin: 0 0 1rem;
  max-width: 42rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  max-width: 40rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose strong {
  color: var(--navy);
  font-weight: 700;
}

.detail-blocks {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.detail {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.detail h3 {
  margin-bottom: 0.85rem;
  max-width: 28ch;
}

.narrow {
  max-width: 48rem;
}

.partner-intro {
  margin-bottom: 1.75rem;
}

/* Process */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}

.steps li {
  padding-top: 0.25rem;
}

.step-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  color: var(--orange);
}

.steps h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  padding: 0.65rem 1.8rem 0.65rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.55rem;
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  max-width: 40rem;
}

.region {
  padding-top: 0;
}

/* Stats */
.stats {
  padding: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #173f63 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  text-align: center;
  padding: 1.2rem 0.75rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange-hot);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* Photo projector / slideshow */
.projector {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.projector-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  background: #0a1f38;
  box-shadow: var(--shadow);
}

.projector-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease;
}

.projector-frame img.is-fading {
  opacity: 0.35;
}

.projector-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 31, 56, 0.72);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.projector-nav:hover {
  background: var(--orange);
}

.projector-prev { left: 0.85rem; }
.projector-next { right: 0.85rem; }

.projector-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 1.1rem 1.25rem 0.95rem;
  background: linear-gradient(180deg, transparent, rgba(7, 18, 32, 0.82));
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
}

.projector-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.projector-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 31, 56, 0.22);
  padding: 0;
  cursor: pointer;
}

.projector-dot.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

/* References */
.quote-projector {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.quote-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 2.4rem 4.2rem;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(232, 239, 247, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-card {
  margin: 0;
  text-align: center;
  max-width: 38rem;
  transition: opacity 0.35s ease;
}

.quote-card.is-fading {
  opacity: 0.25;
}

.quote-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.5;
  color: var(--navy);
  font-weight: 600;
}

.quote-card footer {
  margin-top: 1.25rem;
  color: var(--orange-deep);
  font-weight: 700;
}

.quote-frame .projector-nav {
  background: rgba(10, 31, 56, 0.1);
  color: var(--navy);
}

.quote-frame .projector-nav:hover {
  background: var(--orange);
  color: #fff;
}

/* Partners */
.partners {
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(232, 93, 4, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
}

.partner-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem 1.5rem;
  align-items: center;
}

.partner-logos li {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.partner-logos img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partner-logos li:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  max-width: 34rem;
}

.contact-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.contact-list a {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--orange);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(236, 242, 249, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  font-weight: 650;
  color: var(--navy);
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(10, 31, 56, 0.16);
  border-radius: 12px;
  background: var(--white);
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.15);
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  margin-top: 0.25rem;
  accent-color: var(--orange);
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(196, 74, 0, 0.1);
  color: #9a3a00;
  font-size: 0.92rem;
  font-weight: 600;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-antispam input {
  max-width: 10rem;
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Contact map */
.contact-map {
  width: min(100% - 2rem, var(--max));
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
}

.contact-map h3 {
  margin-bottom: 0.35rem;
}

.contact-map > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #d9e2ec;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating call / WhatsApp */
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: bottom 0.25s ease;
}

body.has-cookie-bar .float-actions,
body.has-cookie-bar .back-top {
  bottom: calc(6.8rem + env(safe-area-inset-bottom, 0px));
}

.float-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(7, 18, 32, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.float-whatsapp {
  background: #25d366;
}

.float-call {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
}

.back-top {
  position: fixed;
  left: 1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  z-index: 250;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(7, 18, 32, 0.25);
  transition: opacity 0.25s ease, transform 0.25s ease, bottom 0.25s ease;
}

.back-top:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.back-top[hidden] {
  display: none !important;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 31, 56, 0.96);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -10px 40px rgba(7, 18, 32, 0.28);
  backdrop-filter: blur(10px);
}

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

.cookie-bar-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 18rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-bar a {
  color: var(--orange-hot);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.btn-ghost-dark {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.cookie-actions .btn {
  min-height: 2.7rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 2.4rem 0 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, #102a46 55%, #163a58 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
}

.footer-brand p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.site-footer nav a:hover {
  color: var(--orange-hot);
}

.copyright {
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(5, 12, 22, 0.92);
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-prev {
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Thanks / legal pages */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.thanks-box {
  max-width: 34rem;
}

.thanks-box img {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
}

.legal-page {
  padding: clamp(2rem, 6vw, 4rem) 0 4rem;
}

.legal-inner {
  max-width: 46rem;
}

.legal-page h1 {
  color: var(--navy);
  max-width: none;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 1.8rem 0 0.6rem;
}

/* Responsive */
@media (max-width: 980px) {
  .split,
  .service-grid,
  .contact-grid,
  .ref-grid,
  .partner-logos,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0.75rem 1rem 1.1rem;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .split,
  .service-grid,
  .stats-row,
  .contact-grid,
  .ref-grid,
  .partner-logos,
  .steps,
  .field-row {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    font-size: 1rem;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    min-height: min(88vh, 760px);
  }

  .hero-media img {
    object-position: 55% center;
  }

  .projector-frame {
    aspect-ratio: 4 / 3;
  }

  .projector-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .quote-frame {
    min-height: 220px;
    padding: 2rem 3.2rem;
  }

  .map-frame {
    aspect-ratio: 4 / 3;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-logos li {
    min-height: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
