:root {
  --dark: #07140f;
  --deep: #0d5033;
  --mint: #83efb3;
  --mint-2: #34c77d;
  --text: #0b1813;
  --muted: #5d6d66;
  --bg: #f7faf7;
  --white: #ffffff;
  --soft: #edf6f0;
  --border: #dae6de;
  --shadow: 0 24px 70px rgba(7, 20, 15, 0.12);
  --shadow-soft: 0 18px 42px rgba(7, 20, 15, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--dark);
  background: var(--mint);
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.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 {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(218, 230, 222, 0.86);
  backdrop-filter: blur(18px);
}

.top-bar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--dark);
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 760;
}

.top-bar a {
  color: var(--mint);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 850;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--deep);
  background: var(--soft);
}

.nav-menu .nav-button,
.nav-menu .nav-button[aria-current="page"] {
  color: var(--dark);
  background: var(--mint);
  box-shadow: 0 12px 28px rgba(52, 199, 125, 0.22);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--dark);
  border-radius: 999px;
}

.brand-banner {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(131, 239, 179, 0.16), transparent 34%),
    linear-gradient(135deg, var(--dark), #0a2218 58%, #0b2b1e);
}

.banner-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--dark);
  background: linear-gradient(135deg, var(--mint), #b9ffd3);
  border-radius: 14px;
  font-size: 1.28rem;
  font-weight: 950;
  box-shadow: inset 0 -8px 20px rgba(13, 80, 51, 0.15), 0 12px 26px rgba(0, 0, 0, 0.22);
}

.logo-text {
  display: grid;
  gap: 0;
  line-height: 1;
}

.logo-main {
  font-size: 1.08rem;
  font-weight: 950;
}

.logo-sub {
  margin-top: 5px;
  color: rgba(7, 20, 15, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.brand-banner .logo-sub,
.site-footer .logo-sub {
  color: rgba(255, 255, 255, 0.74);
}

.banner-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 94px;
  background:
    linear-gradient(180deg, rgba(237, 246, 240, 0.76), rgba(247, 250, 247, 0.98)),
    radial-gradient(circle at 82% 24%, rgba(131, 239, 179, 0.35), transparent 30%),
    radial-gradient(circle at 15% 74%, rgba(52, 199, 125, 0.17), transparent 34%);
}

.split-hero {
  padding-top: 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -6% -22% 44%;
  height: 430px;
  background: linear-gradient(135deg, rgba(13, 80, 51, 0.08), rgba(131, 239, 179, 0.18));
  border-radius: 999px 0 0 0;
  transform: rotate(-7deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 710px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 950;
}

h1 span {
  color: var(--deep);
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
  font-weight: 900;
}

.hero-text,
.section-heading > p,
.section-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button,
.email-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.email-button:hover,
.email-button:focus-visible,
.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--mint), #b8ffd1);
  box-shadow: 0 18px 34px rgba(52, 199, 125, 0.28);
}

.button-secondary {
  color: var(--deep);
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 14px 30px rgba(7, 20, 15, 0.07);
}

.button-light {
  color: var(--dark);
  background: var(--mint);
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-checklist li {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px 8px 38px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(218, 230, 222, 0.82);
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(7, 20, 15, 0.06);
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--mint-2);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(52, 199, 125, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.browser-mockup {
  position: absolute;
  inset: 48px 0 46px 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(218, 230, 222, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.browser-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #f2f6f3;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c6d4cc;
}

.dot:nth-child(1) {
  background: #ff8879;
}

.dot:nth-child(2) {
  background: #ffc85a;
}

.dot:nth-child(3) {
  background: var(--mint-2);
}

.address-bar {
  min-width: 0;
  height: 30px;
  display: inline-flex;
  align-items: center;
  flex: 1;
  margin-left: 8px;
  padding-inline: 16px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.mock-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px 0;
}

.mock-nav span {
  width: 58px;
  height: 10px;
  background: #dce8e1;
  border-radius: 999px;
}

.mock-nav span:first-child {
  width: 92px;
  background: var(--deep);
}

.mock-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.78fr);
  gap: 22px;
  padding: 42px 34px 28px;
}

.mock-content {
  display: grid;
  align-content: start;
}

.mock-kicker,
.mock-heading,
.mock-line,
.mock-button {
  display: block;
  border-radius: 999px;
}

.mock-kicker {
  width: 118px;
  height: 12px;
  margin-bottom: 22px;
  background: var(--mint-2);
}

.mock-heading {
  width: 92%;
  height: 34px;
  margin-bottom: 12px;
  background: var(--dark);
}

.mock-heading.short {
  width: 66%;
}

.mock-line {
  width: 78%;
  height: 12px;
  margin-top: 16px;
  background: #dce8e1;
}

.mock-line.wide {
  width: 92%;
  margin-top: 10px;
}

.mock-button {
  width: 134px;
  height: 42px;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--mint), #b9ffd3);
}

.leaf-graphic {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 24%, rgba(131, 239, 179, 0.82), transparent 24%),
    linear-gradient(145deg, #0b2b1f, var(--deep));
  border-radius: 26px;
}

.leaf-graphic::before,
.leaf-graphic::after,
.leaf-graphic span {
  content: "";
  position: absolute;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px 0 999px 999px;
  transform: rotate(-34deg);
}

.leaf-graphic::before {
  width: 190px;
  height: 96px;
  right: -34px;
  top: 40px;
}

.leaf-graphic::after {
  width: 150px;
  height: 72px;
  right: 32px;
  bottom: 30px;
}

.leaf-graphic span:nth-child(1) {
  width: 112px;
  height: 58px;
  left: 24px;
  bottom: 46px;
}

.leaf-graphic span:nth-child(2) {
  width: 80px;
  height: 40px;
  left: 40px;
  top: 50px;
}

.leaf-graphic span:nth-child(3) {
  width: 2px;
  height: 190px;
  left: 50%;
  top: 18px;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(34deg);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 34px 34px;
}

.stat-row span {
  height: 84px;
  background:
    linear-gradient(180deg, rgba(131, 239, 179, 0.28), rgba(255, 255, 255, 0.04)),
    #f6faf7;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(218, 230, 222, 0.94);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(7, 20, 15, 0.14);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--deep);
  font-size: 0.98rem;
}

.floating-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-one {
  top: 0;
  left: 0;
}

.card-two {
  right: 0;
  bottom: 0;
}

.feature-strip {
  padding: 28px 0;
  background: var(--dark);
}

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

.feature-grid div {
  min-height: 104px;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.feature-grid span {
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 950;
}

.feature-grid p {
  margin: 8px 0 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

.section {
  padding: 96px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(131, 239, 179, 0.28), transparent 30%),
    linear-gradient(180deg, var(--soft), var(--bg));
}

.page-hero h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.dark-page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(131, 239, 179, 0.2), transparent 32%),
    linear-gradient(135deg, var(--dark), #0a2b1f 58%, #083822);
}

.dark-page-hero h1,
.dark-page-hero .eyebrow {
  color: var(--white);
}

.dark-page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.mini-dashboard {
  min-height: 310px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-dashboard span {
  display: block;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(131, 239, 179, 0.24), rgba(255, 255, 255, 0.06)),
    #0d2d20;
}

.mini-dashboard span:first-child {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 78% 22%, var(--mint), transparent 18%),
    linear-gradient(135deg, #103b2a, var(--deep));
}

.stacked-links {
  display: grid;
  gap: 14px;
}

.stacked-links a {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stacked-links a:hover,
.stacked-links a:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.stacked-links span {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stacked-links strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.section-heading {
  margin-bottom: 44px;
}

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

.service-card,
.process-card,
.pricing-card,
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card,
.process-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.portfolio-card:hover {
  box-shadow: var(--shadow);
}

.number-badge {
  width: 46px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--deep);
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.service-card p,
.process-card p,
.portfolio-card p,
.pricing-card p,
details p,
.footer-grid p {
  color: var(--muted);
}

.work-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(131, 239, 179, 0.13), transparent 28%),
    linear-gradient(145deg, var(--dark), #0a2b1f 58%, #083822);
}

.dark-heading h2,
.dark-heading p {
  color: var(--white);
}

.dark-heading .eyebrow {
  color: var(--mint);
}

.dark-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.no-top-gap {
  padding-top: 0;
}

.portfolio-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.portfolio-preview {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.greenline-preview {
  background:
    radial-gradient(circle at 82% 22%, rgba(131, 239, 179, 0.74), transparent 12%),
    linear-gradient(150deg, #082536, #0d5033 70%);
}

.canopy-preview {
  background:
    radial-gradient(circle at 76% 18%, rgba(131, 239, 179, 0.38), transparent 15%),
    linear-gradient(145deg, #07140f, #17452f 62%, #6f8367);
}

.portfolio-preview span {
  position: absolute;
  display: block;
}

.preview-sun {
  width: 74px;
  height: 74px;
  right: 48px;
  top: 40px;
  background: var(--mint);
  border-radius: 50%;
}

.preview-slope {
  left: -30px;
  right: -20px;
  bottom: -30px;
  height: 150px;
  background: linear-gradient(135deg, #1b7c45, #83efb3);
  border-radius: 100% 100% 0 0;
  transform: rotate(-5deg);
}

.preview-arch {
  width: 210px;
  height: 210px;
  left: 44px;
  bottom: -42px;
  border: 28px solid rgba(131, 239, 179, 0.32);
  border-radius: 999px 999px 0 0;
}

.preview-stone {
  width: 180px;
  height: 88px;
  right: 42px;
  bottom: 48px;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 999px 999px 28px 28px;
}

.preview-panel {
  left: 34px;
  top: 34px;
  width: 210px;
  height: 118px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.preview-line {
  left: 58px;
  z-index: 1;
  height: 12px;
  background: var(--deep);
  border-radius: 999px;
}

.preview-line.one {
  top: 70px;
  width: 118px;
}

.preview-line.two {
  top: 98px;
  width: 152px;
  background: #d9efe3;
}

.portfolio-content {
  padding: 30px;
}

.portfolio-content h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.portfolio-content > p:not(.card-meta):not(.status-pill) {
  color: rgba(255, 255, 255, 0.72);
}

.card-meta {
  margin-bottom: 10px;
  color: var(--mint) !important;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill {
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 12px;
  color: var(--dark) !important;
  background: rgba(131, 239, 179, 0.95);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.74fr);
  gap: 40px;
  align-items: start;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.included-list li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  font-weight: 800;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 12px;
  height: 12px;
  background: var(--mint-2);
  border-radius: 50%;
}

.pricing-card {
  padding: 34px;
  background:
    radial-gradient(circle at 85% 12%, rgba(131, 239, 179, 0.38), transparent 26%),
    var(--white);
}

.pricing-card h3 {
  font-size: 2rem;
}

.process-section {
  background: var(--soft);
}

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

.process-card {
  background: rgba(255, 255, 255, 0.82);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 24px 26px;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  line-height: 1.35;
}

summary::marker {
  color: var(--mint-2);
}

details p {
  margin: 16px 0 0;
}

.contact-section {
  padding: 104px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 18%, rgba(131, 239, 179, 0.18), transparent 28%),
    linear-gradient(135deg, var(--dark), #0b281d 58%, var(--deep));
}

.compact-cta {
  padding: 74px 0;
}

.contact-page {
  min-height: 520px;
  display: grid;
  align-items: center;
}

.contact-page h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.contact-content {
  text-align: center;
}

.contact-content h2,
.contact-content .eyebrow {
  color: var(--white);
}

.contact-content p {
  max-width: 740px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.email-button {
  min-height: 66px;
  margin: 30px 0 18px;
  padding: 0 30px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--mint), #beffd5);
  box-shadow: 0 22px 46px rgba(52, 199, 125, 0.24);
  font-size: 1.08rem;
}

.contact-note {
  margin-bottom: 0;
}

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

.contact-cards article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-cards p {
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  color: var(--white);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(250px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 310px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--mint);
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 18%, rgba(131, 239, 179, 0.26), transparent 28%),
    var(--bg);
}

.error-main {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 70px 0;
}

.error-panel {
  max-width: 720px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.error-panel h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.error-panel p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 980px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar-inner span {
    display: none;
  }

  .navbar {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
  }

  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 118px;
    display: grid;
    gap: 6px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 16px;
  }

  .nav-menu .nav-button {
    justify-content: center;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid,
  .pricing-grid,
  .page-hero-grid,
  .two-column,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .browser-mockup {
    inset: 42px 0 42px 0;
  }

  .feature-grid,
  .portfolio-grid,
  .process-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .faq-intro {
    position: static;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .top-bar {
    display: none;
  }

  .nav-menu {
    top: 82px;
  }

  .navbar {
    min-height: 68px;
  }

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

  .hero {
    padding: 58px 0 70px;
  }

  .page-hero {
    padding: 62px 0;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

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

  .hero-checklist {
    display: grid;
  }

  .hero-visual {
    min-height: 560px;
  }

  .browser-mockup {
    inset: 74px 0 76px 0;
  }

  .mock-body {
    grid-template-columns: 1fr;
    padding: 28px 20px 18px;
  }

  .mock-nav {
    justify-content: flex-start;
    padding-inline: 20px;
  }

  .mock-nav span {
    width: 42px;
  }

  .mock-nav span:first-child {
    width: 64px;
  }

  .leaf-graphic {
    min-height: 142px;
  }

  .stat-row {
    grid-template-columns: 1fr;
    padding: 0 20px 22px;
  }

  .stat-row span {
    height: 46px;
  }

  .floating-card {
    width: min(228px, calc(100% - 32px));
    padding: 15px;
  }

  .card-one {
    top: 0;
    left: 14px;
  }

  .card-two {
    right: 14px;
    bottom: 0;
  }

  .feature-grid,
  .services-grid,
  .portfolio-grid,
  .included-list,
  .process-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .service-card,
  .process-card,
  .pricing-card,
  .portfolio-content,
  .stacked-links a,
  .contact-cards article,
  .error-panel,
  details {
    padding: 22px;
  }

  .service-card,
  .process-card {
    min-height: auto;
  }

  .number-badge {
    margin-bottom: 28px;
  }

  .portfolio-preview {
    min-height: 220px;
  }

  .pricing-card h3 {
    font-size: 1.58rem;
  }

  .footer-links,
  .footer-contact {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.58rem;
  }

  .address-bar {
    font-size: 0.72rem;
  }

  .browser-top {
    padding-inline: 12px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .email-button {
    padding-inline: 18px;
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
