:root {
  --ink: #17211f;
  --deep: #102e2b;
  --muted: #52645f;
  --line: #d8e0dc;
  --paper: #f7f5ef;
  --white: #ffffff;
  --gold: #c9a55c;
  --green: #a8dccb;
  --teal: #1f5b50;
  --coral: #ed6f51;
  --shadow: 0 24px 70px rgba(16, 46, 43, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(16, 46, 43, .96);
  color: var(--white);
  backdrop-filter: blur(16px);
}
.logo img {
  width: 210px;
  max-width: 58vw;
  height: 56px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a { padding: 8px 0; }
.nav-links a:hover,
.nav-links .active { color: var(--gold); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.button,
.nav-cta,
.nav-prototype {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 800;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover,
.nav-cta:hover,
.nav-prototype:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16, 46, 43, .22); }
.nav-prototype {
  background: transparent;
  border-color: rgba(168, 220, 203, .45);
  color: var(--green);
  font-size: 13px;
}
.nav-prototype:hover { border-color: var(--green); background: rgba(168, 220, 203, .1); box-shadow: none; }
.nav-cta {
  border: 2px solid #f5d992;
  background: linear-gradient(135deg, #f0cf7c, var(--gold));
  box-shadow: 0 8px 28px rgba(201, 165, 92, .35);
}
.button.dark { background: var(--deep); color: var(--white); }
.button.dark:hover { background: #0b201e; }
.button.light { background: transparent; border-color: rgba(255, 255, 255, .35); color: var(--white); }
.button.light:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .08); }
.button.outline { background: transparent; border-color: var(--line); color: var(--ink); }
.button.outline:hover { border-color: var(--teal); box-shadow: none; }

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.5px),
    linear-gradient(135deg, #102e2b, #173f3a 52%, #1f5b50);
  background-size: 22px 22px, auto;
  color: var(--white);
}
.hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: -18%;
  width: 62%;
  height: 140%;
  background: radial-gradient(circle, rgba(168, 220, 203, .16), transparent 62%);
  pointer-events: none;
}
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 76px) clamp(42px, 6vw, 70px);
}
.page-hero { padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 76px) clamp(30px, 4vw, 54px); }
.page-hero .hero-copy { margin-bottom: 0; }
.page-hero + section { padding-top: clamp(26px, 4vw, 46px); }
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.14;
}
.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.14;
}
h3 { line-height: 1.2; }
.hero-copy {
  max-width: 740px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(16px, 1.55vw, 18px);
}
.accent { color: var(--gold); }
.section-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 720px;
}
.metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.metric:hover { transform: translateY(-3px); border-color: rgba(201, 165, 92, .5); background: rgba(255, 255, 255, .12); }
.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 92, .5);
  color: var(--gold);
}
.metric-icon svg { width: 17px; height: 17px; }
.metric strong { display: block; color: var(--white); font-size: 21px; }
.metric span { color: rgba(255, 255, 255, .72); font-size: 13px; }

.hero-visual {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.system-visual {
  position: relative;
  min-height: 460px;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 165, 92, .14), transparent 60%),
    linear-gradient(160deg, #fbfaf6, var(--paper) 60%, #f0ece1);
}
.system-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.system-lines line {
  stroke: rgba(16, 46, 43, .3);
  stroke-width: 1.5;
  stroke-dasharray: 3 4;
  vector-effect: non-scaling-stroke;
}
.system-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.system-center {
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(120px, 24%, 152px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0cf7c, var(--gold));
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(201, 165, 92, .35);
}
.system-center strong {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 900;
  line-height: 1.25;
}
.pos-top { top: 12%; left: 50%; }
.pos-right { top: 50%; left: 84%; }
.pos-bottom { top: 88%; left: 50%; }
.pos-left { top: 50%; left: 16%; }
.node-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(16, 46, 43, .14);
  box-shadow: 0 10px 24px rgba(16, 46, 43, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.node-icon svg { width: 24px; height: 24px; }
.node-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--deep);
  white-space: nowrap;
}
.launch-preview {
  min-height: 460px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(135deg, rgba(168, 220, 203, .18), transparent 36%),
    linear-gradient(160deg, #0f2d2a, #153f3a 58%, #102e2b);
}
.preview-header,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.preview-footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 0;
  background: rgba(37, 211, 102, .12);
}
.preview-header span,
.preview-footer span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.preview-header strong {
  color: var(--gold);
  font-size: 18px;
}
.preview-footer strong {
  color: #8df5b7;
  font-size: 15px;
}
.preview-body {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  padding: 18px;
}
.site-card,
.launch-stack article {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
}
.site-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(247, 245, 239, .96), rgba(232, 243, 240, .92));
  color: var(--deep);
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.site-nav span,
.site-actions span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(16, 46, 43, .08);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}
.site-card h2 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 34px);
}
.site-card p {
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
}
.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.site-actions span:first-child {
  background: var(--gold);
  color: var(--deep);
}
.launch-stack {
  display: grid;
  gap: 12px;
}
.launch-stack article {
  padding: 15px;
}
.launch-stack span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.launch-stack strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}
.launch-stack p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

section { padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 76px); }
.section-head { max-width: 880px; margin-bottom: 30px; }
.review-offer {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  background-color: var(--deep);
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.5px);
  background-size: 22px 22px;
  color: var(--white);
}
.review-offer .section-copy {
  color: rgba(255, 255, 255, .76);
}
.review-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-points article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  transition: transform .18s ease, border-color .18s ease;
}
.review-points article:hover { transform: translateY(-3px); border-color: rgba(201, 165, 92, .45); }
.review-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(201, 165, 92, .16);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.review-points strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.22;
}
.review-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}
.feature-grid,
.service-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card,
.service-category,
.team-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(15, 30, 50, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover,
.service-category:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(15, 30, 50, .12);
  border-color: rgba(31, 91, 80, .35);
}
.card,
.service-category { padding: 24px; }
.card h3,
.service-category h3 { margin-bottom: 10px; color: var(--deep); font-size: 19px; }
.card p,
.service-category li,
.team-card p { color: var(--muted); }
.service-category ul { margin: 0; padding-left: 20px; }
.service-category li { margin: 8px 0; }
.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 900;
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.shopify-highlight {
  margin: 24px 0;
  padding: 20px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(168, 220, 203, .24), rgba(201, 165, 92, .16));
}
.highlight-row .shopify-highlight { margin: 0; display: flex; flex-direction: column; align-items: flex-start; }
.highlight-row .shopify-highlight .button { margin-top: auto; }
.offer-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background-color: var(--deep);
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.5px);
  background-size: 22px 22px;
  color: var(--white);
}
.dark-band .section-copy { color: rgba(255, 255, 255, .72); }
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industries span {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.industries span:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 165, 92, .55);
  background: rgba(201, 165, 92, .14);
  color: var(--gold);
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step { display: flex; flex-direction: column; gap: 12px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  color: var(--coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
}
.step p { color: var(--muted); }

.portfolio-band { background: var(--white); }
.portfolio-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.work {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.work:hover { transform: translateY(-4px); box-shadow: 0 30px 76px rgba(16, 46, 43, .2); }
.work img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  background: #eef2f4;
  transition: transform .35s ease;
}
.work:hover img { transform: scale(1.04); }
.work strong,
.work span { display: block; padding: 0 16px; }
.work strong { padding-top: 16px; }
.work span { padding-bottom: 16px; color: var(--muted); font-size: 14px; }

.launch-offer {
  min-height: calc(86vh - 80px);
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.5px),
    linear-gradient(135deg, #102e2b, #173f3a);
  background-size: 22px 22px, auto;
  color: var(--white);
}
.launch-offer-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: 100%;
}
.launch-offer figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0;
}
.offer-price strong {
  color: var(--gold);
  font-size: clamp(44px, 6vw, 68px);
  line-height: .85;
}
.offer-price span { color: var(--green); font-size: 20px; font-weight: 800; }

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.blog-card .blog-date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
}
.blog-card h3 { color: var(--deep); font-size: 20px; margin-bottom: 0; }
.blog-card p { color: var(--muted); margin-bottom: 4px; }

.blog-post-body { max-width: 720px; }
.blog-post-body p { color: var(--ink); font-size: 17px; margin-bottom: 20px; }
.blog-post-body h2 { margin-top: 36px; font-size: clamp(22px, 2.6vw, 28px); color: var(--deep); }
.blog-post-body ul { padding-left: 20px; color: var(--ink); margin-bottom: 20px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.team-card { overflow: hidden; }
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}
.team-card div { padding: 24px; }
.team-card-graphic img {
  aspect-ratio: auto;
  object-fit: contain;
}

.contact { background: var(--white); }
.contact-box {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  box-shadow: var(--shadow);
}
.contact-actions { display: flex; flex-direction: column; gap: 12px; }
.qr-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.qr-card img { width: 92px; height: 92px; border-radius: 8px; object-fit: cover; }
.qr-card strong,
.qr-card span { display: block; }
.qr-card span { color: var(--muted); font-size: 14px; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}
.faq-item {
  padding: 4px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(15, 30, 50, .05);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--deep);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; color: var(--muted); }

.footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 34px clamp(18px, 5vw, 76px) 100px;
  background: #0b201e;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand strong { display: block; margin-bottom: 6px; color: var(--white); font-size: 16px; font-weight: 900; }
.footer-brand p { max-width: 320px; margin: 0; color: rgba(255, 255, 255, .6); }
.footer-nav-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, .14); }
.footer-links a:hover,
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
  color: rgba(255, 255, 255, .45);
  font-size: 12.5px;
}
.footer span:first-child { color: var(--white); font-weight: 900; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #072d18;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

@media (max-width: 1120px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; }
  .hero,
  .review-offer,
  .portfolio-wrap,
  .launch-offer-wrap,
  .contact-box { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; }
}

@media (max-width: 760px) {
  .nav-actions { width: 100%; flex-wrap: wrap; }
  .nav-prototype,
  .nav-cta { flex: 1 1 150px; }
  h1 { font-size: clamp(30px, 9vw, 40px); }
  .page-hero h1 { font-size: clamp(26px, 7.6vw, 34px); }
  .hero { min-height: auto; }
  .hero-metrics,
  .review-points,
  .feature-grid,
  .service-categories,
  .highlight-row,
  .portfolio-grid,
  .team-grid,
  .blog-list,
  .process { grid-template-columns: 1fr; }
  .launch-preview { min-height: auto; }
  .preview-body { grid-template-columns: 1fr; }
  .preview-header,
  .preview-footer { align-items: flex-start; flex-direction: column; }
  .work img { height: 260px; }
  .footer-top,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav-group { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-social { padding-left: 0; border-left: none; }
}
