:root {
  --background: #f7f4ee;
  --surface: #ffffff;
  --text: #252525;
  --muted-text: #626262;
  --navy: #102a43;
  --navy-light: #dce7ef;
  --accent: #b86b4b;
  --border: #dedbd4;
  --shadow: 0 24px 60px rgba(16, 42, 67, 0.14);
  --radius-large: 32px;
  --radius-medium: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

/* Header */

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
  background: rgba(247, 244, 238, 0.94);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 650;
}

.main-navigation a:not(.navigation-button) {
  position: relative;
}

.main-navigation a:not(.navigation-button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  transform: scaleX(1);
}

.navigation-button {
  padding: 12px 19px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.navigation-button:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

/* Hero */

.hero {
  overflow: hidden;
  padding: 92px 0 110px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-introduction {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-supporting-text {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted-text);
  font-size: 1.02rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(16, 42, 67, 0.28);
}

.button-secondary {
  background: transparent;
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--navy-light);
}

/* Website-building visual */

.website-builder-visual {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.laptop {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  filter: drop-shadow(0 28px 35px rgba(16, 42, 67, 0.2));
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 15px;
  border: 9px solid var(--navy);
  border-bottom-width: 16px;
  border-radius: 22px 22px 10px 10px;
  background: #e8edf1;
}

.laptop-screen::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7890a4;
  content: "";
  transform: translateX(-50%);
}

.laptop-base {
  position: relative;
  width: 112%;
  height: 18px;
  margin-left: -6%;
  border-radius: 2px 2px 18px 18px;
  background: linear-gradient(180deg, #c9d2da, #8194a3);
}

.laptop-base::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 25%;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: #a9b7c1;
  content: "";
  transform: translateX(-50%);
}

.mock-website {
  height: 100%;
  overflow: hidden;
  padding: 16px;
  border-radius: 8px;
  background: var(--surface);
}

.mock-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: assemble-element 600ms 150ms ease forwards;
}

.mock-logo {
  width: 52px;
  height: 9px;
  border-radius: 10px;
  background: var(--navy);
}

.mock-links {
  display: flex;
  gap: 8px;
}

.mock-links span {
  width: 24px;
  height: 5px;
  border-radius: 8px;
  background: #a5b1ba;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.mock-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.mock-heading,
.mock-paragraph,
.mock-button,
.mock-image,
.mock-cards span {
  display: block;
  opacity: 0;
  animation: assemble-element 650ms ease forwards;
}

.mock-heading {
  width: 92%;
  height: 20px;
  border-radius: 6px;
  background: var(--navy);
  animation-delay: 350ms;
}

.mock-paragraph {
  width: 80%;
  height: 6px;
  border-radius: 6px;
  background: #a8b3ba;
  animation-delay: 550ms;
}

.mock-paragraph.short {
  width: 60%;
  animation-delay: 650ms;
}

.mock-button {
  width: 70px;
  height: 20px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent);
  animation-delay: 800ms;
}

.mock-image {
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    linear-gradient(145deg, var(--navy-light), #bfced9);
  animation-delay: 450ms;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 25px;
}

.mock-cards span {
  height: 55px;
  border: 1px solid #d5dde2;
  border-radius: 10px;
  background: #f2f5f6;
}

.mock-cards span:nth-child(1) {
  animation-delay: 950ms;
}

.mock-cards span:nth-child(2) {
  animation-delay: 1100ms;
}

.mock-cards span:nth-child(3) {
  animation-delay: 1250ms;
}

.floating-piece {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(16, 42, 67, 0.14);
  background: white;
  box-shadow: var(--shadow);
  animation: floating-piece 3.4s ease-in-out infinite;
}

.piece-navigation {
  top: 45px;
  left: 0;
  width: 145px;
  height: 34px;
  border-radius: 10px;
}

.piece-image {
  top: 65px;
  right: -10px;
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: var(--navy-light);
  animation-delay: -900ms;
}

.piece-button {
  right: 15px;
  bottom: 50px;
  width: 92px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  animation-delay: -1.8s;
}

.piece-text {
  bottom: 55px;
  left: 10px;
  width: 110px;
  height: 62px;
  border-radius: 14px;
  animation-delay: -2.5s;
}

.piece-text::before,
.piece-text::after {
  position: absolute;
  left: 15px;
  height: 6px;
  border-radius: 8px;
  background: #a8b3ba;
  content: "";
}

.piece-text::before {
  top: 19px;
  width: 72px;
}

.piece-text::after {
  top: 35px;
  width: 48px;
}

@keyframes assemble-element {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floating-piece {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}
/* Shared section styling */

.introduction-section,
.what-we-do-section {
  padding: 110px 0;
}

.introduction-section {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.introduction-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  align-items: start;
  gap: 90px;
}

.section-heading h2,
.section-introduction h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.introduction-copy {
  max-width: 620px;
  color: var(--muted-text);
  font-size: 1.05rem;
}

.introduction-copy p {
  margin: 0 0 22px;
}

.introduction-copy .large-text {
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
}

/* What we do */

.what-we-do-section {
  background: var(--background);
}

.section-introduction {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-introduction > p {
  max-width: 520px;
  margin: 0 0 7px;
  color: var(--muted-text);
  font-size: 1.05rem;
}

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

.overview-card {
  min-height: 335px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.65);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.overview-card:hover {
  border-color: rgba(16, 42, 67, 0.32);
  box-shadow: 0 18px 45px rgba(16, 42, 67, 0.1);
  transform: translateY(-6px);
}

.overview-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 55px;
}

.card-number {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.featured .card-number {
  color: #e5a68d;
}

.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status.available {
  background: #dcece5;
  color: #285b46;
}

.featured .status.available {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.status.coming-soon {
  background: var(--navy-light);
  color: var(--navy);
}

.card-category {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .card-category {
  color: #e5a68d;
}

.overview-card h3 {
  margin: 0 0 17px;
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.overview-card.featured h3 {
  color: white;
}

.overview-card > p:last-child {
  margin: auto 0 0;
  color: var(--muted-text);
}

.overview-card.featured > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

@media (max-width: 900px) {
  .introduction-layout,
  .section-introduction {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .introduction-section,
  .what-we-do-section {
    padding: 75px 0;
  }

  .overview-card {
    min-height: 260px;
    padding: 24px;
  }

  .card-topline {
    margin-bottom: 38px;
  }
}
/* Featured Starter Presence */

.starter-presence-section {
  padding: 120px 0;
  background: var(--surface);
}

.starter-presence-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 90px;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.section-label-row .eyebrow {
  margin: 0;
}

.starter-presence-content h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.starter-presence-content > p {
  max-width: 650px;
  color: var(--muted-text);
  font-size: 1.04rem;
}

.starter-presence-content .starter-introduction {
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.5;
}

.starter-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.starter-feature-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-large);
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.starter-feature-panel::before {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.starter-feature-panel::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.feature-panel-label {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: #e5a68d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 42px;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.86);
}

.feature-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5a68d;
  content: "";
}

@media (max-width: 900px) {
  .starter-presence-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 600px) {
  .starter-presence-section {
    padding: 80px 0;
  }

  .section-label-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .starter-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .starter-feature-panel {
    padding: 30px 24px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* How We Work */

.process-section {
  padding: 120px 0;
  background: var(--background);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 65px;
}

.process-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-heading > p:last-child {
  max-width: 600px;
  margin-top: 25px;
  color: var(--muted-text);
  font-size: 1.1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.process-step {
  position: relative;
  min-height: 340px;
  padding: 38px 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.35);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.process-step:hover {
  z-index: 1;
  background: var(--surface);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.process-number {
  display: block;
  margin-bottom: 55px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.process-step h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-section {
    padding: 80px 0;
  }

  .process-heading {
    margin-bottom: 45px;
  }

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

  .process-step {
    min-height: auto;
  }

  .process-number {
    margin-bottom: 35px;
  }
}
/* Why Work With Us */

.why-us-section {
  padding: 120px 0;
  background: var(--navy);
  color: white;
}

.why-us-heading {
  max-width: 850px;
  margin-bottom: 70px;
}

.why-us-heading .eyebrow {
  color: #e5a68d;
}

.why-us-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.15);
}

.why-us-card {
  position: relative;
  min-height: 300px;
  padding: 42px;
  background: var(--navy);
  transition: background 180ms ease;
}

.why-us-card:hover {
  background: #163a5c;
}

.why-us-number {
  display: block;
  margin-bottom: 45px;
  color: #e5a68d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-us-card h3 {
  max-width: 420px;
  margin: 0 0 15px;
  color: white;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.why-us-card h4 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.why-us-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

  .why-us-heading {
    margin-bottom: 45px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-card {
    min-height: auto;
    padding: 34px 28px;
  }

  .why-us-number {
    margin-bottom: 32px;
  }
}
/* Growing With Your Business */

.growth-section {
  padding: 120px 0;
  background: var(--surface);
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1fr);
  align-items: center;
  gap: 100px;
}

.growth-content h2 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.growth-content > p {
  max-width: 620px;
  color: var(--muted-text);
  font-size: 1.04rem;
}

.growth-content .growth-introduction {
  margin-top: 30px;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 650;
}

.growth-content .text-link {
  margin-top: 20px;
}

.growth-path {
  position: relative;
  display: grid;
  gap: 14px;
}

.growth-path::before {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 27px;
  width: 2px;
  background: var(--border);
  content: "";
}

.growth-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 92px;
  padding: 20px 22px 20px 70px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--background);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.growth-stage::before {
  position: absolute;
  left: 20px;
  width: 16px;
  height: 16px;
  border: 5px solid var(--background);
  border-radius: 50%;
  background: #a8a8a8;
  box-shadow: 0 0 0 1px var(--border);
  content: "";
}

.growth-stage:hover {
  border-color: #b8b2a8;
  transform: translateX(5px);
}

.growth-stage.available-stage {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.growth-stage.available-stage::before {
  border-color: var(--navy);
  background: #e5a68d;
  box-shadow: 0 0 0 1px #e5a68d;
}

.growth-stage-number {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.growth-stage h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.growth-stage.available-stage .growth-stage-number {
  color: #e5a68d;
}

.growth-stage.available-stage h3 {
  color: white;
}

.growth-stage .status:not(.available) {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-text);
}

@media (max-width: 900px) {
  .growth-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .growth-section {
    padding: 80px 0;
  }

  .growth-stage {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-left: 62px;
  }

  .growth-path::before {
    left: 24px;
  }

  .growth-stage::before {
    left: 17px;
  }
}
/* Portfolio / Early Work */

.portfolio-section {
  padding: 120px 0;
  background: var(--background);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.portfolio-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.portfolio-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-text);
  font-size: 1.04rem;
}

.portfolio-placeholder {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(300px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portfolio-preview {
  display: grid;
  min-height: 470px;
  padding: 65px;
  place-items: center;
  background: var(--navy-light);
}

.preview-browser {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border: 7px solid var(--navy);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 18px 22px 0 rgba(16, 42, 67, 0.12);
}

.preview-browser-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  background: var(--navy);
}

.preview-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.preview-browser-content {
  min-height: 255px;
  padding: 48px 42px;
}

.preview-heading-line {
  width: 72%;
  height: 20px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--navy);
}

.preview-text-line {
  width: 88%;
  height: 9px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: var(--border);
}

.preview-text-line.short {
  width: 58%;
}

.preview-button {
  width: 110px;
  height: 35px;
  margin-top: 32px;
  border-radius: 999px;
  background: var(--accent);
}

.portfolio-placeholder-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
}

.portfolio-placeholder-content .status {
  margin-bottom: 28px;
}

.portfolio-placeholder-content h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.portfolio-placeholder-content p {
  margin: 0 0 28px;
  color: var(--muted-text);
}

@media (max-width: 900px) {
  .portfolio-heading,
  .portfolio-placeholder {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .portfolio-section {
    padding: 80px 0;
  }

  .portfolio-heading {
    gap: 25px;
    margin-bottom: 45px;
  }

  .portfolio-preview {
    min-height: 300px;
    padding: 35px 25px;
  }

  .preview-browser-content {
    min-height: 200px;
    padding: 38px 28px;
  }

  .portfolio-placeholder-content {
    padding: 40px 28px;
  }
}
/* Free Consultation */

.consultation-section {
  padding: 100px 0;
  background: var(--accent);
}

.consultation-inner {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  align-items: center;
  gap: 90px;
}

.consultation-content {
  max-width: 800px;
}

.consultation-content .eyebrow {
  color: var(--navy);
}

.consultation-content h2 {
  margin: 0 0 28px;
  color: white;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.consultation-content > p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.consultation-action {
  min-width: 280px;
  text-align: center;
}

.consultation-action .button-primary {
  width: 100%;
  background: var(--navy);
  color: white;
}

.consultation-action .button-primary:hover {
  background: #183d60;
}

.consultation-action p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

@media (max-width: 800px) {
  .consultation-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consultation-action {
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .consultation-section {
    padding: 75px 0;
  }

  .consultation-action {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}
/* Final Contact */

.final-contact-section {
  padding: 120px 0;
  background: var(--surface);
}

.final-contact-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.final-contact-content {
  max-width: 850px;
}

.final-contact-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.final-contact-content > p {
  max-width: 650px;
  color: var(--muted-text);
  font-size: 1.04rem;
}

.final-contact-content .final-contact-introduction {
  margin-top: 30px;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 650;
}

.final-contact-inner > .button {
  flex: 0 0 auto;
  min-width: 180px;
}

@media (max-width: 750px) {
  .final-contact-section {
    padding: 80px 0;
  }

  .final-contact-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }
}
/* Footer */

.site-footer {
  padding: 85px 0 0;
  background: #0b2033;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.75fr 1fr;
  gap: 65px;
  padding-bottom: 70px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-brand > p,
.footer-contact > p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.footer-brand .footer-location {
  margin-top: 20px;
  color: #e5a68d;
  font-weight: 700;
}

.footer-heading {
  margin: 0 0 22px;
  color: white;
  font-size: 0.78rem;
font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-navigation {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-navigation a {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 180ms ease;
}

.footer-navigation a:hover {
  color: white;
}

.footer-contact-link {
  margin-top: 15px;
  color: #e5a68d;
}

.footer-contact-link:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 65px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Services Page */

.services-hero {
  padding: 150px 0 120px;
  background: var(--navy);
  color: white;
}

.services-hero-inner {
  max-width: 1050px;
}

.services-hero .eyebrow {
  color: #e5a68d;
}

.services-hero h1 {
  max-width: 980px;
  margin: 0;
  color: white;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.services-hero-introduction {
  max-width: 760px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.services-hero .hero-actions {
  margin-top: 38px;
}

.services-hero .button-primary {
  background: var(--accent);
  color: white;
}

.services-hero .button-primary:hover {
  background: #a85e41;
}

.services-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.services-hero .button-secondary:hover {
  border-color: white;
  background: white;
  color: var(--navy);
}

.services-overview {
  padding: 120px 0;
  scroll-margin-top: 100px;
  background: var(--background);
}

.services-overview-heading {
  max-width: 850px;
  margin-bottom: 70px;
}

.services-overview-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.services-overview-heading > p {
  max-width: 690px;
  color: var(--muted-text);
  font-size: 1.04rem;
}

.services-overview-heading .services-overview-introduction {
  margin-top: 28px;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 650;
}

@media (max-width: 600px) {
  .services-hero {
    padding: 105px 0 80px;
  }

  .services-overview {
    padding: 80px 0;
  }

  .services-overview-heading {
    margin-bottom: 50px;
  }
}
/* Services Accordion */

.services-list {
  display: grid;
  gap: 18px;
}

.service-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-item:hover,
.service-item[open] {
  border-color: rgba(16, 42, 67, 0.45);
}

.service-item[open] {
  box-shadow: var(--shadow);
}

.service-item.available-service {
  border-color: var(--navy);
}

.service-summary {
  display: grid;
  grid-template-columns: 55px minmax(250px, 1fr) auto 38px;
  align-items: center;
  gap: 25px;
  min-height: 125px;
  padding: 28px 34px;
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease;
}

.service-summary::-webkit-details-marker {
  display: none;
}

.service-summary::marker {
  display: none;
  content: "";
}

.service-summary:hover {
  background: rgba(220, 231, 239, 0.3);
}

.service-item[open] .service-summary {
  border-bottom: 1px solid var(--border);
  background: rgba(220, 231, 239, 0.25);
}

.service-number {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-summary-text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.service-name {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-short-description {
  max-width: 680px;
  color: var(--muted-text);
  font-size: 0.94rem;
}

.service-expand-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  place-items: center;
  transition:
    transform 220ms ease,
    background 180ms ease,
    color 180ms ease;
}

.service-item[open] .service-expand-icon {
  background: var(--navy);
  color: white;
  transform: rotate(45deg);
}

.service-details {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 0.9fr);
  animation: reveal-service 280ms ease;
}

@keyframes reveal-service {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-description {
  padding: 55px;
}

.service-description > p {
  max-width: 680px;
  color: var(--muted-text);
  font-size: 1.03rem;
}

.service-description > p:first-child {
  margin-top: 0;
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 600;
}

.service-description .button {
  margin-top: 18px;
}

.coming-soon-message {
  margin: 30px 0 10px;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: var(--background);
}

.coming-soon-message p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.92rem;
}

.service-note {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem !important;
}

.service-features {
  padding: 50px;
  background: var(--navy);
  color: white;
}

.service-features .feature-list {
  grid-template-columns: 1fr;
  gap: 15px;
}

.service-features .feature-list li {
  min-height: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .service-summary {
    grid-template-columns: 45px minmax(200px, 1fr) auto 38px;
  }

  .service-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .service-summary {
    grid-template-columns: 32px 1fr 34px;
    gap: 14px;
    padding: 24px 20px;
  }

  .service-summary .status {
    grid-column: 2;
    justify-self: start;
  }

  .service-expand-icon {
    grid-column: 3;
    grid-row: 1;
    width: 32px;
    height: 32px;
  }

  .service-description {
    padding: 38px 24px;
  }

  .service-features {
    padding: 38px 24px;
  }
}
/* Ongoing Website Care */

.website-care-section {
  padding: 120px 0;
  background: var(--surface);
}

.website-care-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(350px, 0.75fr);
  align-items: center;
  gap: 90px;
}

.website-care-content h2 {
  max-width: 750px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.website-care-content > p {
  max-width: 680px;
  color: var(--muted-text);
  font-size: 1.04rem;
}

.website-care-content .website-care-introduction {
  margin-top: 30px;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 650;
}

.service-availability-note {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--background);
  font-size: 0.9rem !important;
  font-weight: 700;
}

.website-care-features {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-large);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.website-care-features::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.website-care-features .feature-list {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 22px;
}

.website-care-features .feature-list li {
  min-height: 0;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 900px) {
  .website-care-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 600px) {
  .website-care-section {
    padding: 80px 0;
  }

  .website-care-features {
    padding: 36px 26px;
  }
}
/* Services Growth Path */

.service-path-section {
  padding: 120px 0;
  background: var(--background);
}

.service-path-heading {
  max-width: 820px;
  margin-bottom: 70px;
}

.service-path-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.service-path-heading > p:last-child {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted-text);
  font-size: 1.04rem;
}

.service-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-path::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--border);
  content: "";
}

.service-path-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 10px;
  color: var(--navy);
  text-align: center;
}

.service-path-stage > span {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border: 7px solid var(--background);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px var(--border);
  place-items: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-path-stage:hover > span {
  background: var(--navy-light);
  transform: translateY(-4px);
}

.service-path-stage strong {
  margin-bottom: 7px;
  font-size: 0.96rem;
  line-height: 1.25;
}

.service-path-stage small {
  color: var(--muted-text);
  font-size: 0.72rem;
}

.service-path-stage.active-stage > span {
  background: var(--navy);
  color: white;
  box-shadow: 0 0 0 1px var(--navy);
}

.service-path-stage.active-stage small {
  color: var(--accent);
  font-weight: 800;
}

.service-path-note {
  margin: 45px 0 0;
  color: var(--muted-text);
  font-size: 0.87rem;
  text-align: center;
}

@media (max-width: 800px) {
  .service-path {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-path::before {
    top: 25px;
    right: auto;
    bottom: 25px;
    left: 29px;
    width: 2px;
    height: auto;
  }

  .service-path-stage {
    align-items: center;
    flex-direction: row;
    gap: 20px;
    min-height: 85px;
    padding: 12px 0;
    text-align: left;
  }

  .service-path-stage > span {
    flex: 0 0 60px;
    margin: 0;
  }

  .service-path-stage strong {
    min-width: 170px;
    margin: 0;
  }

  .service-path-note {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .service-path-section {
    padding: 80px 0;
  }

  .service-path-heading {
    margin-bottom: 50px;
  }

  .service-path-stage {
    flex-wrap: wrap;
  }

  .service-path-stage small {
    padding-left: 80px;
  }
}
/* Contact Page */

.contact-hero {
  padding: 145px 0 115px;
  background: var(--background);
}

.contact-hero-inner {
  max-width: 950px;
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.contact-hero-inner > p {
  max-width: 730px;
  color: var(--muted-text);
  font-size: 1.05rem;
}

.contact-hero-inner .contact-hero-introduction {
  margin-top: 35px;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 650;
}

.contact-hero-inner .button {
  margin-top: 25px;
}

.contact-options-section {
  padding: 110px 0;
  background: var(--surface);
}

.contact-options-heading {
  max-width: 750px;
  margin-bottom: 55px;
}

.contact-options-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

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

.contact-option-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 310px;
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--background);
}

.contact-option-card.featured-contact-option {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.contact-option-number {
  margin-bottom: 50px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-option-card h3 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.contact-option-card p {
  margin: 0 0 25px;
  color: var(--muted-text);
  font-size: 0.94rem;
}

.contact-option-card .text-link {
  margin-top: auto;
}

.featured-contact-option h3 {
  color: white;
}

.featured-contact-option p {
  color: rgba(255, 255, 255, 0.72);
}

.featured-contact-option .text-link {
  color: #e5a68d;
}

@media (max-width: 850px) {
  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-option-card {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 105px 0 80px;
  }

  .contact-options-section {
    padding: 80px 0;
  }

  .contact-option-card {
    min-height: auto;
  }

  .contact-option-number {
    margin-bottom: 35px;
  }
}
/* Contact Form */

.contact-form-section {
  padding: 120px 0;
  scroll-margin-top: 90px;
  background: var(--background);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(500px, 1.3fr);
  align-items: start;
  gap: 90px;
}

.contact-form-introduction {
  position: sticky;
  top: 120px;
}

.contact-form-introduction h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-form-introduction > p {
  max-width: 520px;
  color: var(--muted-text);
  font-size: 1.02rem;
}

.written-contact-note {
  margin-top: 35px;
  padding: 22px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
}

.written-contact-note strong {
  color: var(--navy);
}

.written-contact-note p {
  margin: 8px 0 0;
  color: var(--muted-text);
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 22px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field label,
.form-field legend {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 750;
}

.form-field label > span {
  color: var(--accent);
}

.form-field label small {
  margin-left: 7px;
  color: var(--muted-text);
  font-size: 0.72rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: var(--background);
  color: var(--text);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 140px;
  padding: 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(16, 42, 67, 0.12);
}

.full-width-field,
.consultation-fields,
.form-footer,
.form-status {
  grid-column: 1 / -1;
}

.consultation-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 22px;
  padding: 30px;
  border-radius: var(--radius-medium);
  background: var(--navy-light);
}

.consultation-fields[hidden] {
  display: none;
}

.consultation-fields-heading {
  grid-column: 1 / -1;
}

.consultation-fields-heading h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
}

.consultation-fields-heading p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.88rem;
}

.radio-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-field legend {
  margin-bottom: 13px;
}

.radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  font-weight: 600;
}

.radio-field input {
  width: auto;
  min-height: 0;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.form-footer p,
.form-status {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.8rem;
}

@media (max-width: 950px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-form-introduction {
    position: static;
  }
}

@media (max-width: 650px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 32px 22px;
  }

  .consultation-fields {
    grid-template-columns: 1fr;
    padding: 25px 18px;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }
}
/* Tablet and mobile */

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .main-navigation {
    width: 100%;
    flex-wrap: wrap;
    gap: 18px;
  }

  .navigation-button {
    margin-left: auto;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-content {
    max-width: 760px;
  }

  .website-builder-visual {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .main-navigation {
    font-size: 0.88rem;
  }

  .navigation-button {
    width: 100%;
    margin-left: 0;
  }

  .hero {
    padding: 55px 0 75px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .website-builder-visual {
    min-height: 330px;
  }

  .floating-piece {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}