:root {
  --bg: #0b1210;
  --panel: rgba(255, 255, 255, 0.06);
  --card: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);

  --green: #26c281; /* primary */
  --green2: #18a46a; /* darker */
  --earth: #c9a86a; /* accent divider */
  --black: #07100d;

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius2: 24px;

  --max: 1120px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  background:
    radial-gradient(
      900px 450px at 10% 0%,
      rgba(38, 194, 129, 0.16),
      transparent 60%
    ),
    radial-gradient(
      900px 450px at 90% 10%,
      rgba(201, 168, 106, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #070d0a, #0b1210);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body.service-page {
  background:
    radial-gradient(
      1000px 420px at 12% -10%,
      rgba(38, 194, 129, 0.12),
      transparent 62%
    ),
    radial-gradient(
      900px 420px at 92% 8%,
      rgba(201, 168, 106, 0.14),
      transparent 58%
    ),
    #f7faf8;
  color: #0f1a16;
}
body.service-page .muted {
  color: rgba(16, 25, 21, 0.68);
}
body.service-page .topstrip {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(16, 25, 21, 0.1);
}
body.service-page .header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 25, 21, 0.1);
}
body.service-page .brand__name {
  color: #0f1a16;
}
body.service-page .brand__tag {
  color: rgba(16, 25, 21, 0.58);
}
body.service-page .section--alt {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(16, 25, 21, 0.1);
  border-bottom: 1px solid rgba(16, 25, 21, 0.1);
}
body.service-page .card,
body.service-page .trust__card,
body.service-page .step,
body.service-page .review,
body.service-page .gallery__item {
  border: 1px solid rgba(16, 25, 21, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(7, 16, 13, 0.08);
}
body.service-page .trust__card ul {
  color: rgba(16, 25, 21, 0.8);
}
body.service-page .cta-slab,
body.service-page .footer-cta {
  border: 1px solid rgba(16, 25, 21, 0.12);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 249, 0.95)),
    radial-gradient(
      720px 230px at 10% 10%,
      rgba(38, 194, 129, 0.1),
      transparent 55%
    );
}
body.service-page .faq__a {
  border-top-color: rgba(16, 25, 21, 0.1);
}
body.service-page .faq__a p {
  color: rgba(16, 25, 21, 0.78);
}
body.service-page .link {
  color: #115d40;
}
body.service-page .footer {
  background: rgba(10, 22, 18, 0.93);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #eaf1ed;
}
body.service-page .footer .muted {
  color: rgba(232, 241, 236, 0.75);
}
body.service-page .footer .link {
  color: rgba(232, 241, 236, 0.94);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 92px;
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}
.sep {
  opacity: 0.55;
  padding: 0 10px;
}

.topstrip {
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topstrip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  flex-wrap: nowrap;
}
.topstrip__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.topstrip__text {
  opacity: 0.85;
}
.topstrip__link {
  opacity: 0.9;
}
.topstrip__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.badge--demo {
  border-color: rgba(201, 168, 106, 0.28);
  background: rgba(201, 168, 106, 0.12);
}
.badge--strong {
  border-color: rgba(38, 194, 129, 0.35);
  background: rgba(38, 194, 129, 0.16);
}
.badge--soft {
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 13, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #04110a;
  background:
    radial-gradient(
      120% 140% at 20% 10%,
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.18)
    ),
    linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-weight: 950;
  letter-spacing: -0.02em;
}
.brand__tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  opacity: 0.86;
  font-weight: 800;
  font-size: 14px;
}
.nav a:hover {
  opacity: 1;
}

.iconbtn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.iconbtn__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 4px auto;
  border-radius: 99px;
}
body.service-page .iconbtn {
  border-color: rgba(38, 194, 129, 0.5);
  background: linear-gradient(
    135deg,
    rgba(38, 194, 129, 0.95),
    rgba(24, 164, 106, 0.95)
  );
}
body.service-page .iconbtn__bar {
  background: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.08s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  border-color: rgba(38, 194, 129, 0.4);
  background: linear-gradient(
    135deg,
    rgba(38, 194, 129, 0.95),
    rgba(24, 164, 106, 0.95)
  );
  color: #ffffff;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}
body.service-page .btn--ghost {
  background: rgba(16, 25, 21, 0.08);
  border-color: rgba(16, 25, 21, 0.18);
  color: #0f1a16;
}
.btn--sm {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
}
.topstrip__btn {
  padding: 8px 12px;
  font-size: 12px;
  white-space: nowrap;
}
.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 38px 0 26px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.hero__copy {
  padding: 10px 0;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}
.lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
  max-width: 62ch;
}

.hero__media {
  position: relative;
  margin: 16px 0 16px;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}
.hero__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.hero__mediaOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55)),
    radial-gradient(
      900px 340px at 20% 10%,
      rgba(38, 194, 129, 0.22),
      transparent 55%
    );
}
.hero__mediaTag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  font-weight: 900;
  font-size: 13px;
}
.hero__mediaTag .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(38, 194, 129, 0.18);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.proof {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.proof__num {
  font-weight: 950;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}
.proof__text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.25;
}
.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(11, 18, 16, 0.85));
  pointer-events: none;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.card--hover {
  transition:
    transform 0.1s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.card--hover:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 194, 129, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.formcard {
  padding: 16px;
}
.formcard__head h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.formcard__head p {
  margin: 0 0 14px;
}

.form {
  display: grid;
  gap: 12px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  display: block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(38, 194, 129, 0.45);
  box-shadow: 0 0 0 4px rgba(38, 194, 129, 0.14);
}
textarea {
  resize: vertical;
}

.fineprint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.form-status {
  margin: 0;
  font-weight: 900;
}
.formcard__alt {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.link {
  text-decoration: underline;
  opacity: 0.9;
}

.section {
  padding: 56px 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.section__head {
  max-width: 72ch;
  margin-bottom: 18px;
}
.section__head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.section__head p {
  margin: 0;
}

.divider {
  height: 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
  --divider-glow: rgba(38, 194, 129, 0.65);
  --divider-soft: rgba(38, 194, 129, 0.12);
  --divider-core: rgba(255, 255, 255, 0.4);
}
.divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--divider-soft) 12%,
    var(--divider-glow) 48%,
    var(--divider-soft) 88%,
    transparent 100%
  );
}
.divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid var(--divider-glow);
  background: var(--divider-core);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}
.divider--green {
  --divider-glow: rgba(38, 194, 129, 0.72);
  --divider-soft: rgba(38, 194, 129, 0.16);
}
.divider--earth {
  --divider-glow: rgba(201, 168, 106, 0.75);
  --divider-soft: rgba(201, 168, 106, 0.18);
}
body.service-page .divider::after {
  --divider-core: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 5px rgba(247, 250, 248, 0.95);
}

.grid {
  display: grid;
  gap: 14px;
}
.grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--split {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.svc {
  padding: 16px;
}
.svc h3 {
  margin: 0 0 6px;
}
.svc__meta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 950;
  color: rgba(38, 194, 129, 0.95);
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(38, 194, 129, 0.2);
  background: rgba(38, 194, 129, 0.1);
  color: rgba(255, 255, 255, 0.84);
}
.note__actions {
  margin-top: 10px;
}

.content-card {
  padding: 16px;
  border-radius: 24px;
}
.content-card h3 {
  margin: 0 0 8px;
}
.content-card p {
  margin: 0 0 12px;
}
.checklist {
  margin: 0;
  padding-left: 18px;
}
.checklist li {
  margin: 7px 0;
}
body.service-page .checklist {
  color: rgba(16, 25, 21, 0.8);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}
.chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  cursor: pointer;
}
.chip.is-active {
  border-color: rgba(38, 194, 129, 0.3);
  background: rgba(38, 194, 129, 0.14);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.gallery__item {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  font-weight: 900;
}
.gallery__meta .muted {
  font-weight: 800;
}

.cta-slab {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      700px 240px at 10% 10%,
      rgba(38, 194, 129, 0.18),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-slab h3 {
  margin: 0 0 6px;
}
.cta-slab p {
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step {
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #04110a;
  background: linear-gradient(135deg, var(--green), var(--green2));
  margin-bottom: 10px;
}
.step h3 {
  margin: 0 0 6px;
}

.trust {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trust__card {
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.trust__card h3 {
  margin: 0 0 10px;
}
.trust__card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.trust__card li {
  margin: 8px 0;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.review {
  padding: 16px;
}
.review__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.stars {
  color: rgba(38, 194, 129, 0.95);
  letter-spacing: 1px;
  font-weight: 950;
}
.review__meta {
  color: var(--muted);
  font-size: 12px;
}
.review__text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.review__name {
  margin-top: 10px;
  font-weight: 950;
}

.areas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
}

.footer-cta {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-cta h2 {
  margin: 0 0 6px;
  font-size: 22px;
}
.footer-cta p {
  margin: 0;
}

.sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  z-index: 60;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.sticky.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.sticky__btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 16, 13, 0.78);
  backdrop-filter: blur(10px);
  font-weight: 950;
  font-size: 13px;
  color: #ffffff;
}
.sticky__btn--primary {
  border-color: rgba(38, 194, 129, 0.35);
  background: linear-gradient(
    135deg,
    rgba(38, 194, 129, 0.95),
    rgba(24, 164, 106, 0.95)
  );
  color: #ffffff;
}

.footer {
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__right .link {
  text-decoration: underline;
  opacity: 0.9;
}

.footer__right .footer-accent {
  color: var(--earth);
  font-weight: 600;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__actions .btn {
    justify-content: center;
  }
  .hero__proof {
    justify-content: center;
  }
  .proof {
    flex: 1 1 150px;
    justify-content: center;
    text-align: center;
  }
  .proof__text {
    text-align: center;
  }
  .nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 64px;
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 7px
      ),
      linear-gradient(180deg, rgba(9, 18, 14, 0.96), rgba(6, 12, 10, 0.98));
    border: 1px solid rgba(38, 194, 129, 0.22);
    border-radius: 18px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a:not(.btn) {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }
  .nav a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.08);
  }
  body.service-page .nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(16, 25, 21, 0.12);
    box-shadow:
      0 18px 36px rgba(7, 16, 13, 0.12),
      0 0 0 1px rgba(16, 25, 21, 0.04) inset;
  }
  body.service-page .nav a:not(.btn) {
    color: #0f1a16;
    background: rgba(16, 25, 21, 0.05);
  }
  body.service-page .nav a:not(.btn):hover {
    background: rgba(16, 25, 21, 0.1);
  }
  .iconbtn {
    display: block;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .grid--services {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .trust {
    grid-template-columns: 1fr;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .grid,
  .trust,
  .timeline,
  .gallery,
  .grid--3 {
    justify-items: center;
  }
  .card,
  .trust__card,
  .step,
  .review,
  .gallery__item,
  .svc {
    width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .sticky {
    display: flex;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer__right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer__right .sep {
    display: none;
  }
  .footer__right .link {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* FAQ (reuse) */
.faq {
  display: grid;
  gap: 12px;
}
.faq__item {
  padding: 14px 16px;
  border-radius: 18px;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 2px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__q {
  font-weight: 950;
  letter-spacing: -0.01em;
}

.faq__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(38, 194, 129, 0.22);
  background: rgba(38, 194, 129, 0.1);
  position: relative;
  flex: 0 0 auto;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: rgba(38, 194, 129, 0.95);
  transform: translate(-50%, -50%);
  border-radius: 99px;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.15s ease;
}
.faq__item[open] .faq__icon {
  background: rgba(38, 194, 129, 0.14);
  border-color: rgba(38, 194, 129, 0.3);
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::after {
  opacity: 0;
}

.faq__a {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq__a p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.8);
}
.faq__a p:last-child {
  margin-bottom: 0;
}
