:root {
  --green: #6ad225;
  --ink: #202020;
  --paper: #f5f5f5;
  --white: #ffffff;
  --line: rgba(13, 41, 64, 0.14);
  }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.number-42 {
  color: var(--green);
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-logo span {
  color: #459d0e;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-header nav a {
  padding: 8px 0;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: #459d0e;
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 89px);
  margin: 0 auto;
  padding: 13vh 0 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: #459d0e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.title-dot {
  color: var(--green);
}

.hero-text {
  max-width: 680px;
  margin: 36px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

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

.sustainable-web {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 96px;
  background: #dff3d1;
}

.sustainable-web-intro h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.3rem, 4.7vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.sustainable-web-text {
  max-width: 600px;
  margin-top: 40px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.sustainable-web-text p {
  margin: 0;
}

.sustainable-web-text p + p {
  margin-top: 20px;
}

.sustainability-proof {
  display: grid;
  gap: 16px;
}

.ecoindex-card,
.hosting-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(32, 32, 32, 0.12);
}

.proof-label {
  margin: 0;
  color: #459d0e;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ecoindex-score {
  width: 64px;
  height: 64px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #319c49;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
}

.ecoindex-result {
  margin: 16px 0 0;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.ecoindex-result span {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.ecoindex-description,
.hosting-card > p:not(.proof-label) {
  max-width: 490px;
  margin: 20px 0 0;
  color: rgba(32, 32, 32, 0.78);
  line-height: 1.6;
}

.ecoindex-metrics {
  margin: 28px 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecoindex-metrics li {
  display: grid;
  gap: 3px;
}

.ecoindex-metrics strong {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.ecoindex-metrics span {
  color: rgba(32, 32, 32, 0.64);
  font-size: 0.78rem;
}

.hosting-card h3 {
  margin: 24px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ecoindex-card .text-link,
.hosting-card .text-link {
  display: inline-block;
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease,
    border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.button-primary:hover,
.button.button-primary:focus-visible {
  background: var(--ink) !important;
  border-color: var(--green) !important;
  color: var(--green) !important;
  box-shadow: 0 10px 20px rgba(32, 32, 32, 0.12) !important;
}

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 700px) {
  .site-header {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-header nav {
  position: absolute;
  top: 100%;
  left: -16px;
  z-index: 10;
  width: calc(100% + 32px);
  height: calc(100dvh - 72px);
  padding: 18px 16px 32px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow-y: auto;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transform: none;
}

.site-header nav.is-open {
  display: flex;
}

.site-header nav a {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

  .hero {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding: 100px 0 72px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-text {
    margin-top: 28px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 34px;
  }

  .sustainable-web {
    padding: 80px 16px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sustainable-web-text {
    margin-top: 28px;
  }

  .ecoindex-card,
  .hosting-card {
    padding: 26px 22px;
  }

  .button {
    width: 100%;
  }

  .site-header nav a[aria-current="page"] {
  color: #459d0e;
}
}

.commitments {
  padding: 112px 0;
  background: var(--ink);
  color: var(--white);
}

.section-intro,
.commitments-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.commitments .eyebrow {
  color: var(--green);
}

.commitments-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.commitment {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.commitment-number {
  margin: 0;
  color: var(--green);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.commitment h3 {
  margin: 28px 0 16px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.commitment p:last-child {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 700px) {
  .commitments {
    padding: 80px 0;
  }

  .section-intro,
  .commitments-grid {
    width: min(100% - 32px, 1180px);
  }

  .commitments-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

.projects-preview {
  padding: 112px 0;
  background: var(--paper);
}

.projects-heading,
.projects-list {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.projects-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.projects-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.text-link span {
  margin-left: 6px;
  color: #459d0e;
}

.projects-list {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.project-number {
  margin: 0;
  color: var(--green);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.project-type {
  margin: 28px 0 0;
  color: #459d0e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.project-card h3 {
  margin: 12px 0 16px;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.project-card p:last-child {
  margin: 0;
  color: rgba(32, 32, 32, 0.76);
}

@media (max-width: 700px) {
  .projects-preview {
    padding: 80px 0;
  }

  .projects-heading,
  .projects-list {
    width: min(100% - 32px, 1180px);
  }

  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-list {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

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

.founder {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 64px;
}

.founder-portrait {
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: var(--green);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% center;
}

.founder-content h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.founder-text {
  max-width: 650px;
  margin: 42px 0;
  font-size: 1.15rem;
  line-height: 1.65;
}

.founder-text p {
  margin: 0;
}

.founder-text p + p {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .founder {
    width: min(100% - 32px, 1180px);
    padding: 80px 0;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-marker {
    width: 96px;
    font-size: 2.3rem;
  }

  .founder-text {
    margin: 32px 0;
  }
}

.founder-portrait {
  position: relative;
  overflow: visible;
}

.founder-portrait figcaption {
  width: calc(100% - 28px);
  margin: -4px 0 0 28px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--ink);
  color: var(--white);
}

.founder-portrait figcaption strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.founder-portrait figcaption > span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-portrait figcaption strong span {
  color: var(--green);
  text-transform: none;
}

.founder-portrait figcaption strong {
  color: var(--white);
}

.founder-portrait figcaption strong::first-letter {
  color: var(--white);
}

.founder-portrait figcaption strong span {
  color: var(--green);
}

.contact-cta {
  padding: 120px max(24px, calc((100% - 1280px) / 2));
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 72px;
  align-items: end;
  background: var(--ink);
  color: var(--white);
}

.contact-cta .eyebrow {
  color: var(--green);
}

.contact-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.contact-cta-side {
  max-width: 390px;
}

.contact-cta-side p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .contact-cta {
    padding: 80px 16px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-cta h2 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }
}

.site-footer {
  padding: 56px max(24px, calc((100% - 1180px) / 2)) 28px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.footer-brand span {
  color: #459d0e;
}

.footer-statement {
  max-width: 290px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #459d0e;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: rgba(32, 32, 32, 0.65);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 48px 16px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-bottom {
    margin-top: 48px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 62vh;
  margin: 0 auto;
  padding: 13vh 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  max-width: 900px;
}

.page-intro {
  max-width: 680px;
  margin: 36px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.about-story {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  background: var(--ink);
  color: var(--white);
}

.about-story .eyebrow {
  color: var(--green);
}

.about-story h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-story-text {
  max-width: 540px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.about-story-text p {
  margin: 0;
}

.about-story-text p + p {
  margin-top: 24px;
}

@media (max-width: 700px) {
  .page-hero {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding: 100px 0 72px;
  }

  .about-story {
    padding: 80px 16px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

.about-brand {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 96px;
  align-items: center;
}

.about-brand-logo {
  max-width: 440px;
  aspect-ratio: 1;
  background: var(--ink);
}

.about-brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-brand-content h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-brand-content p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .about-brand {
    width: min(100% - 32px, 1180px);
    padding: 80px 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-brand-logo {
    width: min(100%, 360px);
  }
}

.method {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  background: var(--green);
  color: var(--ink);
}

.method .eyebrow {
  color: var(--ink);
}

.method h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(32, 32, 32, 0.35);
}

.method-list li {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.35);
}

.method-list span {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.method-list h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.method-list p {
  max-width: 480px;
  margin: 10px 0 0;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .method {
    padding: 80px 16px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .method-list li {
    grid-template-columns: 58px 1fr;
  }
}

.projects-showcase {
  padding: 0 max(24px, calc((100% - 1180px) / 2));
}

.showcase-project {
  min-height: 620px;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.showcase-project-number {
  color: #459d0e;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.1em;
}

.showcase-project-content {
  max-width: 760px;
}

.showcase-project-content h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.showcase-summary {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 1.3rem;
  line-height: 1.5;
}

.project-details {
  margin: 56px 0 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-details div {
  padding-top: 14px;
  border-top: 1px solid currentColor;
}

.project-details dt {
  color: #459d0e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-details dd {
  margin: 10px 0 0;
  line-height: 1.55;
}

.showcase-project:nth-child(1) {
  margin-left: calc(max(24px, (100vw - 1180px) / 2) * -1);
  margin-right: calc(max(24px, (100vw - 1180px) / 2) * -1);
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
  border-top: 0;
}

.showcase-project:nth-child(1) .showcase-project-number,
.showcase-project:nth-child(1) .project-details dt,
.showcase-project:nth-child(1) .text-link span {
  color: var(--green);
}

.showcase-project:nth-child(1) .text-link {
  border-color: var(--green);
}

.showcase-project:nth-child(2) {
  background: var(--paper);
}

.showcase-project:nth-child(3) {
  margin-left: calc(max(24px, (100vw - 1180px) / 2) * -1);
  margin-right: calc(max(24px, (100vw - 1180px) / 2) * -1);
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: var(--green);
  border-top: 0;
}

.showcase-project:nth-child(3) .showcase-project-number,
.showcase-project:nth-child(3) .project-details dt,
.showcase-project:nth-child(3) .text-link span {
  color: var(--ink);
}

.showcase-project:nth-child(3) .text-link {
  border-color: var(--ink);
}

@media (max-width: 700px) {
  .projects-showcase {
    padding: 0 16px 80px;
  }

  .showcase-project {
    min-height: auto;
    padding: 72px 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-project:nth-child(1),
  .showcase-project:nth-child(3) {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .project-details {
    margin: 42px 0 34px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.pricing-intro {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  background: var(--ink);
  color: var(--white);
}

.pricing-intro .eyebrow {
  color: var(--green);
}

.pricing-intro h2,
.pricing-list-heading h2,
.services-list-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.pricing-intro-text {
  max-width: 540px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.pricing-intro-text p {
  margin: 0;
}

.pricing-intro-text p + p {
  margin-top: 22px;
}

.pricing-list {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  background: var(--paper);
}

.pricing-list-heading,
.services-list-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.price-card {
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
}

.price-card + .price-card {
  border-top: 0;
}

.price-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.price-number {
  margin: 0;
  color: var(--green);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
}

.price-name {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price-description {
  max-width: 560px;
  margin: 48px 0 32px;
  font-size: 1.2rem;
  line-height: 1.55;
}

.price {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.price span {
  margin-bottom: 7px;
  display: block;
  color: #459d0e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-list {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  background: var(--green);
  color: var(--ink);
}

.services-list .eyebrow {
  color: var(--ink);
}

.services-list article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid rgba(32, 32, 32, 0.35);
}

.services-list article:last-child {
  border-bottom: 1px solid rgba(32, 32, 32, 0.35);
}

.service-number {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.services-list h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.services-list article div p {
  margin: 7px 0 0;
  line-height: 1.5;
}

.service-price {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .pricing-intro,
  .pricing-list,
  .services-list {
    padding: 80px 16px;
  }

  .pricing-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pricing-list-heading,
  .services-list-heading {
    margin-bottom: 48px;
  }

  .price-card {
    min-height: 300px;
    padding: 24px;
  }

  .price-description {
    margin: 38px 0 26px;
  }

  .services-list article {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .service-price {
    grid-column: 2;
    margin-top: 4px;
    white-space: normal;
  }

    .pricing-intro > .eyebrow,
  .pricing-intro h2,
  .pricing-intro-text {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-intro-text {
    align-self: auto;
  }

  .price {
    align-self: flex-start;
    text-align: left;
  }

  .price span {
    text-align: left;
  }
}

/* Correction de la section "Ce qui est toujours compris" */

.pricing-intro {
  align-items: center;
}

.pricing-intro > .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 24px;
}

.pricing-intro h2 {
  grid-column: 1;
  grid-row: 2;
}

.pricing-intro-text {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

/* Prix en bas à droite des cartes */

.price-card > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price {
  margin-top: auto;
  align-self: flex-end;
  text-align: right;
}

.price span {
  text-align: right;
}

.pricing-included {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-included li {
  padding: 13px 0 13px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.45;
}

.pricing-included li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.contact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 104px 12vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 96px;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.contact-details .eyebrow {
  color: var(--green);
}

.contact-details h2,
.contact-form h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-details > p:not(.eyebrow) {
  max-width: 430px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-direct {
  max-width: 360px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-direct a {
  width: fit-content;
  padding-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: border-color 160ms ease;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  border-color: var(--green);
}

.contact-direct svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-form {
  padding: 46px;
  background: var(--paper);
  color: var(--ink);
}

.contact-form h2 {
  margin-bottom: 42px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  margin-top: 28px;
}

.form-row .form-field {
  margin-top: 0;
}

.form-field label {
  margin-bottom: 8px;
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-field label span {
  color: rgba(32, 32, 32, 0.65);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(32, 32, 32, 0.35);
  outline: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  transition: border-color 160ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #459d0e;
}

.contact-form .button {
  margin-top: 38px;
}

.form-note {
  max-width: 350px;
  margin: 18px 0 0;
  color: rgba(32, 32, 32, 0.65);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

@media (max-width: 700px) {
  .contact-section {
    width: 100%;
    margin: 0;
    padding: 80px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    box-sizing: border-box;
  }

  .contact-form {
    min-width: 0;
    padding: 30px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row .form-field {
    margin-top: 0;
  }
}

/* Menu mobile */

.menu-button {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header nav a[aria-current="page"] {
  color: #459d0e;
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    min-height: 72px;
    padding: 16px 0;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
  }

  .menu-button > span:nth-child(1) {
    top: 14px;
  }

  .menu-button > span:nth-child(2) {
    top: 21px;
  }

  .menu-button > span:nth-child(3) {
    top: 28px;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 18px 0 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .site-header nav a {
    width: 100%;
    padding: 24px 0;
    border-top: 1.3px solid var(--line);
    font-size: 1.13rem;
  }

  .site-header nav a:last-child {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .menu-identity {
    width: 230px;
    margin: auto auto 42px;
    }

  .menu-identity img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.menu-identity {
  display: none;
}

@media (max-width: 700px) {
  .menu-identity {
    display: block;
  }
}

@media (min-width: 701px) {
  .page-hero {
    min-height: calc(100svh - 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.menu-bottom {
  display: none;
}

@media (max-width: 700px) {
  .menu-bottom {
    width: 100%;
    margin-top: auto;
    padding-bottom: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .menu-identity {
    display: block;
    width: 230px;
    margin: 0;
  }

  .menu-social {
    display: flex;
    gap: 12px;
  }

  .site-header nav .menu-social a {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    background: transparent;
    color: #459d0e;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  }

  .menu-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .site-header nav .menu-social a:hover,
.site-header nav .menu-social a:focus-visible,
.site-header nav .menu-social a:active {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
}
}.footer-social {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #459d0e;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
}

@media (max-width: 700px) {
  .footer-social {
    justify-content: flex-start;
  }
}

/* Mentions légales et confidentialité */

.legal-content {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.legal-content article {
  min-height: 290px;
  padding: 40px 48px 48px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content article:nth-child(even) {
  padding-right: 0;
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.legal-content .eyebrow {
  margin: 0 0 18px;
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.legal-content p {
  max-width: 460px;
  margin: 0 0 16px;
}

.legal-content a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 5px;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: #459d0e;
}

@media (max-width: 700px) {
  .legal-content {
    padding: 72px 16px;
    grid-template-columns: 1fr;
  }

  .legal-content article,
  .legal-content article:nth-child(even) {
    min-height: 0;
    padding: 32px 0;
    border-left: 0;
  }
}

.footer-bottom div {
  flex-wrap: wrap;
}

.form-status {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-success {
  border-color: var(--green);
  color: #459d0e;
}

.form-status.is-error {
  border-color: #a94a42;
  color: #8a332c;
}

/* =========================================================
   LE POULPE VERT — SECTION WEB DURABLE
   ========================================================= */

.title-dot {
  color: var(--green);
}

.sustainable-web {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 96px;
  background: #dff3d1;
}

.sustainable-web-intro h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.3rem, 4.7vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.sustainable-web-text {
  max-width: 600px;
  margin-top: 40px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.sustainable-web-text p {
  margin: 0;
}

.sustainable-web-text p + p {
  margin-top: 20px;
}

.sustainability-proof {
  display: grid;
  gap: 16px;
}

.ecoindex-card,
.hosting-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(32, 32, 32, 0.12);
}

.proof-label {
  margin: 0;
  color: #459d0e;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ecoindex-score {
  width: 64px;
  height: 64px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #319c49;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
}

.ecoindex-result {
  margin: 16px 0 0;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.ecoindex-result span {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.ecoindex-description,
.hosting-card > p:not(.proof-label) {
  max-width: 490px;
  margin: 20px 0 0;
  color: rgba(32, 32, 32, 0.78);
  line-height: 1.6;
}

.ecoindex-metrics {
  margin: 28px 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecoindex-metrics li {
  display: grid;
  gap: 3px;
}

.ecoindex-metrics strong {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.ecoindex-metrics span {
  color: rgba(32, 32, 32, 0.64);
  font-size: 0.78rem;
}

.hosting-card h3 {
  margin: 24px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ecoindex-card .text-link,
.hosting-card .text-link {
  display: inline-block;
}

@media (max-width: 700px) {
  .sustainable-web {
    padding: 80px 16px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sustainable-web-text {
    margin-top: 28px;
  }

  .ecoindex-card,
  .hosting-card {
    padding: 26px 22px;
  }
}

/* =========================================================
   RETOUR EN HAUT
   ========================================================= */

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  box-shadow: 0 10px 24px rgba(32, 32, 32, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--green);
  color: var(--ink);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(106, 210, 37, 0.35);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 700px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */

.testimonials {
  padding: 120px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 96px;
  align-items: start;
  background: #dff3d1;
}

.testimonials-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.testimonial-carousel {
  min-width: 0;
}

.testimonial-slide {
  min-height: 506px;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  border: 1px solid rgba(32, 32, 32, 0.12);
}

.testimonial-slide[hidden] {
  display: none;
}

.testimonial-slide blockquote {
  margin: 0;
}

.testimonial-slide blockquote p {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.testimonial-author {
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.testimonial-author img {
  width: 124px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.testimonial-author p,
.testimonial-author span {
  margin: 0;
}

.testimonial-author p {
  font-weight: 800;
}

.testimonial-author span {
  display: block;
  margin-top: 4px;
  color: rgba(32, 32, 32, 0.68);
  font-size: 0.94rem;
}

.testimonial-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background: var(--ink);
  color: var(--green);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 32, 32, 0.25);
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.testimonial-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--green);
}

@media (max-width: 700px) {
  .testimonials {
    padding: 80px 16px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .testimonial-slide {
    min-height: 0;
    padding: 32px 24px;
  }

  .testimonial-author {
    margin-top: 36px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

/* =========================================================
   MENU STICKY
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  border-bottom: 0;
  background: var(--paper);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: -1px;
  left: calc((100vw - 100%) / -2);
  z-index: -1;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}