:root {
  --ink: #111310;
  --ivory: #f5f3ec;
  --lime: #c7f04b;
  --stone: #e7e5dd;
  --slate: #65685f;
  --white: #ffffff;

  --line: rgba(17, 19, 16, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);

  --shadow: 0 22px 60px rgba(17, 19, 16, 0.12);

  --container: 1180px;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}


body {
  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}


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


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


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


button {
  cursor: pointer;
}


.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}


.section {
  padding: 110px 0;
}



/* ACCESSIBILITY */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;

  padding: 10px 14px;

  background: var(--white);

  border-radius: 10px;

  transform: translateY(-150%);
}


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



/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(
    245,
    243,
    236,
    0.94
  );

  backdrop-filter: blur(14px);

  border-bottom: 1px solid
    rgba(17, 19, 16, 0.08);
}


.header-inner {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


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


.brand-logo {
  width: 190px;
  height: auto;
}


.main-nav {
  display: flex;
  align-items: center;

  gap: 26px;
}


.main-nav a {
  font-size: 13px;
  font-weight: 700;

  color: #3d4038;

  transition: 0.2s ease;
}


.main-nav a:hover {
  color: var(--ink);
}


.main-nav .nav-cta {
  padding: 11px 18px;

  border-radius: 999px;

  background: var(--ink);
  color: var(--ivory);
}


.main-nav .nav-cta:hover {
  background: var(--lime);
  color: var(--ink);
}


.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 0;

  background: transparent;
}


.menu-toggle span {
  display: block;

  height: 2px;

  margin: 6px 0;

  background: var(--ink);
}



/* HERO */

.hero {
  position: relative;

  overflow: hidden;

  padding: 110px 0 100px;

  background:
    radial-gradient(
      circle at 72% 20%,
      rgba(199, 240, 75, 0.16),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #f8f6ef 0%,
      var(--ivory) 100%
    );
}


.hero-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);
}


.hero-glow-one {
  width: 360px;
  height: 360px;

  right: -110px;
  top: 60px;

  background:
    rgba(199, 240, 75, 0.08);
}


.hero-glow-two {
  width: 240px;
  height: 240px;

  right: 28%;
  bottom: -110px;

  background:
    rgba(17, 19, 16, 0.05);
}


.hero-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    1.05fr 0.95fr;

  align-items: center;

  gap: 72px;
}


.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.eyebrow {
  padding: 8px 12px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.55);
}


.eyebrow-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--lime);
}


.hero h1 {
  max-width: 760px;

  margin-top: 20px;

  font-size:
    clamp(58px, 7vw, 96px);

  line-height: 0.95;

  letter-spacing: -4px;
}


.hero h1 span {
  display: block;

  color: #5e6258;

  font-weight: 500;
}


.hero-description {
  max-width: 640px;

  margin-top: 26px;

  color: var(--slate);

  font-size: 19px;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}


.button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 22px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;

  transition: 0.2s ease;
}


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


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


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


.button-secondary {
  border: 1px solid var(--line);

  background:
    rgba(255, 255, 255, 0.55);
}


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


.button-light {
  background: var(--ivory);
  color: var(--ink);
}


.hero-services {
  display: flex;
  flex-wrap: wrap;

  gap: 10px 20px;

  margin-top: 26px;
}


.hero-services span {
  color: #55594f;

  font-size: 12px;
  font-weight: 700;
}


.hero-services span::before {
  content: "•";

  margin-right: 8px;

  color: var(--lime);
}


.hero-visual {
  position: relative;

  min-height: 500px;
}


.hero-card-main {
  position: absolute;

  inset:
    35px
    10px
    35px
    65px;

  padding: 36px;

  border-radius: 30px;

  background: var(--ink);

  color: var(--ivory);

  box-shadow: var(--shadow);
}


.card-label {
  color: #b9bdb3;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.hero-card-main h2 {
  max-width: 390px;

  margin-top: 16px;

  font-size: 38px;

  line-height: 1.03;

  letter-spacing: -1.6px;
}


.hero-card-main p {
  max-width: 420px;

  margin-top: 16px;

  color: #b9bdb3;

  font-size: 14px;
}


.metric-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 12px;

  margin-top: 34px;
}


.metric-card {
  min-height: 110px;

  padding: 16px;

  border:
    1px solid var(--line-dark);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.03);
}


.metric-card strong {
  display: block;

  color: var(--lime);

  font-size: 12px;
}


.metric-card span {
  display: block;

  margin-top: 28px;

  font-size: 13px;
  font-weight: 700;
}


.hero-floating-card {
  position: absolute;

  z-index: 3;

  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 170px;

  padding: 14px 16px;

  border: 1px solid var(--line);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.92);

  box-shadow: var(--shadow);
}


.hero-floating-top {
  top: 4px;
  right: -8px;
}


.hero-floating-bottom {
  left: 0;
  bottom: 2px;
}


.floating-icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--lime);

  font-weight: 900;
}


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


.hero-floating-card small {
  color: var(--slate);

  font-size: 10px;
}


.hero-floating-card strong {
  margin-top: 2px;

  font-size: 13px;
}



/* SERVICE STRIP */

.services-strip {
  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  background: var(--white);
}


.services-strip-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 16px;
}


.services-strip-inner
span:not(.strip-dot) {
  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.strip-dot {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--lime);
}



/* SECTION HEADINGS */

.section-header {
  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 48px;
}


.section-header > div {
  max-width: 720px;
}


.section-header h2,
.pricing-intro h2,
.value-intro h2,
.about-copy h2,
.contact-copy h2 {
  font-size:
    clamp(40px, 5vw, 64px);

  line-height: 1.02;

  letter-spacing: -2.5px;
}


.section-header h2 span,
.pricing-intro h2 span,
.contact-copy h2 span {
  display: block;

  color: var(--slate);

  font-weight: 500;
}


.section-header p {
  max-width: 470px;

  color: var(--slate);

  font-size: 15px;
}



/* SERVICES */

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;
}


.service-card {
  min-height: 380px;

  display: flex;
  flex-direction: column;

  padding: 30px;

  border:
    1px solid var(--line);

  border-radius: 28px;

  background:
    rgba(255, 255, 255, 0.65);

  transition: 0.25s ease;
}


.service-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(17, 19, 16, 0.2);

  box-shadow: var(--shadow);
}


.service-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}


.service-number {
  color: var(--slate);

  font-size: 11px;

  font-weight: 800;
}


.service-icon {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--lime);

  font-weight: 900;
}


.service-card h3 {
  margin-top: 34px;

  font-size: 28px;

  line-height: 1.08;

  letter-spacing: -1px;
}


.service-card p {
  max-width: 520px;

  margin-top: 14px;

  color: var(--slate);

  font-size: 14px;
}


.service-card ul {
  list-style: none;

  display: grid;

  gap: 9px;

  margin-top: auto;

  padding-top: 34px;
}


.service-card li {
  font-size: 13px;

  font-weight: 700;
}


.service-card li::before {
  content: "✓";

  margin-right: 9px;

  color: #6f9222;
}



/* VALUE */

.value-section {
  background: var(--ink);

  color: var(--ivory);
}


.light-label {
  color: var(--lime);
}


.value-intro {
  max-width: 820px;
}


.value-intro h2 {
  margin-top: 14px;
}


.value-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 14px;

  margin-top: 50px;
}


.value-card {
  min-height: 300px;

  padding: 28px;

  border:
    1px solid var(--line-dark);

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.03);
}


.value-number {
  color: var(--lime);

  font-size: 11px;

  font-weight: 800;
}


.value-card h3 {
  margin-top: 72px;

  font-size: 28px;
}


.value-card p {
  margin-top: 12px;

  color: #b9bdb3;

  font-size: 14px;
}



/* WORK */

.work-section {
  background: var(--white);
}


.featured-project {
  overflow: hidden;

  border:
    1px solid var(--line);

  border-radius: 30px;

  background: #f7f4ef;

  box-shadow:
    0 24px 70px
    rgba(17, 19, 16, 0.08);
}


.featured-project-visual {
  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding:
    75px 100px 60px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(255, 255, 255, 0.85),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #eee5de 0%,
      #f8f4ef 46%,
      #dfcbbd 100%
    );
}


.project-status {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 7px 11px;

  border-radius: 999px;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.project-status-live {
  position: absolute;

  top: 24px;
  left: 24px;

  z-index: 10;

  background: var(--lime);

  color: var(--ink);
}


.desktop-showcase {
  position: relative;

  width: min(
    100%,
    920px
  );

  overflow: hidden;

  border:
    8px solid #181a17;

  border-radius:
    22px 22px 18px 18px;

  background: #181a17;

  box-shadow:
    0 35px 80px
    rgba(17, 19, 16, 0.24);
}


.desktop-browser-top {
  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  padding: 0 16px;

  background: #181a17;
}


.browser-dots {
  position: absolute;

  left: 16px;

  display: flex;

  gap: 6px;
}


.browser-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #73776f;
}


.browser-address {
  min-width: 220px;

  padding: 5px 15px;

  border-radius: 999px;

  background: #252824;

  color: #aeb2aa;

  text-align: center;

  font-size: 10px;
}


.desktop-screenshot-wrap {
  height: 470px;

  overflow: hidden;

  background: #f7f3ee;
}


.desktop-screenshot {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: top center;
}


.phone-showcase {
  position: absolute;

  right: 7%;
  bottom: 38px;

  z-index: 5;

  width: 230px;
  height: 475px;

  padding: 9px;

  border-radius: 39px;

  background: #111310;

  box-shadow:
    0 30px 70px
    rgba(17, 19, 16, 0.35);
}


.phone-screen {
  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 31px;

  background: #f7f3ee;
}


.phone-speaker {
  position: absolute;

  z-index: 8;

  top: 14px;
  left: 50%;

  width: 74px;
  height: 18px;

  transform:
    translateX(-50%);

  border-radius: 999px;

  background: #111310;
}


.mobile-screenshot {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center 16%;
}


.featured-project-content {
  padding:
    38px 40px 42px;

  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 55px;
}


.featured-project-heading h3 {
  margin-top: 6px;

  font-size:
    clamp(
      32px,
      4vw,
      46px
    );

  line-height: 1;

  letter-spacing: -1.5px;
}


.featured-project-heading p {
  max-width: 500px;

  margin-top: 16px;

  color: var(--slate);

  font-size: 14px;
}


.work-category {
  color: var(--slate);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.project-feature-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    24px 28px;
}


.project-feature {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}


.project-feature-icon {
  flex:
    0 0 42px;

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    rgba(
      199,
      240,
      75,
      0.25
    );

  color: #536d17;

  font-weight: 900;
}


.project-feature strong {
  display: block;

  font-size: 13px;
}


.project-feature p {
  margin-top: 4px;

  color: var(--slate);

  font-size: 11px;

  line-height: 1.5;
}


.project-footer {
  grid-column:
    1 / -1;

  margin-top: 8px;

  padding-top: 26px;

  border-top:
    1px solid var(--line);

  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 30px;
}


.work-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}


.work-tags span {
  padding: 7px 10px;

  border-radius: 999px;

  background: var(--stone);

  font-size: 10px;

  font-weight: 700;
}


.project-link {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding-bottom: 3px;

  border-bottom:
    1px solid var(--ink);

  font-size: 13px;

  font-weight: 800;
}


.project-link:hover {
  color: #67851e;

  border-color: #67851e;
}


.concept-projects {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;

  margin-top: 24px;
}


.concept-card {
  min-height: 360px;

  padding: 28px;

  display: flex;

  flex-direction: column;

  border-radius: 26px;

  border:
    1px solid var(--line);
}


.concept-cleanique {
  background:
    linear-gradient(
      135deg,
      #e5f0eb,
      #f4f7f3
    );
}


.concept-electrics {
  background:
    linear-gradient(
      135deg,
      #182131,
      #0c1119
    );

  color: var(--white);

  border-color:
    rgba(255, 255, 255, 0.1);
}


.concept-card-top {
  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 20px;
}


.project-status-concept {
  background: var(--ink);

  color: var(--white);
}


.project-status-concept-light {
  background: var(--white);

  color: var(--ink);
}


.concept-number {
  color: var(--slate);

  font-size: 11px;

  font-weight: 800;
}


.concept-electrics
.concept-number {
  color: #89909a;
}


.concept-card-content {
  margin-top: auto;

  padding-top: 70px;
}


.concept-card-content h3 {
  margin-top: 6px;

  font-size: 32px;

  letter-spacing: -1px;
}


.concept-card-content p {
  max-width: 470px;

  margin-top: 12px;

  color: var(--slate);

  font-size: 13px;
}


.concept-electrics
.concept-card-content p,
.concept-electrics
.work-category {
  color: #a9b0ba;
}


.concept-card-content ul {
  list-style: none;

  display: grid;

  gap: 8px;

  margin-top: 26px;
}


.concept-card-content li {
  font-size: 12px;

  font-weight: 700;
}


.concept-card-content
li::before {
  content: "✓";

  margin-right: 9px;

  color: #729324;
}


.concept-electrics
.concept-card-content
li::before {
  color: var(--lime);
}



/* PRICING */

.pricing-section {
  background: #efede5;
}


.pricing-intro {
  max-width: 780px;
}


.pricing-intro h2 {
  margin-top: 12px;
}


.pricing-intro p {
  margin-top: 16px;

  color: var(--slate);
}


.pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  margin-top: 48px;
}


.price-card {
  position: relative;

  min-height: 590px;

  display: flex;

  flex-direction: column;

  padding: 28px;

  border:
    1px solid var(--line);

  border-radius: 24px;

  background: var(--white);
}


.price-card.featured {
  background: var(--ink);

  color: var(--ivory);

  transform: translateY(-10px);
}


.popular-badge {
  position: absolute;

  top: 18px;
  right: 18px;

  padding: 6px 9px;

  border-radius: 999px;

  background: var(--lime);

  color: var(--ink);

  font-size: 9px;

  font-weight: 900;

  text-transform: uppercase;
}


.price-card-top {
  display: flex;

  justify-content: space-between;

  gap: 10px;
}


.package-name {
  font-size: 18px;

  font-weight: 800;
}


.package-type {
  color: var(--slate);

  font-size: 10px;
}


.featured .package-type {
  color: #9fa39b;
}


.price {
  margin-top: 32px;
}


.old-price {
  display: block;

  color: var(--slate);

  font-size: 14px;

  text-decoration: line-through;
}


.featured .old-price {
  color: #8f948a;
}


.price strong {
  display: block;

  margin-top: 2px;

  font-size: 56px;

  line-height: 1;
}


.price-card > p {
  margin-top: 18px;

  color: var(--slate);

  font-size: 13px;
}


.featured > p {
  color: #b8bcb3;
}


.price-card ul {
  list-style: none;

  display: grid;

  gap: 10px;

  margin-top: 28px;
}


.price-card li {
  font-size: 12px;
}


.price-card li::before {
  content: "✓";

  margin-right: 8px;

  color: #6d8f23;
}


.featured li::before {
  color: var(--lime);
}


.price-button {
  min-height: 48px;

  display: grid;

  place-items: center;

  margin-top: auto;

  border: 1px solid var(--line);

  border-radius: 999px;

  font-size: 13px;

  font-weight: 800;
}


.price-button:hover {
  background: var(--ink);

  color: var(--ivory);
}


.featured-button {
  border-color: transparent;

  background: var(--lime);

  color: var(--ink);
}


.featured-button:hover {
  background: var(--ivory);

  color: var(--ink);
}


.bespoke-card {
  margin-top: 24px;

  padding: 38px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-radius: 26px;

  background: var(--ink);

  color: var(--ivory);
}


.bespoke-card h3 {
  margin-top: 10px;

  font-size: 34px;
}


.bespoke-card p {
  max-width: 720px;

  margin-top: 10px;

  color: #b6bab0;
}



/* PROCESS */

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


.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 14px;
}


.process-card {
  min-height: 260px;

  padding: 24px;

  border:
    1px solid var(--line);

  border-radius: 18px;

  background: var(--ivory);
}


.process-card > span {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--lime);

  font-size: 11px;

  font-weight: 900;
}


.process-card h3 {
  margin-top: 42px;

  font-size: 20px;
}


.process-card p {
  margin-top: 9px;

  color: var(--slate);

  font-size: 13px;
}



/* ABOUT */

.about-section {
  background: var(--ink);

  color: var(--ivory);
}


.about-grid {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 80px;

  align-items: center;
}


.about-brand {
  min-height: 430px;

  display: grid;

  place-items: center;

  align-content: center;

  gap: 20px;

  border:
    1px solid var(--line-dark);

  border-radius: 28px;

  background:
    rgba(255, 255, 255, 0.03);
}


.about-mark {
  width: 180px;
}


.about-brand span {
  color: #9fa49a;

  font-size: 10px;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


.about-copy h2 {
  margin-top: 12px;
}


.about-copy p {
  max-width: 650px;

  margin-top: 18px;

  color: #b9bdb3;
}


.about-copy
.about-lead {
  color: var(--ivory);

  font-size: 18px;
}



/* FAQ */

.faq-section {
  background: var(--ivory);
}


.faq-list {
  max-width: 900px;

  display: grid;

  gap: 12px;
}


.faq-item {
  overflow: hidden;

  border:
    1px solid var(--line);

  border-radius: 16px;

  background: var(--white);
}


.faq-question {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 20px 22px;

  border: 0;

  background: transparent;

  text-align: left;

  font-weight: 800;
}


.faq-question strong {
  color: #75931e;

  font-size: 22px;
}


.faq-answer {
  display: none;

  padding:
    0 22px 22px;
}


.faq-answer p {
  color: var(--slate);

  font-size: 14px;
}


.faq-item.open
.faq-answer {
  display: block;
}



/* CONTACT */

.contact-section {
  background: var(--white);
}


.contact-grid {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 70px;

  align-items: start;
}


.contact-copy p {
  margin-top: 18px;

  color: var(--slate);
}


.contact-details {
  display: grid;

  gap: 12px;

  margin-top: 30px;
}


.contact-details div {
  padding: 16px 18px;

  border:
    1px solid var(--line);

  border-radius: 14px;

  background: var(--ivory);
}


.contact-details small,
.contact-details strong {
  display: block;
}


.contact-details small {
  color: var(--slate);

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


.contact-details strong {
  margin-top: 3px;

  font-size: 14px;
}


.contact-form-card {
  padding: 30px;

  border:
    1px solid var(--line);

  border-radius: 24px;

  background: var(--ivory);

  box-shadow: var(--shadow);
}


.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;
}


.form-group {
  margin-bottom: 16px;
}


.form-group label {
  display: block;

  margin-bottom: 6px;

  font-size: 11px;

  font-weight: 800;
}


.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border:
    1px solid
    rgba(17, 19, 16, 0.15);

  border-radius: 12px;

  background: var(--white);

  outline: none;
}


.form-group input,
.form-group select {
  height: 50px;

  padding: 0 14px;
}


.form-group textarea {
  min-height: 150px;

  padding: 14px;

  resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #96b732;

  box-shadow:
    0 0 0 4px
    rgba(199, 240, 75, 0.18);
}


.form-consent {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  margin: 2px 0 18px;

  color: var(--slate);

  font-size: 11px;
}


.submit-button {
  width: 100%;

  height: 54px;

  border: 0;

  border-radius: 999px;

  background: var(--ink);

  color: var(--ivory);

  font-weight: 800;
}


.submit-button:hover {
  background: var(--lime);

  color: var(--ink);
}


.hidden-field {
  position: absolute;

  width: 1px;
  height: 1px;

  overflow: hidden;

  clip: rect(0 0 0 0);
}


.form-status {
  display: none;

  margin-top: 14px;

  padding: 12px;

  border-radius: 10px;

  font-size: 12px;
}


.form-status.success {
  display: block;

  background: #e8f4df;

  color: #3a5b21;
}


.form-status.error {
  display: block;

  background: #f9eaea;

  color: #8d3333;
}



/* SIMPLE / UTILITY PAGES */

.simple-page-body {
  min-height: 100vh;

  background:
    linear-gradient(
      180deg,
      #f7f5ee 0%,
      var(--ivory) 100%
    );
}


.simple-page {
  position: relative;

  min-height: 100vh;

  overflow: hidden;

  padding: 40px 20px;
}


.simple-page-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(18px);
}


.simple-page-glow-one {
  width: 420px;
  height: 420px;

  right: -130px;
  top: -130px;

  background:
    rgba(199, 240, 75, 0.14);
}


.simple-page-glow-two {
  width: 320px;
  height: 320px;

  left: -130px;
  bottom: -130px;

  background:
    rgba(17, 19, 16, 0.05);
}


.simple-page-shell {
  position: relative;
  z-index: 2;

  width: min(
    100%,
    920px
  );

  margin-inline: auto;
}


.simple-page-logo {
  width: 210px;

  display: block;

  margin:
    0 auto 40px;
}


.simple-page-logo img {
  width: 100%;
}


.simple-card {
  padding:
    54px 56px;

  border:
    1px solid var(--line);

  border-radius: 30px;

  background:
    rgba(255, 255, 255, 0.78);

  backdrop-filter:
    blur(10px);

  box-shadow:
    0 30px 80px
    rgba(17, 19, 16, 0.10);
}


.simple-icon {
  width: 56px;
  height: 56px;

  display: grid;

  place-items: center;

  margin-bottom: 22px;

  border-radius: 50%;

  background: var(--lime);

  color: var(--ink);

  font-size: 22px;

  font-weight: 900;
}


.simple-card h1 {
  max-width: 720px;

  margin-top: 12px;

  font-size:
    clamp(
      42px,
      7vw,
      68px
    );

  line-height: 1;

  letter-spacing: -2.5px;
}


.simple-lead {
  max-width: 700px;

  margin-top: 20px;

  color: var(--slate);

  font-size: 17px;
}


.simple-next-steps {
  display: grid;

  gap: 14px;

  margin-top: 36px;
}


.simple-step {
  display: grid;

  grid-template-columns:
    46px 1fr;

  gap: 16px;

  align-items: start;

  padding: 18px;

  border:
    1px solid var(--line);

  border-radius: 16px;

  background:
    rgba(245, 243, 236, 0.65);
}


.simple-step > span {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--ink);

  color: var(--ivory);

  font-size: 10px;

  font-weight: 900;
}


.simple-step strong {
  display: block;

  font-size: 14px;
}


.simple-step p {
  margin-top: 4px;

  color: var(--slate);

  font-size: 12px;
}


.simple-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 36px;
}


.simple-footer {
  margin-top: 26px;

  color: var(--slate);

  text-align: center;

  font-size: 10px;
}



/* FOOTER */

.site-footer {
  padding: 70px 0 24px;

  background: #0a0b09;

  color: var(--ivory);
}


.footer-main {
  display: grid;

  grid-template-columns:
    1.4fr 0.7fr 0.7fr 1fr;

  gap: 50px;

  padding-bottom: 45px;
}


.footer-brand img {
  width: 220px;
}


.footer-brand p {
  margin-top: 18px;

  color: #9da198;

  font-size: 13px;
}


.footer-links {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.footer-links h3 {
  margin-bottom: 5px;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1.3px;
}


.footer-links a,
.footer-links span {
  color: #9da198;

  font-size: 12px;
}


.footer-links a:hover {
  color: var(--lime);
}


.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-top: 20px;

  border-top:
    1px solid var(--line-dark);

  color: #73776f;

  font-size: 10px;
}



/* SCROLL ANIMATION */

.reveal {
  opacity: 0;

  transform:
    translateY(18px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}



/* TABLET */

@media (max-width: 1050px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }


  .hero-visual {
    max-width: 700px;
  }


  .pricing-grid {
    grid-template-columns: 1fr;
  }


  .price-card.featured {
    transform: none;
  }


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


  .footer-main {
    grid-template-columns:
      1.3fr 1fr 1fr;
  }


  .footer-main > :last-child {
    grid-column: 1 / -1;
  }


  .featured-project-visual {
    padding:
      70px 45px 50px;
  }


  .desktop-showcase {
    width: 90%;
  }


  .phone-showcase {
    right: 3%;

    width: 200px;
    height: 420px;
  }


  .featured-project-content {
    grid-template-columns:
      1fr;

    gap: 32px;
  }

}



/* MOBILE */

@media (max-width: 820px) {

  .menu-toggle {
    display: block;
  }


  .main-nav {
    position: absolute;

    top: 78px;
    left: 20px;
    right: 20px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 5px;

    padding: 12px;

    border:
      1px solid var(--line);

    border-radius: 18px;

    background: var(--white);

    box-shadow: var(--shadow);
  }


  .main-nav.open {
    display: flex;
  }


  .main-nav a {
    padding: 11px 12px;

    border-radius: 10px;
  }


  .main-nav .nav-cta {
    text-align: center;
  }


  .hero {
    padding: 72px 0 80px;
  }


  .hero h1 {
    font-size:
      clamp(48px, 14vw, 72px);

    letter-spacing: -3px;
  }


  .hero-actions {
    flex-direction: column;
  }


  .button {
    width: 100%;
  }


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


  .hero-card-main {
    inset:
      35px 0
      35px 0;
  }


  .hero-floating-top {
    right: 0;
  }


  .hero-floating-bottom {
    left: 0;
  }


  .section {
    padding: 82px 0;
  }


  .section-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
  }


  .services-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }


  .featured-project-visual {
    min-height: 570px;

    padding:
      70px 18px 45px;
  }


  .desktop-showcase {
    width: 100%;
  }


  .desktop-screenshot-wrap {
    height: 350px;
  }


  .phone-showcase {
    width: 160px;
    height: 335px;

    right: 16px;
    bottom: 28px;

    border-radius: 30px;
  }


  .phone-screen {
    border-radius: 23px;
  }


  .phone-speaker {
    width: 55px;
    height: 14px;

    top: 12px;
  }


  .featured-project-content {
    padding:
      30px 24px 32px;
  }


  .project-feature-grid {
    grid-template-columns:
      1fr;
  }


  .project-footer {
    flex-direction: column;

    align-items: flex-start;
  }


  .concept-projects {
    grid-template-columns:
      1fr;
  }


  .process-grid {
    grid-template-columns: 1fr;
  }


  .bespoke-card {
    flex-direction: column;

    align-items: flex-start;
  }


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


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


  .footer-main > :last-child {
    grid-column: auto;
  }


  .footer-bottom {
    flex-direction: column;
  }


  .simple-page {
    padding:
      28px 14px;
  }


  .simple-page-logo {
    width: 180px;

    margin-bottom: 28px;
  }


  .simple-card {
    padding:
      34px 26px;
  }


  .simple-card h1 {
    font-size:
      clamp(
        38px,
        12vw,
        54px
      );
  }


  .simple-actions {
    flex-direction: column;
  }

}



/* SMALL MOBILE */

@media (max-width: 560px) {

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


  .brand-logo {
    width: 160px;
  }


  .hero-card-main {
    padding: 26px;
  }


  .hero-card-main h2 {
    font-size: 31px;
  }


  .metric-grid {
    grid-template-columns: 1fr;
  }


  .metric-card {
    min-height: 80px;
  }


  .metric-card span {
    margin-top: 14px;
  }


  .hero-floating-card {
    display: none;
  }


  .services-strip-inner {
    justify-content: flex-start;

    padding: 16px 0;
  }


  .featured-project-visual {
    min-height: 470px;

    padding:
      68px 12px 30px;
  }


  .desktop-showcase {
    border-width: 5px;

    border-radius: 15px;
  }


  .desktop-browser-top {
    height: 32px;
  }


  .browser-address {
    min-width: 140px;

    font-size: 8px;
  }


  .desktop-screenshot-wrap {
    height: 270px;
  }


  .phone-showcase {
    width: 125px;
    height: 265px;

    right: 8px;
    bottom: 25px;

    padding: 6px;
  }


  .featured-project-content {
    padding:
      24px 18px 28px;
  }


  .concept-card {
    min-height: 320px;

    padding: 22px;
  }


  .concept-card-content {
    padding-top: 50px;
  }


  .concept-card-content h3 {
    font-size: 27px;
  }


  .contact-form-card {
    padding: 20px;
  }


  .simple-card {
    padding:
      28px 20px;
  }


  .simple-step {
    grid-template-columns:
      38px 1fr;

    padding: 15px;
  }


  .simple-step > span {
    width: 34px;
    height: 34px;
  }

}



/* REDUCED MOTION */

@media (
  prefers-reduced-motion: reduce
) {

  * {
    scroll-behavior:
      auto !important;

    transition:
      none !important;
  }


  .reveal {
    opacity: 1;

    transform: none;
  }

}



/* FORM PRIVACY LINK */

.form-consent input {
  flex-shrink: 0;
  margin-top: 3px;
}


.form-consent a {
  color: var(--ink);

  font-weight: 800;

  text-decoration: underline;

  text-decoration-color: var(--lime);

  text-decoration-thickness: 2px;

  text-underline-offset: 3px;
}


.form-consent a:hover {
  color: #67851e;
}



/* LEGAL PAGES */

.legal-page-shell {
  position: relative;
  z-index: 2;

  width: min(
    100%,
    980px
  );

  margin-inline: auto;
}


.legal-card {
  padding:
    58px 64px;

  border:
    1px solid var(--line);

  border-radius: 30px;

  background:
    rgba(255, 255, 255, 0.86);

  backdrop-filter:
    blur(10px);

  box-shadow:
    0 30px 80px
    rgba(17, 19, 16, 0.10);
}


.legal-card > .section-label {
  color: #67851e;
}


.legal-card > h1 {
  max-width: 780px;

  margin-top: 12px;

  font-size:
    clamp(
      46px,
      7vw,
      72px
    );

  line-height: 0.98;

  letter-spacing: -3px;
}


.legal-updated {
  margin-top: 15px;

  color: var(--slate);

  font-size: 11px;

  font-weight: 700;
}


.legal-intro {
  margin-top: 34px;

  padding:
    26px 28px;

  border-left:
    4px solid var(--lime);

  border-radius:
    0 16px 16px 0;

  background: var(--ivory);
}


.legal-intro p {
  max-width: 760px;

  color: #4e5249;

  font-size: 15px;
}


.legal-intro p + p {
  margin-top: 12px;
}


.legal-content {
  margin-top: 48px;
}


.legal-content section {
  padding:
    0 0 36px;

  margin-bottom: 36px;

  border-bottom:
    1px solid var(--line);
}


.legal-content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}


.legal-content h2 {
  margin-bottom: 14px;

  font-size: 23px;

  line-height: 1.2;

  letter-spacing: -0.6px;
}


.legal-content p {
  max-width: 800px;

  color: var(--slate);

  font-size: 14px;

  line-height: 1.8;
}


.legal-content p + p {
  margin-top: 12px;
}


.legal-content ul {
  max-width: 780px;

  display: grid;

  gap: 8px;

  margin:
    16px 0 0 20px;

  color: var(--slate);
}


.legal-content li {
  padding-left: 4px;

  font-size: 14px;

  line-height: 1.7;
}


.legal-content li::marker {
  color: #76941f;
}


.legal-content a {
  color: var(--ink);

  font-weight: 800;

  text-decoration: underline;

  text-decoration-color: var(--lime);

  text-decoration-thickness: 2px;

  text-underline-offset: 3px;
}


.legal-content a:hover {
  color: #67851e;
}


.legal-content strong {
  color: var(--ink);
}


.legal-actions {
  display: flex;

  margin-top: 50px;

  padding-top: 30px;

  border-top:
    1px solid var(--line);
}



/* LEGAL PAGE RESPONSIVE */

@media (max-width: 820px) {

  .legal-card {
    padding:
      38px 30px;
  }


  .legal-card > h1 {
    font-size:
      clamp(
        40px,
        11vw,
        58px
      );

    letter-spacing: -2px;
  }


  .legal-intro {
    padding: 22px;
  }


  .legal-content {
    margin-top: 38px;
  }


  .legal-actions .button {
    width: 100%;
  }

}


@media (max-width: 560px) {

  .legal-card {
    padding:
      30px 20px;

    border-radius: 22px;
  }


  .legal-intro {
    padding: 18px;
  }


  .legal-content section {
    padding-bottom: 28px;

    margin-bottom: 28px;
  }


  .legal-content h2 {
    font-size: 20px;
  }


  .legal-content p,
  .legal-content li {
    font-size: 13px;
  }

}



/* MOBILE HERO HEIGHT FIX */

@media (max-width: 560px) {

  .hero-visual {
    min-height: auto;
  }


  .hero-card-main {
    position: relative;
    inset: auto;
  }

}