:root {
  --ink: #171917;
  --muted: #5c625d;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #dcddd7;
  --blue: #102c3a;
  --green: #385f4a;
  --copper: #b7603b;
  --lemon: #f5d86d;
  --shadow: 0 18px 54px rgba(18, 24, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.hero {
  min-height: 88svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 15, 16, 0.88) 0%, rgba(12, 24, 29, 0.72) 42%, rgba(16, 44, 58, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 15, 16, 0.7) 0%, rgba(9, 15, 16, 0.08) 52%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  filter: saturate(0.98) contrast(1.02);
}

.nav,
.hero-content {
  position: relative;
  z-index: 2;
}

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

.brand {
  font-weight: 760;
  letter-spacing: 0;
  font-size: 1rem;
}

.nav-actions,
.nav-links,
.language-switch {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 20px;
}

.nav-links {
  gap: 18px;
  font-size: 0.93rem;
}

.nav-links a,
.language-switch a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

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

.language-switch {
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
}

.language-switch span {
  color: rgba(255, 255, 255, 0.42);
}

.language-switch .active {
  color: var(--white);
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 9svh;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.84);
}

.availability::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lemon);
  box-shadow: 0 0 0 5px rgba(245, 216, 109, 0.14);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4.3rem, 10vw, 9.2rem);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 780;
}

.hero-text {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 720;
  font-size: 0.98rem;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--lemon);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.section {
  padding: 86px 0;
}

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

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.section-label {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 0;
  max-width: 750px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

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

.problem-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #2a2f2b;
  font-weight: 650;
}

.offer {
  background: #f0f4ec;
  border-top: 1px solid #d8e0d2;
  border-bottom: 1px solid #d8e0d2;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: start;
}

.price {
  width: 100%;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.price strong {
  display: block;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 10px;
}

.price p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.deliverables {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.deliverables li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
  color: #2e342f;
}

.deliverables li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.risk {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--copper);
  color: #333832;
  font-weight: 680;
}

.projects {
  background: var(--paper);
}

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

.project-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card p {
  color: var(--muted);
  margin: 16px 0 26px;
}

.project-card span {
  color: var(--green);
  font-weight: 780;
}

.testimonials {
  background: #fbf7ea;
  border-top: 1px solid #e7dcc6;
  border-bottom: 1px solid #e7dcc6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.quote-card {
  min-height: 230px;
  border: 1px solid #e1d4bc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card blockquote {
  margin: 0;
  color: #252a25;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.35;
  font-weight: 690;
}

.quote-card figcaption {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.quote-card figcaption strong {
  display: block;
  color: var(--ink);
}

.proof {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.proof-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.proof-item {
  border-top: 4px solid var(--green);
  padding-top: 18px;
}

.proof-item strong {
  display: block;
  font-size: 1.04rem;
}

.proof-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta {
  background: var(--ink);
  color: var(--white);
}

.cta .lead {
  color: rgba(255, 255, 255, 0.76);
}

.cta-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.email-link {
  color: var(--lemon);
  font-weight: 740;
  text-decoration: none;
}

.footer {
  padding: 28px 0;
  background: #101210;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 90svh;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(9, 15, 16, 0.86) 0%, rgba(10, 18, 20, 0.7) 50%, rgba(16, 44, 58, 0.24) 100%);
  }

  .hero img {
    object-position: 58% 25%;
  }

  .hero-content {
    padding-bottom: 7svh;
  }

  .two-col,
  .offer-panel,
  .project-grid,
  .testimonial-grid,
  .proof-line {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .project-card {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .nav,
  .hero-content,
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 5.5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .availability {
    max-width: 280px;
  }
}
