/* ---------- Galano Grotesque (lizenzpflichtig – Dateien in assets/fonts/ ablegen) ---------- */
@font-face {
  font-family: "Galano Grotesque";
  src: url("assets/fonts/GalanoGrotesque-Medium.woff2") format("woff2"),
       url("assets/fonts/GalanoGrotesque-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Galano Grotesque";
  src: url("assets/fonts/GalanoGrotesque-SemiBold.woff2") format("woff2"),
       url("assets/fonts/GalanoGrotesque-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-1: #0a1c38;
  --navy-2: #06122a;
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.7);
  --eyebrow: #21629f;
  --accent: #21629f;
  --card-border: rgba(0, 0, 0, 0.2);
  --green-bg: #d3f2dd;
  --stat-bg: #d9edff;
  --stat-num: #21629f;
  --radius: 12px;
  --maxw: 1120px;

  --font-head: "Galano Grotesque", "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Shared section styles ---------- */
.section { padding: 80px 0; }
.section + .section { padding-top: 0; }

.eyebrow {
  font-family: var(--font-head);
  color: var(--eyebrow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 820px;
  color: #000;
}

.title-accent {
  background: linear-gradient(to bottom, #0a1641, #85bdf2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lead {
  margin-top: 18px;
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.grad-text {
  background: linear-gradient(90deg, #97e7ff, #4ff0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Green check badge (Figma) ---------- */
.ck {
  position: relative;
  flex: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-bg);
}
.ck::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: linear-gradient(180deg, #61dd75 0%, #009218 100%);
}
.ck::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/check-mark-white.svg") center / 54% no-repeat;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  background: #06122a url("assets/hero-bg.png") center center / cover no-repeat;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero__top {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__logo { height: 26px; width: auto; }

.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 48px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero__content { margin-top: 64px; max-width: 720px; }

.hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero__subtitle {
  margin-top: 24px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.hero__subtitle strong { color: #fff; font-weight: 700; }

/* ---------- GRID ---------- */
.grid { display: grid; gap: 20px; margin-top: 44px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Challenge cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08); transform: translateY(-2px); }

.card__icon { width: 28px; height: 28px; margin-bottom: 16px; }

.card__title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #000;
}
.card__text { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ---------- Steps (dark) ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
  margin-top: 44px;
}

.step {
  background-color: #0a1c38;
  background-image: url("assets/steps-bg.jpg");
  background-repeat: no-repeat;
  background-size: 400% 285%;
  background-position: 33.333% 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
}
.step__icon { width: 26px; height: 26px; margin-bottom: 16px; }
.step__icon--meta { width: 30px; height: 20px; }
.step__title { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step__text { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); }

.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

/* ---------- Feature list ---------- */
.grid--features { margin-top: 28px; }

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.feature .ck { margin-top: 2px; }
.feature__title { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 5px; color: #000; }
.feature__text { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ---------- Audience ---------- */
.audience {
  margin-top: 36px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.audience__list { list-style: none; display: grid; gap: 12px; }
.audience__list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.audience__list strong { font-weight: 500; color: #000; }
.audience__first { color: rgba(33, 98, 159, 0.85); }
.audience__first strong { color: #21629f; font-weight: 500; }
.dot { position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.audience__list li:not(.audience__first) .dot { background: #21629f; }

.banner {
  margin-top: 20px;
  border-radius: var(--radius);
  padding: 26px 30px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  background: #06122a url("assets/hero-bg.png") 28% center / 165% no-repeat;
}
.banner p { font-size: 17px; line-height: 1.45; color: rgba(255, 255, 255, 0.8); }
.banner strong { font-weight: 500; color: #fff; }

/* ---------- Cases ---------- */
.grid--cases { gap: 24px; }
.case {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}
.case__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.case__logo {
  width: 34px; height: 34px;
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.case__logo img { width: 100%; height: 100%; object-fit: contain; }
.case__logo--enpere img { width: auto; height: 100%; object-fit: cover; object-position: left center; transform: scale(1.05); }
.case__company {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #000;
}
.case__amount {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(to bottom, #0a1641, #85bdf2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case__desc { margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.55; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.stat {
  background: var(--stat-bg);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
}
.stat__num { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 600; color: var(--stat-num); line-height: 1; }
.stat__label { display: block; margin-top: 8px; font-size: 13px; color: rgba(0, 0, 0, 0.8); }

.case__quote { font-size: 15px; line-height: 1.55; font-style: italic; color: var(--muted); }
.case__author { margin-top: 14px; font-size: 13px; font-style: italic; color: var(--muted); }

/* ---------- Phases ---------- */
.phase {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
}
.phase__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #21629f;
  background: var(--stat-bg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 12px rgba(132, 140, 166, 0.11);
  padding: 5px 11px;
  border-radius: 999px;
}
.phase__title { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin: 14px 0 16px; color: #000; }
.phase__list { list-style: none; display: grid; gap: 10px; }
.phase__list li { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; color: var(--muted); }
.tick { flex: none; width: 16px; height: 16px; margin-top: 2px; }
.phase__result { margin-top: 18px; padding-top: 16px; border-top: 1px solid #d9d9d9; font-size: 14px; color: var(--muted); }
.phase__result strong { color: #21629f; font-weight: 400; }

/* ---------- CTA ---------- */
.cta-section { padding: 0 0 80px; }
.cta {
  border-radius: 18px;
  padding: 44px 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #0a1c38 url("assets/hero-bg.png") 28% center / 165% no-repeat;
}
.cta__text { text-align: center; }
.cta__title { font-family: var(--font-head); font-size: clamp(26px, 3.2vw, 36px); font-weight: 600; letter-spacing: -0.02em; }
.cta__desc { margin: 14px auto 0; font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.8); max-width: 560px; }
.cta__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(132, 140, 166, 0.11);
  backdrop-filter: blur(8px);
}
.contact-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.contact-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}
.contact-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-card__name { font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.contact-card__row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.15s ease;
  word-break: break-all;
}
.contact-card__row:hover { opacity: 0.82; }
.contact-card__ico { width: 16px; height: 16px; flex: none; }
.contact-card__btn {
  display: block;
  margin-top: 16px;
  text-align: center;
  background: #fff;
  color: #0a1c38;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.contact-card__btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ---------- Footer ---------- */
.footer { padding: 28px 0 40px; border-top: 1px solid rgba(0, 0, 0, 0.08); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__logo { height: 20px; width: auto; opacity: 0.9; }
.footer__copy { font-size: 12px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step__arrow { display: none; }
  .grid--3 { grid-template-columns: 1fr; }
  .cta { padding: 32px; }
  .cta__cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid--2 { grid-template-columns: 1fr; }
  .grid--cases { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__content { margin-top: 56px; }
  .hero__top { gap: 16px; }
  .pills { gap: 8px; }
  .pill { font-size: 12px; padding: 6px 11px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta { padding: 26px; background-size: cover; background-position: 30% center; }
  .footer__inner { justify-content: center; }
}
