:root {
  --color-paper: #fbfbfb;
  --color-white: #fdfdfd;
  --color-cream: #f4f3f2;
  --color-evergreen: #04281b;
  --color-green: #1c3d2b;
  --color-muted: #b0b0a3;
  --color-gold: #c8840a;
  --color-gold-light: #e0a321;
  --color-border: #dfddd8;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --shadow-soft: 0 14px 34px rgba(4, 40, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-evergreen);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
}

h2 {
  margin-bottom: 36px;
  font-size: clamp(2rem, 3.1vw, 2.5rem);
  text-align: center;
}

h3 {
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid var(--color-evergreen);
  border-radius: 7px;
  color: var(--color-white);
  background: var(--color-evergreen);
  box-shadow: 0 7px 15px rgba(4, 40, 27, 0.18);
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--color-green);
  box-shadow: 0 10px 22px rgba(4, 40, 27, 0.22);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
}

.button-gold {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.button-gold:hover {
  background: #a96d04;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #e8e6e2;
  background: rgba(253, 253, 253, 0.98);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 255px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 15px;
  font-weight: 600;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 28px;
  white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 40%, rgba(200, 132, 10, 0.08), transparent 18%),
    linear-gradient(115deg, #ffffff 0%, #fbfbfa 60%, #f4f3f2 100%);
}

.hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 48px;
  padding-block: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid #8a9b91;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--color-evergreen);
  font-size: clamp(2.75rem, 4.7vw, 4rem);
}

.hero h1 span,
.connected h2 span {
  color: var(--color-gold);
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 28px;
  color: #26372f;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.play-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-green);
  border-radius: 50%;
}

.play-icon svg {
  width: 17px;
  height: 17px;
}

.hero-product {
  position: relative;
}

.hero-product::before {
  position: absolute;
  inset: 8% -5% -8% 8%;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: rgba(28, 61, 43, 0.08);
  filter: blur(30px);
}

.hero-product img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.workflow {
  padding: 72px 0 66px;
  border-top: 1px solid #ebe9e5;
  background: var(--color-white);
}

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

.workflow-item {
  position: relative;
  text-align: center;
}

.workflow-item:not(:last-child)::after {
  position: absolute;
  top: 50px;
  left: calc(50% + 42px);
  width: calc(100% - 60px);
  border-top: 1px dashed #547064;
  content: "";
}

.step {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto -8px;
  border-radius: 50%;
  color: white;
  background: var(--color-evergreen);
  font-size: 13px;
  font-weight: 700;
}

.workflow-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #ded8cd;
  border-radius: 50%;
  background: white;
}

.workflow-icon img {
  width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.workflow-item h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.workflow-item p {
  margin-bottom: 0;
  color: #435249;
  font-size: 14px;
  line-height: 1.45;
}

.modules {
  padding: 26px 0 78px;
  background: var(--color-white);
}

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

.module-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 18px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.module-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--color-evergreen);
}

.module-icon img,
.module-icon svg {
  max-width: 44px;
  max-height: 44px;
}

.module-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.module-card p {
  margin-bottom: 0;
  color: #4c5952;
  font-size: 14px;
}

.results {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: white;
  background:
    radial-gradient(circle at 5% 18%, rgba(224, 163, 33, 0.65) 0 2px, transparent 3px),
    radial-gradient(circle at 91% 23%, rgba(224, 163, 33, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 85%, rgba(224, 163, 33, 0.7) 0 1px, transparent 3px),
    linear-gradient(110deg, #063f2c, #003524 70%, #064331);
  background-size: 180px 160px, 220px 190px, 250px 220px, auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.result-card {
  min-width: 0;
  padding: 0 34px;
  text-align: center;
}

.result-card + .result-card {
  border-left: 1px solid rgba(224, 163, 33, 0.65);
}

.result-number {
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
}

.result-label {
  max-width: 190px;
  min-height: 48px;
  margin: 0 auto 10px;
  font-size: 15px;
  line-height: 1.35;
}

.rating {
  width: 82px;
  margin: 0 auto 14px;
}

.result-card blockquote {
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.45;
}

.result-card cite {
  color: #e4e7e5;
  font-size: 13px;
  font-style: normal;
}

.connected {
  padding: 76px 0 70px;
  background: var(--color-white);
}

.connected-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.35fr;
  align-items: center;
  gap: 60px;
}

.connected h2 {
  margin-bottom: 14px;
  text-align: left;
}

.connected-copy > p {
  margin-bottom: 22px;
  color: #46554d;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
}

.network {
  display: grid;
  grid-template-columns: 145px 1fr 142px 1fr 160px;
  align-items: center;
  gap: 8px;
}

.network-column {
  display: grid;
  gap: 12px;
}

.network-column span {
  padding: 8px 12px;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
  background: white;
  box-shadow: 0 3px 8px rgba(4, 40, 27, 0.05);
  font-size: 13px;
  text-align: center;
}

.network-lines {
  height: 145px;
  background: repeating-linear-gradient(to bottom, transparent 0 17px, #7f958b 18px 19px, transparent 20px 36px);
  clip-path: polygon(0 0, 100% 27%, 100% 73%, 0 100%);
  opacity: 0.8;
}

.network-lines.reverse {
  transform: scaleX(-1);
}

.network-badge {
  width: 142px;
  filter: drop-shadow(0 10px 12px rgba(4, 40, 27, 0.2));
}

.platform-action {
  padding: 0 0 72px;
  background: var(--color-white);
}

.platform-action h2 {
  margin-bottom: 24px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.action-grid figure {
  margin-bottom: 0;
}

.action-grid img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
  border: 1px solid #d7dbd8;
  border-radius: 7px;
  box-shadow: 0 6px 12px rgba(4, 40, 27, 0.14);
}

.action-grid figcaption {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.case-study {
  padding: 46px 0;
  border-top: 1px solid #e6e3de;
  background: linear-gradient(110deg, #fbfaf8, #fff);
}

.case-study-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 34px;
}

.portrait {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.customer-quote {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.quote-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--color-gold);
  fill: currentColor;
  stroke: none;
}

.customer-quote blockquote {
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.45;
}

.customer-quote cite {
  font-size: 13px;
  font-style: normal;
}

.customer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.customer-logo {
  width: 160px;
  justify-self: end;
}

.closing-cta {
  padding: 28px 0;
  color: white;
  background: linear-gradient(105deg, #00452f, #003423);
}

.cta-inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-inner > img {
  width: 56px;
}

.cta-copy h2 {
  margin-bottom: 4px;
  color: white;
  font-size: 28px;
  text-align: left;
}

.cta-copy p,
.cta-action p {
  margin-bottom: 0;
}

.cta-copy p {
  max-width: 600px;
  color: #e0e9e4;
  font-size: 14px;
}

.cta-action {
  text-align: center;
}

.cta-action p {
  margin-top: 7px;
  color: #dfe7e3;
  font-size: 13px;
}

.site-footer {
  color: #dbe3df;
  background: #022b1e;
}

.footer-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
  font-size: 13px;
}

.footer-inner a {
  color: white;
  font-family: var(--font-heading);
  font-size: 17px;
}

.footer-inner p {
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 22px;
  }

  .primary-nav > a:not(.button) {
    padding-block: 8px;
  }

  .primary-nav > a:not(.button)::after {
    bottom: 2px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
  }

  .workflow-item::after {
    visibility: hidden;
  }

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

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

  .network {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

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

  .hero-product {
    width: 100%;
  }

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

  .result-card {
    padding: 28px;
  }

  .result-card + .result-card {
    border-left: 0;
  }

  .result-card:nth-child(even) {
    border-left: 1px solid rgba(224, 163, 33, 0.65);
  }

  .result-card:nth-child(n + 3) {
    border-top: 1px solid rgba(224, 163, 33, 0.65);
  }

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

  .case-study-inner {
    grid-template-columns: 120px 1fr;
  }

  .portrait {
    width: 120px;
  }

  .customer-logo {
    grid-column: 2;
    justify-self: start;
  }

  .cta-inner {
    grid-template-columns: 56px 1fr;
  }

  .cta-action {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

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

  h2 {
    margin-bottom: 28px;
    font-size: 2rem;
  }

  .brand img {
    width: 220px;
  }

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

  .primary-nav .button {
    grid-column: 1 / -1;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 52px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-intro {
    font-size: 16px;
  }

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

  .tour-link {
    justify-content: center;
  }

  .workflow {
    padding-block: 58px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .workflow-item p {
    max-width: 330px;
    margin-inline: auto;
  }

  .modules {
    padding-bottom: 58px;
  }

  .module-grid,
  .results-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

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

  .result-card:nth-child(even) {
    border-left: 0;
  }

  .result-card + .result-card {
    border-top: 1px solid rgba(224, 163, 33, 0.65);
  }

  .connected {
    padding-block: 58px;
  }

  .network {
    grid-template-columns: 1fr 108px 1fr;
    gap: 12px;
  }

  .network-lines {
    display: none;
  }

  .network-badge {
    width: 108px;
  }

  .network-column span {
    padding: 7px 6px;
    font-size: 11px;
  }

  .platform-action {
    padding-bottom: 58px;
  }

  .case-study-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portrait,
  .customer-logo {
    justify-self: center;
  }

  .customer-logo {
    grid-column: auto;
  }

  .customer-quote {
    flex-direction: column;
    align-items: center;
  }

  .customer-stats {
    justify-content: center;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-inner > img,
  .cta-action {
    grid-column: auto;
    justify-self: center;
  }

  .cta-copy h2 {
    text-align: center;
  }

  .cta-action {
    text-align: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
.mockups-page h2 span,
.mockups-hero h1 span,
.mockup-benefits h2 span {
  color: var(--color-gold);
}

.mockups-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 52px;
  background:
    radial-gradient(circle at 2% 50%, rgba(200, 132, 10, 0.11), transparent 23%),
    linear-gradient(115deg, #fff 0%, #fbfbfa 58%, #f1f0ed 100%);
}

.hero-pine-decoration {
  position: absolute;
  top: 30px;
  left: -8px;
  z-index: 0;
  width: 68px;
  height: auto;
  pointer-events: none;
  opacity: 0.92;
}

.mockups-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.02fr);
  align-items: center;
  gap: 48px;
}

.mockups-kicker {
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mockups-hero h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3vw, 2.85rem);
  line-height: 1.08;
}

.mockups-hero-intro {
  max-width: 470px;
  margin-bottom: 26px;
  color: #34463d;
  font-size: 16px;
}

.mockups-hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 30px;
}

.mockups-hero-features article {
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.mockups-hero-features article:first-child {
  padding-left: 0;
}

.mockups-hero-features article:last-child {
  padding-right: 0;
  border-right: 0;
}

.mockups-hero-features img {
  width: 26px;
  height: 26px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.mockups-hero-features h3 {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
}

.mockups-hero-features p {
  margin-bottom: 0;
  color: #536159;
  font-size: 13px;
  line-height: 1.35;
}

.mockups-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.mockups-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 800;
}

.mockups-text-link svg {
  width: 19px;
  height: 19px;
}

.mockups-comparison {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(4, 40, 27, 0.2);
  border-radius: 15px;
  background: #061e19;
  box-shadow: 0 22px 48px rgba(4, 40, 27, 0.2);
}

.comparison-pane {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.comparison-pane + .comparison-pane {
  border-left: 2px solid white;
}

.comparison-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before img {
  filter: grayscale(0.75) brightness(1.45) saturate(0.55);
}

.comparison-after img {
  filter: saturate(1.1) contrast(1.08);
}

.comparison-pane span {
  position: absolute;
  top: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  color: white;
  background: rgba(4, 40, 27, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-before span { left: 18px; }
.comparison-after span { right: 18px; }

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-evergreen);
  background: white;
  box-shadow: 0 5px 18px rgba(4, 40, 27, 0.25);
  transform: translate(-50%, -50%);
}

.comparison-handle svg {
  width: 26px;
  height: 26px;
}

.studio-design {
  padding: 56px 0;
  border-top: 1px solid #e7e4df;
  background: var(--color-white);
}

.studio-design-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 48px;
}

.studio-design h2 {
  margin-bottom: 14px;
  text-align: left;
}

.studio-preview figure {
  margin: 0;
}

.studio-preview figure > img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.section-intro {
  margin-bottom: 22px;
  color: #4d5c54;
  font-size: 15px;
}

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

.style-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: white;
  box-shadow: 0 7px 18px rgba(4, 40, 27, 0.07);
}

.style-card > img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.style-card div {
  padding: 13px 10px 15px;
  text-align: center;
}

.style-card h3 {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
}

.style-card p {
  margin: 0;
  color: #56635c;
  font-size: 13px;
}

.mockup-benefits {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-cream);
}

.benefits-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  align-items: center;
  gap: 40px;
}

.benefits-heading {
  text-align: left;
}

.benefits-heading h2 {
  margin-bottom: 14px;
  text-align: left;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
}

.benefits-heading p {
  margin-bottom: 0;
  color: #46554d;
  font-size: 14px;
}

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

.benefit-card {
  padding: 0 8px;
  text-align: center;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid #d5d0c6;
  border-radius: 50%;
  background: transparent;
}

.benefit-card img {
  width: 24px;
  height: 24px;
  margin: 0;
  object-fit: contain;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
}

.benefit-card p {
  margin-bottom: 0;
  color: #526058;
  font-size: 13px;
  line-height: 1.45;
}

.mockup-gallery {
  padding: 48px 0;
  background: var(--color-white);
}

.section-heading-left {
  margin-bottom: 22px;
}

.section-heading-left h2 {
  margin-bottom: 4px;
  text-align: left;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
}

.section-heading-left p {
  margin-bottom: 0;
  color: #526058;
  font-size: 15px;
}

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

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(4, 40, 27, 0.13);
}

.gallery-grid img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.mockup-process {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  background: #faf9f7;
}

.mockup-process h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 34px;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
}

.mockup-process h2::before,
.mockup-process h2::after {
  width: 90px;
  height: 1px;
  content: "";
  background: var(--color-gold);
}

.mockup-process h2 span {
  color: inherit;
}

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

.process-card {
  position: relative;
  padding: 8px 18px 0;
  text-align: center;
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 44px;
  left: calc(50% + 42px);
  width: calc(100% - 84px);
  border-top: 1px dashed #7a8f83;
  content: "";
}

.process-number {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: white;
  background: var(--color-evergreen);
  font-size: 13px;
  font-weight: 800;
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #d8d4cc;
  border-radius: 50%;
  background: #faf9f7;
}

.process-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.process-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
}

.process-card p {
  max-width: 210px;
  margin: 0 auto;
  color: #526058;
  font-size: 13px;
  line-height: 1.45;
}

.landing-pages {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 48px;
}

.landing-copy h2 {
  margin-bottom: 12px;
  text-align: left;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
}

.landing-copy > p {
  margin-bottom: 18px;
  color: #4d5c54;
  font-size: 15px;
}

.landing-copy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.landing-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.landing-copy li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #08733e;
  stroke-width: 2.4;
}

.landing-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.landing-previews figure {
  margin: 0;
}

.landing-previews img {
  width: 100%;
  aspect-ratio: 234 / 196;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.mockup-testimonials {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-cream);
}

.mockup-testimonials h2 {
  margin-bottom: 34px;
  font-size: clamp(1.7rem, 2.3vw, 2.1rem);
}

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

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: white;
}

.testimonial-quote {
  width: 26px;
  height: 20px;
  margin-bottom: 14px;
  object-fit: contain;
}

.testimonial-card blockquote {
  margin-bottom: 22px;
  color: #21372e;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.45;
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.testimonial-person span {
  color: #59665f;
  font-size: 13px;
}

.testimonial-person > img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  object-fit: cover;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d4c391;
}

.mockup-final-cta {
  position: relative;
  overflow: hidden;
  padding: 34px 0;
  color: white;
  background: linear-gradient(105deg, #064c35, #003524 72%, #07533a);
}

.cta-pine-decoration {
  position: absolute;
  right: 0;
  bottom: -6px;
  z-index: 0;
  width: 210px;
  height: auto;
  pointer-events: none;
}

.cta-sparkle {
  position: absolute;
  z-index: 0;
  width: 14px;
  height: auto;
  pointer-events: none;
  opacity: 0.85;
}

.cta-sparkle-1 { top: 26%; left: 8%; width: 18px; }
.cta-sparkle-2 { top: 62%; left: 3%; width: 12px; }
.cta-sparkle-3 { top: 20%; left: 15%; width: 10px; }

.mockup-final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.mockup-final-cta-inner > img {
  width: 52px;
}

.mockup-final-cta h2 {
  margin-bottom: 6px;
  color: white;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  text-align: left;
}

.mockup-final-cta-inner > div > p {
  max-width: 520px;
  margin-bottom: 0;
  color: #e3ebe7;
  font-size: 14px;
}

.final-cta-action {
  min-width: 230px;
  text-align: center;
}

.final-cta-action .button {
  width: 100%;
}

.final-cta-action p {
  margin-top: 9px;
  color: #dce5e0;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .mockups-hero-grid,
  .studio-design-grid,
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .mockups-hero-copy {
    max-width: 780px;
  }

  .mockups-comparison {
    min-height: 360px;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .gallery-grid img {
    height: 180px;
  }
}

@media (max-width: 850px) {
  .mockups-hero,
  .studio-design,
  .mockup-benefits,
  .mockup-gallery,
  .mockup-process,
  .landing-pages,
  .mockup-testimonials {
    padding-block: 78px;
  }

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

  .process-card::after {
    display: none;
  }

  .landing-previews,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .landing-previews {
    max-width: 600px;
    margin-inline: auto;
  }

  .mockup-final-cta-inner {
    grid-template-columns: 70px 1fr;
  }

  .final-cta-action {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .mockups-hero {
    padding-block: 64px 72px;
  }

  .mockups-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .mockups-hero-features,
  .style-grid,
  .benefits-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .mockups-hero-features {
    gap: 12px;
  }

  .mockups-hero-features article,
  .mockups-hero-features article:first-child,
  .mockups-hero-features article:last-child {
    display: grid;
    grid-template-columns: 40px 1fr;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
  }

  .mockups-hero-features article:last-child {
    border-bottom: 0;
  }

  .mockups-hero-features img {
    grid-row: 1 / 3;
    margin: 0;
  }

  .mockups-hero-features h3,
  .mockups-hero-features p {
    margin-left: 4px;
  }

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

  .mockups-text-link {
    justify-content: center;
  }

  .mockups-comparison {
    min-height: 330px;
  }

  .gallery-grid img {
    height: 260px;
  }

  .mockup-final-cta {
    padding-block: 64px;
  }

  .mockup-final-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mockup-final-cta-inner > img,
  .final-cta-action {
    grid-column: auto;
    justify-self: center;
  }

  .mockup-final-cta h2 {
    text-align: center;
  }

  .final-cta-action {
    width: 100%;
  }
}