:root {
  --bg: #ffffff;
  --text: #111116;
  --muted: #666b76;
  --soft: #f5f5f4;
  --line: #e7e7e4;
  --dark: #111116;
  --green: #27ae79;
  --green-soft: #dff7ee;
  --radius-lg: 44px;
  --radius-md: 28px;
  --shadow: 0 26px 70px rgba(17, 17, 22, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.65; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  padding: 0 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand, .main-nav, .header-actions { display: flex; align-items: center; }
.brand { gap: 12px; font-weight: 800; font-size: 22px; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--dark);
  font-size: 16px;
}
.brand-name span { color: var(--green); }
.main-nav { gap: 42px; color: #555862; font-weight: 600; }
.main-nav a:hover { color: var(--text); }
.header-actions { gap: 14px; }

.language-switch {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 2px;
  font-size: 13px;
  font-weight: 800;
}
.language-switch a { padding: 7px 11px; border-radius: 999px; color: #6a6d75; }
.language-switch a.active { background: var(--dark); color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(17,17,22,.12); }
.button-dark { background: var(--dark); color: white; border-color: var(--dark); }
.button-light { background: white; color: var(--text); }
.button-small { min-height: 48px; padding: 0 22px; }

.section { padding: 92px 10%; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
  background: radial-gradient(circle at 90% 20%, rgba(39,174,121,.12), transparent 34%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #70747d;
  font-size: 13px;
  font-weight: 900;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

h1, h2, h3 { margin: 0; letter-spacing: -0.055em; }
h1 {
  margin-top: 34px;
  font-size: clamp(52px, 6vw, 84px);
  line-height: .96;
  font-weight: 900;
}
h1 strong { color: var(--green); font-style: normal; }
h2 { font-size: clamp(40px, 5vw, 66px); line-height: 1.02; font-weight: 900; }
h3 { font-size: 27px; line-height: 1.1; font-weight: 900; }

.hero-text {
  max-width: 680px;
  font-size: 22px;
  margin: 28px 0 0;
}
.hero-buttons { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 42px; margin-top: 36px; color: #6a6d75; font-size: 17px; flex-wrap: wrap; }
.hero-points span::first-letter { color: var(--green); }

.hero-visual {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  border-radius: 0px;
  overflow: hidden;
  background: #f6f3ee;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  display: block;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 23px 0;
  animation: marquee 30s linear infinite;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  color: #777982;
}
.marquee b { color: var(--green); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section-heading { max-width: 860px; margin-bottom: 70px; }
.section-heading h2 { margin-top: 30px; }
.section-heading p { font-size: 22px; max-width: 760px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(17,17,22,.08); }
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--green-soft);
  color: #087a4d;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 36px;
}
.service-card p { font-size: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 34px; }
.tags span { padding: 7px 14px; border-radius: 999px; background: var(--soft); font-size: 14px; font-weight: 700; }
.service-card a { margin-top: auto; font-weight: 900; }

.why-box {
  background: var(--dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 86px 72px;
}
.green-label {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}
.why-box h2 { margin: 25px 0 60px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #303039;
  border-radius: 28px;
  overflow: hidden;
}
.why-grid div {
  padding: 34px;
  border-right: 1px solid #25252d;
  border-bottom: 1px solid #25252d;
  min-height: 160px;
}
.why-grid h3 { font-size: 20px; letter-spacing: -0.03em; }
.why-grid p { color: #a8acb8; margin-bottom: 0; }

.process-section h2 { margin: 30px 0 70px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; }
.process-grid strong { display: block; color: #bcebd9; font-size: 58px; margin-bottom: 20px; }
.process-grid div { border-top: 1px solid var(--line); padding-top: 28px; }
.process-grid h3 { font-size: 25px; }

.mission-section { text-align: center; padding-top: 30px; }
.mission-section h2 {
  max-width: 980px;
  margin: 36px auto 0;
  font-size: clamp(34px, 4vw, 54px);
}

.cta-section { padding-top: 40px; }
.cta-box {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 100px 40px;
  background: radial-gradient(circle at 0% 0%, rgba(39,174,121,.15), transparent 35%), white;
}
.cta-box p { font-size: 22px; margin-bottom: 34px; }

.site-footer {
  min-height: 110px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  background: var(--dark);
  color: #a8acb8;
  font-size: 14px;
}
.site-footer a:hover { color: white; }

@media (max-width: 1100px) {
  .site-header { padding: 0 5%; }
  .section { padding-left: 5%; padding-right: 5%; }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-visual {
    justify-self: stretch;
    max-width: none;
    aspect-ratio: 16 / 10;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding: 16px 5%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
  }

  .header-actions { margin-left: auto; }
  .button-small { display: none; }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero { min-height: auto; }

  h1 { font-size: 56px; }

  .hero-text { font-size: 18px; }

  .hero-visual {
    aspect-ratio: 4 / 5;
    border-radius: 0;
  }

  .service-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px;
    min-height: auto;
  }

  .why-box {
    padding: 54px 28px;
    border-radius: 30px;
  }

  .why-grid div { border-right: none; }

  .cta-box { padding: 70px 24px; }
}
.services-hero {
  padding-top: 120px;
  padding-bottom: 70px;
  max-width: 1100px;
}

.services-hero h1 {
  max-width: 950px;
}

.services-hero p {
  max-width: 760px;
  font-size: 22px;
  margin-top: 26px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-detail.reverse .service-detail-image {
  order: 2;
}

.service-detail-image {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #f6f3ee;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.service-detail-copy span {
  display: block;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-detail-copy p {
  font-size: 21px;
  max-width: 620px;
}

.service-detail-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
  color: var(--text);
  font-weight: 700;
}

.service-detail-copy li::before {
  content: "✓";
  color: var(--green);
  margin-right: 12px;
}

@media (max-width: 900px) {
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-detail-image {
    order: 0;
  }
}
.about-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 1180px;
}

.about-hero h1 {
  max-width: 1050px;
}

.about-hero p {
  max-width: 760px;
  font-size: 22px;
  margin-top: 28px;
}

.about-statement {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-statement-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 86px 72px;
  background: radial-gradient(circle at 0% 0%, rgba(39,174,121,.13), transparent 35%), #fff;
}

.about-statement-inner h2 {
  max-width: 1100px;
  margin-top: 24px;
}

.about-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.about-copy p {
  font-size: 22px;
  margin-top: 0;
}

.about-dark {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-dark-box {
  background: var(--dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 86px 72px;
}

.about-dark-box h2 {
  margin: 24px 0;
}

.about-dark-box p:not(.green-label) {
  max-width: 850px;
  color: #a8acb8;
  font-size: 22px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.values-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
  min-height: 280px;
  background: #fff;
}

.values-grid span {
  display: block;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 32px;
}

.values-grid h3 {
  font-size: 25px;
}

.values-grid p {
  margin-bottom: 0;
}

.about-positioning {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
}

.positioning-card {
  background: var(--green-soft);
  border-radius: var(--radius-md);
  padding: 42px;
}

.positioning-card h3 {
  font-size: 28px;
}

.positioning-card p {
  color: #285646;
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .values-grid,
  .about-positioning {
    grid-template-columns: 1fr;
  }

  .about-statement-inner,
  .about-dark-box {
    padding: 54px 28px;
    border-radius: 30px;
  }
}
.contact-page {
  padding-top: 120px;
}

.contact-intro {
  max-width: 1000px;
  margin-bottom: 72px;
}

.contact-intro p {
  max-width: 760px;
  font-size: 22px;
  margin-top: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 18px;
  font: inherit;
  color: var(--text);
  background: var(--soft);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: #fff;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  background: #fff;
}

.contact-card span {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-card a {
  font-size: 24px;
  font-weight: 900;
}

.contact-card p {
  margin: 0;
  font-size: 18px;
}

.contact-card.dark {
  background: var(--dark);
  color: #fff;
}

.contact-card.dark p {
  color: #a8acb8;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
    border-radius: 30px;
  }
}
/* Legal pages */

.legal-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 70px;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 20px 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.legal-hero > p {
  max-width: 720px;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.legal-section {
  padding-top: 30px;
  padding-bottom: 120px;
}

.legal-content {
  width: min(100%, 900px);
  margin: 0 auto;
}

.legal-updated {
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-block {
  padding: 45px 0;
  border-top: 1px solid var(--line);
}

.legal-block:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0 0 22px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.legal-block p,
.legal-block li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}

.legal-block p {
  margin: 0 0 18px;
}

.legal-block ul {
  margin: 18px 0 24px;
  padding-left: 24px;
}

.legal-block li {
  margin-bottom: 8px;
}

.legal-block a {
  color: var(--green);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.legal-block a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .legal-hero {
    padding-top: 110px;
    padding-bottom: 45px;
  }

  .legal-section {
    padding-bottom: 80px;
  }

  .legal-block {
    padding: 35px 0;
  }
}
/* Legal tables */

.legal-table-wrapper {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}

.legal-table th,
.legal-table td {
  padding: 20px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.legal-table th {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  background: rgba(0, 0, 0, 0.03);
}

.legal-table td {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 700px) {
  .legal-table-wrapper {
    margin: 25px 0;
  }
}