:root {
  color-scheme: light;
  --ink: #172330;
  --muted: #60707d;
  --line: #dde6e1;
  --paper: #ffffff;
  --warm: #fbfaf6;
  --soft: #f3f7f4;
  --soft-green: #e7f2ee;
  --navy: #102033;
  --green: #14795f;
  --green-2: #179b7b;
  --mint: #92ddcc;
  --gold: #c69a4e;
  --coral: #bf604b;
  --shadow: 0 22px 58px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 32, 51, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.logo-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(221, 230, 225, 0.75);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(16, 32, 51, 0.08);
}

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

.brand-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.brand-icon svg {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 11px 20px rgba(16, 32, 51, 0.16));
}

.logo-bg {
  fill: var(--navy);
}

.logo-letter {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1.5px;
  dominant-baseline: alphabetic;
}

.logo-letter-c {
  fill: #fffdf8;
}

.logo-letter-b {
  fill: var(--mint);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  color: var(--navy);
  font-size: 1.03rem;
  font-weight: 850;
  line-height: 1.12;
}

.brand-text small {
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 800;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #2b3947;
  font-size: 0.94rem;
  font-weight: 750;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.14);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}

svg.lucide,
.button svg,
.trust-list svg,
.service-card svg,
.contact-options svg,
.problem-card svg,
.price-card svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 112px 0 62px;
  background:
    radial-gradient(circle at 78% 24%, rgba(20, 121, 95, 0.13), transparent 33%),
    linear-gradient(135deg, #ffffff 0%, #f7fbf8 46%, #edf6f1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 86px auto auto 6%;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(146, 221, 204, 0.22);
  filter: blur(34px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.35rem, 2rem + 1.5vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.9rem, 1.65rem + 0.9vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 26px;
  color: #44525f;
  font-size: clamp(1.03rem, 1rem + 0.16vw, 1.16rem);
}

.hero-actions,
.trust-list,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 15px 30px rgba(20, 121, 95, 0.22);
}

.button-primary:hover {
  background: #0f694f;
}

.button-secondary,
.button-outline {
  border-color: rgba(16, 32, 51, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.button-outline {
  width: 100%;
}

.trust-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  color: #33424f;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.04);
}

.hero-visual {
  position: relative;
}

.hero-trust-card {
  position: relative;
  max-width: 470px;
  margin-left: auto;
  padding: 30px;
  border: 1px solid rgba(20, 121, 95, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(20, 121, 95, 0.08), transparent 50%),
    #fff;
  box-shadow: var(--shadow);
}

.hero-trust-card::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(146, 221, 204, 0.9), rgba(20, 121, 95, 0.82));
  opacity: 0.18;
}

.hero-trust-card h2 {
  max-width: 340px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 1.3rem + 0.8vw, 2.28rem);
}

.hero-card-intro {
  max-width: 360px;
  margin: 0 0 22px;
  color: var(--muted);
}

.hero-card-note {
  margin: 22px 0 0;
  color: var(--green);
  font-weight: 850;
}

.hero-offer-list {
  display: grid;
  gap: 12px;
}

.hero-offer-list div {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.84);
}

.hero-offer-list strong,
.hero-offer-list span {
  display: block;
}

.hero-offer-list strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-offer-list span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 650;
}

.browser-window,
.demo-browser {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-site {
  min-height: 430px;
}

.browser-top,
.demo-top {
  display: flex;
  gap: 7px;
  padding: 13px 16px;
  background: #eaf1ee;
}

.browser-top span,
.demo-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a5b0aa;
}

.site-preview-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid #edf2ef;
  color: #6a7680;
  font-size: 0.86rem;
  font-weight: 750;
}

.site-preview-nav strong {
  margin-right: auto;
  color: var(--navy);
}

.site-preview-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 22px;
  align-items: center;
  padding: 28px 24px;
  background: linear-gradient(135deg, #f8fbf8, #e7f2ee);
}

.site-preview-hero small {
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
}

.site-preview-hero h2 {
  margin: 10px 0 18px;
  font-size: 1.55rem;
}

.site-preview-hero button,
.demo-browser button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.preview-image {
  min-height: 165px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(16, 32, 51, 0.08), rgba(20, 121, 95, 0.2)),
    linear-gradient(45deg, #d7e6df, #fff5dc);
}

.site-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 24px;
}

.site-preview-cards span {
  min-height: 82px;
  border-radius: 10px;
  background: #f0f5f2;
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.intro-band {
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.stat-grid {
  display: grid;
  gap: 14px;
}

.stat-grid div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.stat-grid div:last-child {
  border-bottom: 0;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.stat-grid span {
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section-heading {
  max-width: 680px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.narrow {
  margin: 0 auto 32px;
  text-align: center;
}

.split {
  display: grid;
  gap: 28px;
}

.problem-section {
  background: var(--warm);
}

.problem-card,
.service-card,
.demo-card,
.price-card,
.contact-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.problem-card {
  padding: 24px;
}

.problem-card ul,
.price-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.problem-card li,
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #384957;
}

.problem-card svg,
.price-card svg {
  color: var(--green);
}

.muted-section {
  background: linear-gradient(180deg, #f6f9f7, #eef6f1);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  padding: 22px;
  min-height: 184px;
}

.service-card > svg {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--soft-green);
  color: var(--green);
}

.service-card p,
.price-description,
.price-note,
.faq-item p,
.contact-copy p {
  color: var(--muted);
}

.examples-section {
  background: #fff;
}

.demo-grid {
  display: grid;
  gap: 18px;
}

.demo-card {
  padding: 0;
  overflow: hidden;
}

.demo-open {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.demo-open:hover .demo-image-wrap {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.12);
}

.demo-label {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin: 0 0 12px;
  border-radius: 8px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.demo-title {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 850;
  line-height: 1.2;
}

.demo-text {
  display: block;
  min-height: 74px;
  margin-bottom: 15px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.demo-image-wrap {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbf9;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.demo-image-wrap img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.demo-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 850;
}

.demo-link::after {
  content: "→";
  margin-left: 7px;
}

.demo-cta {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
  text-align: center;
}

.demo-cta p {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 850;
}

.pricing-section {
  background: linear-gradient(180deg, #fbfaf6, #f4f8f5);
}

.pricing-grid {
  display: grid;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(20, 121, 95, 0.36);
  background:
    linear-gradient(180deg, rgba(20, 121, 95, 0.07), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: -4px;
  border-radius: 8px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
}

.price {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.9rem;
  font-weight: 850;
  line-height: 1.1;
}

.price span {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 850;
}

.price-description {
  margin-bottom: 0;
}

.price-card .button {
  margin-top: auto;
}

.price-note {
  margin: 22px auto 0;
  text-align: center;
}

.contact-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(20, 121, 95, 0.1), transparent 28%),
    #fff;
}

.contact-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-options {
  margin-top: 24px;
}

.contact-options a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.06);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd9d4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.contact-form input {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 121, 95, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: var(--green);
  font-weight: 850;
}

.faq-section {
  padding-top: 46px;
  background: var(--warm);
}

.faq-layout {
  display: grid;
  gap: 24px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  min-height: 58px;
  padding: 16px 50px 16px 18px;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.28rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 18px 18px;
  margin: 0;
}

.site-footer {
  padding: 30px 0;
  background: #102033;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.brand-footer .brand-text strong,
.brand-footer .brand-text small {
  color: #fff;
}

.footer-brand p {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.legal-main {
  padding-top: 74px;
  background:
    linear-gradient(180deg, rgba(231, 242, 238, 0.6), rgba(255, 255, 255, 0) 420px),
    var(--paper);
}

.legal-hero {
  padding: 72px 0 34px;
}

.legal-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-section {
  padding: 0 0 72px;
}

.legal-layout {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-card h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin: 0 0 12px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0 0 12px;
}

.legal-card a {
  color: var(--green);
  font-weight: 800;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
}

.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 17, 27, 0.68);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(1180px, 100%);
  max-height: min(92vh, 920px);
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(8, 17, 27, 0.34);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.modal-header h2 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 2.2rem);
}

.modal-header p:not(.demo-label) {
  margin: 0;
  color: var(--muted);
}

.modal-close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}

.modal-image-shell {
  display: grid;
  place-items: center;
  overflow: auto;
  max-height: calc(92vh - 150px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbf9;
}

.modal-image-shell img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 180px);
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .site-header {
    min-height: 70px;
  }

  .brand-icon,
  .brand-icon svg {
    width: 45px;
    height: 45px;
  }

  .brand-text small {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    padding: 96px 0 46px;
  }

  h1 {
    font-size: 2.08rem;
  }

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

  .hero-visual {
    display: none;
  }

  .demo-image-wrap,
  .demo-image-wrap img {
    height: auto;
    min-height: 0;
  }

  .modal-panel {
    padding: 14px;
  }

  .modal-header {
    align-items: flex-start;
  }

  .modal-image-shell {
    max-height: calc(92vh - 180px);
    padding: 8px;
  }
}

@media (min-width: 680px) {
  .stat-grid,
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-grid div {
    padding: 10px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .stat-grid div:first-child {
    padding-left: 0;
  }

  .stat-grid div:last-child {
    border-right: 0;
  }

  .before-after {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 26px;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .compact-split,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 0.92fr 1.08fr;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .price-card.featured {
    transform: translateY(-8px);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
