/* =========================
   VARIABLES
========================= */
:root {
  --blue: #06328f;
  --blue-dark: #061f5f;
  --yellow: #f7c400;
  --text: #172033;
  --muted: #667085;
  --bg: #f7f9fc;
  --white: #ffffff;
}

/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   BASE
========================= */
body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

section {
  padding: 90px 7vw;
}

/* =========================
   TYPOGRAPHIE
========================= */
h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

h1 span {
  color: var(--yellow);
}

/* =========================
   HEADER / HERO HOME
========================= */
header {
  min-height: 100vh;
  padding: 32px 7vw 72px;
  background:
    radial-gradient(circle at top right, rgba(247, 196, 0, 0.22), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue);
  font-size: 1.35rem;
}

.logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  font-weight: 600;
  color: var(--blue-dark);
}

.nav-links a {
  text-decoration: none;
  color: inherit;
}

/* HERO GRID */
.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
  max-width: 1180px;
  margin: 90px auto 0;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 34px;
}

.hero-shot{ background:#fff; padding:22px; border-radius:26px; box-shadow:0 30px 80px rgba(16,24,40,0.08); } 

.hero-shot img{ width:100%; border-radius:18px; }

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6, 50, 143, 0.08);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(6, 50, 143, 0.24);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(6, 50, 143, 0.14);
}

.btn-thirty {
  background: var(--yellow);
  color: var(--blue);
  border: 1px solid rgba(6, 50, 143, 0.14);
}

/* =========================
   HERO CARD
========================= */
.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 50, 143, 0.1);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(6, 31, 95, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(6, 50, 143, 0.08);
  margin-bottom: 26px;
}

/* METRICS */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric {
  padding: 18px;
  background: #f9fbff;
  border-radius: 20px;
  border: 1px solid rgba(6, 50, 143, 0.08);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.metric span {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
}

/* =========================
   SECTIONS TITLES
========================= */
.section-title {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.section-title p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* =========================
   SERVICES
========================= */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(6, 50, 143, 0.08);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(247, 196, 0, 0.18);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 20px;
}

/* =========================
   APPROACH
========================= */
.approach {
  background: var(--blue-dark);
  color: var(--white);
}

.approach .section-title h2,
.approach .section-title p {
  color: var(--white);
}

.steps {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 900;
}

/* =========================
   CTA
========================= */
.cta {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--yellow), #ffe27a);
  border-radius: 36px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--blue-dark);
  box-shadow: 0 24px 60px rgba(247, 196, 0, 0.25);
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 34px 7vw;
  color: var(--muted);
  text-align: center;
  background: #fff;
}

/* =========================
   PROJECT PAGE
========================= */
.project-hero {
  padding: 40px 7vw 40px;
  min-height: auto !important;
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}

.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.project-nav img {
  height: 52px;
}

.back-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--blue);
}

.project-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.project-intro h1 {
  font-size: 3.2rem;
  color: var(--blue-dark);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.project-intro p {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 40px;
}

/* GALLERY */
.gallery {
  margin: 40px auto 80px;
  padding: 0 7vw;
}

.gallery h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--blue-dark);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.shot{ background:#fff; padding:18px; border-radius:24px; box-shadow:0 20px 60px rgba(16,24,40,0.08); transition:transform .25s ease, box-shadow .25s ease; } .shot:hover{ transform:translateY(-6px); box-shadow:0 30px 80px rgba(16,24,40,0.12); } .shot img{ width:100%; border-radius:16px; }

/* BLOCKS */
.project-blocks {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 7vw;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.block {
  background: #fff;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(16, 24, 40, 0.08);
}

.block.alt {
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 950px) {
  .hero,
  .cta {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  header,
  section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    margin-top: 58px;
  }

  .services,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .cta {
    padding: 26px;
    border-radius: 26px;
  }

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