:root {
  --green-950: #0b241b;
  --green-900: #0f3d2e;
  --green-800: #14533f;
  --green-600: #2f7d5b;
  --green-200: #dcebe2;
  --green-100: #edf6f0;
  --sand: #f7f5ef;
  --stone: #eef1ee;
  --white: #ffffff;
  --ink: #18231d;
  --muted: #68766f;
  --line: rgba(20, 83, 63, 0.15);
  --shadow: 0 22px 60px rgba(11, 36, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: min(780px, 86svh);
  padding: 24px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 30, 22, 0.91) 0%, rgba(8, 30, 22, 0.72) 42%, rgba(8, 30, 22, 0.18) 100%),
    url("images/hero-europe.jpg") center / cover no-repeat;
  position: relative;
}

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.nav-cta,
.btn {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 96px;
  max-width: 1180px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #e7f5ed;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9fd1b2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 78px;
  font-weight: 800;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(47, 125, 91, 0.25);
}

.btn-primary:hover {
  background: #276d4f;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-secondary.dark {
  border-color: rgba(15, 61, 46, 0.28);
  color: var(--green-900);
  background: transparent;
}

.btn-secondary.dark:hover {
  background: var(--green-100);
}

.trust-line {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.trust-line strong {
  color: var(--white);
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.section {
  padding: 86px 0;
  background: var(--stone);
}

.section:nth-of-type(even) {
  background: var(--sand);
}

.section-intro {
  padding-top: 58px;
}

.intro-grid,
.service-layout,
.confidence-grid,
.form-layout,
.city-layout,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.intro-grid h2,
.section-head h2,
.service-copy h2,
.confidence-grid h2,
.form-copy h2,
.city-layout h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: 56px;
  font-weight: 780;
}

.intro-grid p,
.service-copy p,
.confidence-grid p,
.form-copy p,
.city-layout p {
  color: var(--muted);
  font-size: 18px;
}

.section-kicker {
  color: var(--green-600);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.timeline article,
.confidence-list article,
.lead-form,
.footer-legal,
.footer-block,
.form-copy img,
.city-layout img,
.photo-stack img {
  border-radius: var(--radius);
}

.card,
.timeline article,
.confidence-list article {
  min-height: 232px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(11, 36, 27, 0.07);
}

.card-index,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 850;
}

.card h3,
.timeline h3,
.confidence-list h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 20px;
  line-height: 1.25;
}

.card p,
.timeline p,
.confidence-list p,
.form-note,
.footer-note,
.footer-legal p {
  color: var(--muted);
}

.section-service {
  overflow: hidden;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--green-950);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 6px var(--green-100);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: end;
}

.photo-stack img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-stack img:nth-child(2) {
  height: 310px;
  margin-bottom: -34px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  min-height: 260px;
}

.section-confidence {
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.94), rgba(20, 83, 63, 0.9)),
    var(--green-900);
  color: var(--white);
}

.section-confidence .section-kicker,
.section-confidence h2,
.section-confidence p {
  color: var(--white);
}

.section-confidence .section-kicker::before {
  background: #bde4c7;
}

.confidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.confidence-list article {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.confidence-list h3,
.confidence-list p {
  color: var(--white);
}

.confidence-list p {
  opacity: 0.72;
}

.form-copy img,
.city-layout img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-top: 26px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 61, 46, 0.18);
  border-radius: var(--radius);
  color: var(--green-950);
  background: #fbfcfa;
  font: inherit;
}

.lead-form input:focus {
  outline: 3px solid rgba(47, 125, 91, 0.18);
  border-color: var(--green-600);
}

.lead-form .btn {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-note a {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.city-layout {
  grid-template-columns: 0.9fr 1fr;
}

.city-layout img {
  height: 390px;
  margin-top: 0;
}

.footer {
  padding: 54px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-950);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.9fr 1fr;
  align-items: start;
  gap: 30px;
}

.footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-note {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-block h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 16px;
}

.footer-block {
  display: grid;
  gap: 8px;
  background: transparent;
}

.footer-block a:hover {
  color: var(--white);
}

.footer-legal {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.footer-legal p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal strong {
  color: var(--white);
}

.mobile-sticky {
  display: none;
}

.doc-page {
  background: var(--stone);
}

.doc-hero {
  padding: 32px 0;
  background: var(--green-950);
  color: var(--white);
}

.doc-main {
  padding: 56px 0;
}

.doc-card {
  max-width: 920px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.doc-card h1 {
  color: var(--green-950);
  font-size: 56px;
}

.doc-card h2 {
  margin-top: 30px;
  color: var(--green-950);
  font-size: 24px;
}

.doc-card p,
.doc-card li {
  color: var(--muted);
}

.thanks {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.92), rgba(20, 83, 63, 0.76)),
    url("images/hero-europe.jpg") center / cover no-repeat;
}

.thanks-card {
  max-width: 720px;
  padding: 46px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card h1 {
  color: var(--green-950);
  font-size: 58px;
}

.thanks-card p {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .benefit-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .service-layout,
  .confidence-grid,
  .form-layout,
  .city-layout {
    grid-template-columns: 1fr;
  }

  .photo-stack img:nth-child(2) {
    margin-bottom: 0;
  }

  h1 {
    font-size: 58px;
  }

  .intro-grid h2,
  .section-head h2,
  .service-copy h2,
  .confidence-grid h2,
  .form-copy h2,
  .city-layout h2 {
    font-size: 44px;
  }
}

@media (max-width: 720px) {
  .container,
  .topbar,
  .hero-inner {
    width: min(1180px, calc(100% - 28px));
  }

  .hero {
    min-height: min(760px, 84svh);
    padding-bottom: 58px;
    background:
      linear-gradient(180deg, rgba(8, 30, 22, 0.92) 0%, rgba(8, 30, 22, 0.76) 58%, rgba(8, 30, 22, 0.4) 100%),
      url("images/hero-europe.jpg") center / cover no-repeat;
  }

  .topbar {
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero-inner {
    padding-top: 46px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-line {
    border-radius: var(--radius);
  }

  .section {
    padding: 62px 0;
  }

  .intro-grid h2,
  .section-head h2,
  .service-copy h2,
  .confidence-grid h2,
  .form-copy h2,
  .city-layout h2 {
    font-size: 29px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .card h3,
  .timeline h3,
  .confidence-list h3 {
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .benefit-grid,
  .timeline,
  .confidence-list,
  .footer-grid,
  .photo-stack {
    grid-template-columns: 1fr;
  }

  .card,
  .timeline article,
  .confidence-list article {
    min-height: auto;
  }

  .photo-stack img,
  .photo-stack img:nth-child(2),
  .form-copy img,
  .city-layout img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .lead-form,
  .doc-card,
  .thanks-card {
    padding: 24px;
  }

  .footer {
    padding-bottom: 96px;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 20;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green-600);
    color: var(--white);
    font-weight: 850;
    box-shadow: 0 18px 34px rgba(11, 36, 27, 0.28);
  }
}

@media (max-width: 520px) {
  .container,
  .topbar,
  .hero-inner {
    width: min(362px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .container,
  .topbar,
  .hero-inner {
    width: min(362px, calc(100% - 28px));
  }

  h1 {
    font-size: 30px;
  }

  .intro-grid h2,
  .section-head h2,
  .service-copy h2,
  .confidence-grid h2,
  .form-copy h2,
  .city-layout h2 {
    font-size: 28px;
  }

  .doc-card h1,
  .thanks-card h1 {
    font-size: 34px;
  }
}
