:root {
  --bg-page: #ffffff;
  --bg-hero: #050607;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --button-text: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

body.is-locked {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

body.is-locked .page {
  filter: blur(22px) saturate(0.85);
  transform: scale(1.015);
  pointer-events: none;
  user-select: none;
}

.lockscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 20% 20%, rgba(13, 148, 136, 0.16), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.14), transparent 35%),
    rgba(3, 6, 7, 0.98);
  backdrop-filter: blur(18px) saturate(0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  pointer-events: auto;
}

.lockscreen.is-hidden {
  display: none;
}

.lockscreen-card {
  width: min(520px, 100%);
  border-radius: 20px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lockscreen-badge {
  display: inline-flex;
  height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lockscreen-card h1 {
  margin-top: 14px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
}

.lockscreen-card p {
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.45;
}

.lockscreen-card p a {
  color: #86efac;
  text-decoration: none;
  border-bottom: 1px solid rgba(134, 239, 172, 0.45);
}

.lockscreen-form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.lockscreen-form input,
.lockscreen-form button {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lockscreen-form input {
  padding: 0 14px;
  background: rgba(2, 6, 23, 0.52);
  color: #fff;
  font-size: 16px;
}

.lockscreen-form button {
  padding: 0 16px;
  background: #10b981;
  color: #042012;
  font-weight: 700;
  cursor: pointer;
}

.lockscreen-error {
  min-height: 20px;
  margin-top: 10px;
  color: #fca5a5;
  font-size: 14px;
}

.lockscreen-card.is-error {
  animation: lockshake 340ms ease;
}

@keyframes lockshake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

.page {
  min-height: 100vh;
  padding: 24px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  border-radius: 40px;
  background: radial-gradient(circle at 25% 80%, #005f4f 0%, transparent 30%),
    radial-gradient(circle at 50% 90%, #1d5fb3 0%, transparent 35%), var(--bg-hero);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent 55%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 34px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00ff94, #10b981);
}

.logo-text {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 12px;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: #f3f4f6;
  text-decoration: none;
  font-size: 34px;
  font-size: clamp(20px, 1.35vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: 14px;
  transition: background-color 180ms ease, color 180ms ease;
}

.menu-link:hover,
.menu-item:focus-within .menu-link {
  background: rgba(255, 255, 255, 0.09);
}

.menu-link.is-active {
  background: rgba(255, 255, 255, 0.16);
}

.caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.95;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  list-style: none;
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 170ms ease, transform 200ms ease;
}

.dropdown-menu a {
  display: block;
  padding: 14px 14px;
  border-radius: 10px;
  color: #111827;
  font-size: 17px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(17, 24, 39, 0.08);
}

.menu-item:hover .dropdown-menu,
.menu-item:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 140px 34px 48px 64px;
}

.hero-lottie {
  position: absolute;
  right: 2%;
  top: 54%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
  width: 760px;
  height: 760px;
}

.hero-lottie-player {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-lottie-player.is-active {
  opacity: 1;
  transform: scale(1);
}

h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p {
  margin-top: 24px;
  color: var(--text-muted);
  max-width: 470px;
  line-height: 1.6;
  font-size: 20px;
}

.cta-group {
  margin-top: 34px;
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-light {
  background: #ffffff;
  color: var(--button-text);
}

.trusted-section {
  padding: 74px 18px 30px;
  color: #0b0f19;
}

.reviews-section {
  padding: 12px 18px 48px;
  background: #ffffff;
}

.trusted-kicker {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1f2937;
}

.trusted-logos {
  margin: 40px auto 0;
  max-width: 1220px;
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 22px 26px;
  align-items: center;
}

.logo-item {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}

.logo-item img {
  width: 100%;
  max-width: 188px;
  max-height: 78px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.98;
}

.logo-item.is-large img {
  max-width: 252px;
  max-height: 108px;
}

.hot-section {
  margin-top: 34px;
  background: #050607;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 46px 0 44px;
}

.hot-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.hot-badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 255, 148, 0.12);
  color: #00d67d;
  font-size: 14px;
  font-weight: 600;
}

.hot-title {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hot-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}

.hot-feature {
  border-radius: 24px;
  background: #03f590;
  padding: 16px;
  min-height: 430px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.feature-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: center;
}

.feature-media {
  height: 250px;
  border-radius: 18px;
  background: #ffffff;
  padding: 10px;
}

.feature-media-inner {
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(145deg, #f9fbff, #d9e2f1);
  color: #0f172a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: opacity 320ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-copy h3 {
  color: #05120b;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.feature-copy p {
  margin-top: 14px;
  color: rgba(4, 26, 16, 0.8);
  font-size: 20px;
  line-height: 1.35;
  max-width: none;
  transition: opacity 320ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-copy a {
  margin-top: 12px;
  display: inline-block;
  color: #032114;
  font-size: 28px;
  text-decoration: none;
  transition: opacity 320ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-copy h3 {
  transition: opacity 320ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hot-feature.is-changing .feature-media-inner,
.hot-feature.is-changing .feature-copy h3,
.hot-feature.is-changing .feature-copy p,
.hot-feature.is-changing .feature-copy a {
  opacity: 0;
  transform: translateY(10px);
}

.slide-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(2, 68, 43, 0.86);
  color: #e8fff3;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.slide-nav:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(2, 68, 43, 0.98);
  box-shadow: 0 8px 20px rgba(2, 68, 43, 0.3);
}

.slide-nav:active {
  transform: translateY(0) scale(0.98);
}

.newsletter-card {
  border-radius: 24px;
  background: radial-gradient(circle at 20% 0%, rgba(0, 255, 148, 0.1), transparent 40%), #0a1a14;
  padding: 30px 22px;
  min-height: 430px;
}

.newsletter-card h3 {
  color: #ffffff;
  font-size: clamp(34px, 2.8vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.newsletter-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input,
.newsletter-form button {
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 148, 0.3);
  padding: 0 18px;
  font-size: 18px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 200ms ease;
}

.newsletter-form input {
  background: #09140f;
  color: #d1d5db;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(0, 255, 148, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 255, 148, 0.16);
}

.newsletter-form button {
  background: transparent;
  color: #20df8f;
  cursor: pointer;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 255, 148, 0.68);
  box-shadow: 0 8px 20px rgba(0, 255, 148, 0.12);
}

.hot-dots {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  padding-left: 12px;
}

.hot-dots button {
  width: 38px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  border: 0;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.hot-dots button:hover {
  transform: scaleX(1.05);
  background: rgba(148, 163, 184, 0.45);
}

.hot-dots button.is-active {
  background: #00d67d;
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  color: #9ef7cd;
  font-size: 14px;
}

.services-grid-v2 {
  background: #ffffff;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 92px 0 52px;
}

.services-grid-v2-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "one two three"
    "one four three"
    "five six six";
  gap: 14px;
}

.sg-card {
  border-radius: 28px;
  padding: 26px 24px;
  min-height: 250px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background: var(--tone);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sg-one {
  grid-area: one;
  min-height: 520px;
}

.sg-two {
  grid-area: two;
}

.sg-three {
  grid-area: three;
  min-height: 520px;
}

.sg-four {
  grid-area: four;
}

.sg-five {
  grid-area: five;
}

.sg-six {
  grid-area: six;
}

.sg-badge {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(7, 38, 28, 0.88);
  color: #00d67d;
  font-size: 15px;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border: 1px solid rgba(0, 255, 148, 0.2);
  backdrop-filter: blur(6px);
}

.sg-card h3 {
  margin-top: 0;
  font-size: clamp(30px, 2.3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
}

.sg-card p {
  margin-top: 10px;
  max-width: 390px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.93);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.66);
}

.stacked-special {
  background: #ffffff;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-top: 56px;
  padding: 16px 0 90px;
}

.stacked-track {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.stacked-card {
  position: sticky;
  top: 74px;
  z-index: 1;
  min-height: 520px;
  border-radius: 28px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 44px rgba(2, 8, 14, 0.18);
  background: linear-gradient(120deg, #031012 0%, #072021 47%, #72ffd2 47%, #79ffd9 100%);
  display: grid;
  grid-template-columns: 1.04fr 1fr;
}

.stacked-card:nth-child(2) {
  z-index: 2;
  background: linear-gradient(120deg, #0a1519 0%, #112429 47%, #9ce4ff 47%, #8cc7ff 100%);
}

.stacked-card:nth-child(3) {
  z-index: 3;
  background: linear-gradient(120deg, #061114 0%, #102126 47%, #c4a6ff 47%, #8f8eff 100%);
}

.stacked-left {
  padding: 34px 30px 30px;
  color: #eef2f7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.stacked-chip {
  align-self: flex-start;
  display: inline-flex;
  height: 38px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 148, 0.34);
  background: rgba(2, 22, 18, 0.62);
  color: #0bf19a;
  font-size: 14px;
  margin-bottom: 12px;
}

.stacked-copy {
  margin-top: 0;
  color: #c7d2db;
  font-size: 20px;
  line-height: 1.35;
  max-width: 620px;
}

.stacked-left h3 {
  font-size: clamp(40px, 3.2vw, 62px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stacked-sub {
  margin-top: 0;
  color: #00de8a;
  font-size: clamp(22px, 1.7vw, 31px);
  line-height: 1.1;
}

.stacked-right {
  position: relative;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stacked-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.16;
}

.stacked-visual-card {
  position: relative;
  z-index: 1;
  width: min(92%, 420px);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 40px rgba(5, 20, 24, 0.24);
  color: #111827;
}

.stacked-visual-title {
  font-size: clamp(30px, 2.3vw, 40px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.stacked-choices {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.stacked-choices span {
  flex: 1;
  height: 50px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-strip {
  background: #ffffff;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 6px 0 64px;
}

.trust-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  border-radius: 18px;
  background: #0b1117;
  color: #ffffff;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item strong {
  display: block;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: #b6c1cc;
  font-size: clamp(14px, 1vw, 16px);
}

.faq-section {
  background: #ffffff;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 14px 0 70px;
}

.faq-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-inner h2 {
  color: #0b1117;
  font-size: clamp(42px, 3.6vw, 62px);
  letter-spacing: -0.02em;
}

.faq-lead {
  margin-top: 8px;
  color: #4b5563;
  font-size: clamp(16px, 1.2vw, 20px);
}

.faq-item {
  margin-top: 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dfe5ec;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: #0b1117;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

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

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1117;
  background: #eef2f7;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: #d8fce9;
  color: #085f3f;
}

.faq-item summary span {
  flex: 1;
}

.faq-item p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px 18px;
  border-top: 1px solid #eef2f7;
  background: #f9fbfd;
}

.final-cta {
  background: #ffffff;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 0 0 42px;
}

.blog-section {
  background: #ffffff;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 30px 0 90px;
}

.blog-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.blog-top h2 {
  color: #0b1117;
  font-size: clamp(42px, 4vw, 66px);
  letter-spacing: -0.02em;
}

.blog-view-btn {
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #0a2a21;
  color: #86efac;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

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

.blog-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e9edf3;
  padding: 12px;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.06);
}

.blog-thumb {
  height: 174px;
  border-radius: 14px;
  background: linear-gradient(145deg, #c4b5fd, #93c5fd 45%, #99f6e4);
}

.blog-tag {
  margin-top: 12px;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #0f766e;
  background: #ccfbf1;
}

.blog-card h3 {
  margin-top: 10px;
  color: #0b1117;
  font-size: clamp(23px, 1.8vw, 32px);
  line-height: 1.12;
  min-height: 80px;
}

.blog-meta {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.blog-meta a {
  color: #0b1117;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-bottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-dots {
  display: flex;
  gap: 8px;
}

.blog-dots span {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
}

.blog-dots .is-active {
  background: #86efac;
}

.blog-arrows {
  display: flex;
  gap: 8px;
}

.blog-arrows button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #4b5563;
}

.site-footer {
  background: #050b0d;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 24px 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 28px;
}

.footer-logo-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(140deg, #00ffa5, #10b981);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d1d5db;
  text-decoration: none;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.footer-links h4 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-links a {
  display: block;
  color: #b6c1cc;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 0 14px;
  color: #9ca3af;
  text-align: right;
  font-size: 14px;
}

.footer-wordmark {
  margin-top: -16px;
  color: #00ff94;
  font-size: clamp(160px, 24vw, 460px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.86;
  text-transform: lowercase;
  opacity: 0.94;
  padding: 0 14px 12px;
  user-select: none;
}

.final-cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px 24px;
  border-radius: 26px;
  background: linear-gradient(160deg, #071018 0%, #0a2226 45%, #0f3d37 100%);
  color: #ffffff;
}

.final-cta-inner h2 {
  font-size: clamp(40px, 3.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.final-cta-inner p {
  margin-top: 12px;
  max-width: 820px;
  font-size: clamp(17px, 1.3vw, 22px);
  color: #d3e5df;
}

.final-cta-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.cta-primary,
.cta-secondary {
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}

.cta-primary {
  background: #ffffff;
  color: #0b1117;
}

.cta-secondary {
  color: #dcfce7;
  border: 1px solid rgba(220, 252, 231, 0.35);
}

.sg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0.44;
  filter: grayscale(8%) contrast(0.95) saturate(0.9);
  transform: scale(1.06);
  transition: transform 500ms ease, opacity 350ms ease;
}

.sg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(1, 3, 6, 0.88) 0%, rgba(1, 3, 6, 0.74) 28%, rgba(1, 3, 6, 0.34) 54%, rgba(1, 3, 6, 0.08) 80%),
    linear-gradient(120deg, rgba(2, 5, 8, 0.54) 10%, rgba(2, 5, 8, 0.16) 64%);
}

.sg-card:hover::before {
  opacity: 0.52;
  transform: scale(1.1);
}

.sg-card:hover h3,
.sg-card:hover p {
  transform: translateY(-1px);
  transition: transform 220ms ease;
}

.sg-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.sg-card-featured {
  box-shadow: inset 0 0 0 1px rgba(118, 120, 255, 0.5), 0 20px 40px rgba(0, 0, 0, 0.28);
}

/* Imported 1:1-style services section from WEBMANCER2026 */
.services {
  padding: 84px 0;
  background: #060708;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 24px;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.65;
  filter: blur(0.8px) brightness(0.85) saturate(0.85);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.9) 55%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.9) 55%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 1) 100%);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: all 0.35s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.service-card:hover .service-card-image {
  opacity: 0.8;
  filter: blur(0.4px) brightness(0.95) saturate(1);
  transform: scale(1.03);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-featured {
  background: rgba(102, 126, 234, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
  position: relative;
}

.service-card-featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 20px 20px 0 0;
}

.service-card-featured .service-icon {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.service-card-subtitle {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  max-width: none;
}

.service-list-expanded {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.service-list-expanded.active {
  display: block;
  max-height: 2000px;
  opacity: 1;
  margin-top: 10px;
}

.service-expand-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 10px auto;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.service-expand-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.service-expand-arrow.active svg {
  transform: rotate(180deg);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-list li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #d1d5db;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
  transition: all 0.2s ease;
}

.service-list li strong {
  font-weight: 500;
  color: #fff;
}

.service-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9ca3af;
  opacity: 0.6;
}

.service-more-btn {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin-top: 18px;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid transparent;
}

.service-more-btn:hover {
  border-bottom-color: #fff;
  padding-right: 8px;
}

.quick-services {
  background: #060708;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  padding: 54px 0;
}

.quick-services-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.quick-card {
  position: relative;
  min-height: 410px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.quick-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 7, 8, 0.72), rgba(5, 7, 8, 0.92));
}

.quick-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.quick-card-content h3 {
  color: #ffffff;
  font-size: clamp(28px, 2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.quick-card-content p {
  margin-top: 10px;
  color: #d1d5db;
  font-size: 20px;
  line-height: 1.35;
}

.quick-card-content ul {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.quick-card-content li {
  color: #e5e7eb;
  font-size: 19px;
  position: relative;
  padding-left: 18px;
}

.quick-card-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.quick-card-content a {
  margin-top: auto;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

.quick-card-featured {
  border-color: rgba(90, 93, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(90, 93, 255, 0.5), 0 20px 50px rgba(0, 0, 0, 0.36);
}

.quick-card:hover {
  transform: translateY(-4px);
  transition: transform 240ms ease;
}

@media (max-width: 900px) {
  .page {
    padding: 18px;
  }

  .hero {
    min-height: calc(100vh - 66px);
    border-radius: 34px;
  }

  .menu {
    gap: 8px;
  }

  .menu-link {
    padding: 12px 14px;
    font-size: clamp(16px, 1.9vw, 20px);
  }

  .dropdown-menu {
    min-width: 230px;
  }

  .trusted-section {
    padding-top: 58px;
  }

  .reviews-section {
    padding: 4px 18px 36px;
  }

  .trusted-logos {
    margin-top: 30px;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 16px 16px;
  }

  .logo-item {
    min-height: 78px;
  }

  .logo-item img {
    max-height: 62px;
  }

  .logo-item.is-large img {
    max-height: 86px;
  }

  .hero-lottie {
    right: 0%;
    transform: translateY(-50%) scale(0.84);
    transform-origin: center;
  }

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

  .hot-feature {
    min-height: auto;
    grid-template-columns: auto 1fr;
  }

  .slide-nav.next {
    display: none;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-media {
    height: 220px;
  }

  .feature-copy h3 {
    font-size: clamp(26px, 3vw, 34px);
  }

  .feature-copy p {
    font-size: 18px;
  }

  .feature-copy a {
    font-size: 22px;
  }

  .hot-section {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .hot-inner {
    padding: 0 18px;
  }

  .services-grid-v2 {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    padding: 28px 0 36px;
  }

  .services-grid-v2-inner {
    padding: 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "one three"
      "two four"
      "five six";
    gap: 12px;
  }

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

  .sg-one,
  .sg-three {
    min-height: 380px;
  }

  .sg-card h3 {
    margin-top: 76px;
  }

  .services {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    padding: 42px 0;
  }

  .services-container {
    padding: 0 18px;
  }

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

  .service-card {
    min-height: 360px;
    padding: 26px;
  }

  .service-card-image {
    width: 56%;
  }

  .stacked-special {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
  }

  .stacked-track {
    padding: 0 18px;
  }

  .stacked-card {
    top: 58px;
    min-height: 470px;
    grid-template-columns: 1fr;
  }

  .stacked-right {
    min-height: 190px;
    padding-top: 0;
  }

  .stacked-copy {
    font-size: 17px;
  }

  .stacked-left h3 {
    font-size: clamp(34px, 4.5vw, 48px);
  }

  .stacked-sub {
    font-size: clamp(20px, 2.4vw, 28px);
  }

  .trust-strip,
  .faq-section,
  .final-cta {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
  }

  .trust-strip-inner {
    padding: 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-inner {
    padding: 0 18px;
  }

  .final-cta-inner {
    margin: 0 18px;
    padding: 34px 22px;
  }

  .blog-section {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    padding: 22px 0 62px;
  }

  .blog-inner {
    padding: 0 18px;
  }

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

  .blog-card h3 {
    min-height: auto;
  }

  .site-footer {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
  }

  .footer-inner {
    padding: 18px 18px 0;
  }

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

  .footer-wordmark {
    font-size: clamp(140px, 24vw, 280px);
  }
}

@media (max-width: 700px) {
  .page {
    min-height: auto;
    padding: 14px;
  }

  .hero {
    min-height: calc(100dvh - 28px);
    border-radius: 32px;
  }

  .nav {
    padding: 18px 20px;
    align-items: center;
  }

  .logo-wrap {
    gap: 8px;
  }

  .logo-dot {
    width: 46px;
    height: 46px;
  }

  .logo-text {
    font-size: 52px;
    font-size: clamp(28px, 8vw, 44px);
    font-weight: 700;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav nav {
    display: none;
  }

  .menu {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .hero-content {
    max-width: none;
    padding: 66px 24px 48px;
    text-align: center;
  }

  .hero-lottie {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 60px);
    line-height: 0.98;
  }

  p {
    margin-top: 28px;
    max-width: none;
    font-size: clamp(18px, 4.7vw, 28px);
    line-height: 1.35;
    color: #b8b8b8;
  }

  .cta-group {
    margin-top: 30px;
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    height: 62px;
    font-size: 32px;
    font-size: clamp(24px, 4.8vw, 34px);
  }

  .trusted-section {
    padding: 44px 8px 10px;
  }

  .reviews-section {
    padding: 2px 8px 24px;
  }

  .trusted-kicker {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .trusted-logos {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 12px;
  }

  .logo-item {
    min-height: 70px;
    padding: 8px 8px;
  }

  .logo-item img {
    max-height: 56px;
  }

  .logo-item.is-large img {
    max-height: 76px;
  }

  .hot-section {
    margin-top: 24px;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding: 20px 0 18px;
  }

  .hot-inner {
    padding: 0 14px;
  }

  .hot-badge {
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hot-title {
    margin-top: 12px;
    font-size: clamp(32px, 9vw, 46px);
  }

  .hot-grid {
    margin-top: 14px;
    gap: 10px;
  }

  .hot-feature {
    border-radius: 18px;
    padding: 10px;
    gap: 8px;
  }

  .slide-nav {
    width: 32px;
    height: 32px;
    font-size: 21px;
  }

  .feature-media {
    height: 170px;
    border-radius: 14px;
  }

  .feature-copy h3 {
    font-size: clamp(25px, 6.6vw, 34px);
  }

  .feature-copy p {
    margin-top: 10px;
    font-size: 16px;
  }

  .feature-copy a {
    font-size: 18px;
  }

  .newsletter-card {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .newsletter-card h3 {
    font-size: clamp(26px, 8vw, 38px);
  }

  .newsletter-form {
    margin-top: 18px;
    gap: 8px;
  }

  .newsletter-form input,
  .newsletter-form button {
    height: 48px;
    font-size: 15px;
  }

  .hot-dots {
    margin-top: 10px;
    padding-left: 4px;
  }

  .hot-dots button {
    width: 24px;
    height: 5px;
  }

  .services-grid-v2 {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding: 22px 0 28px;
  }

  .services-grid-v2-inner {
    padding: 0 14px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "one"
      "two"
      "three"
      "four"
      "five"
      "six";
    gap: 10px;
  }

  .sg-card {
    border-radius: 20px;
    padding: 18px;
    min-height: 245px;
  }

  .sg-badge {
    height: 34px;
    padding: 0 14px;
    font-size: 15px;
  }

  .sg-card h3 {
    margin-top: 46px;
    font-size: clamp(30px, 8vw, 42px);
  }

  .sg-card p {
    margin-top: 10px;
    font-size: 15px;
  }

  .services {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding: 28px 0;
  }

  .services-container {
    padding: 0 14px;
  }

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

  .service-card {
    min-height: 330px;
    border-radius: 16px;
    padding: 22px 18px;
  }

  .service-card-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .service-card-subtitle {
    font-size: 15px;
  }

  .service-list li {
    font-size: 14px;
  }

  .service-more-btn {
    font-size: 17px;
  }

  .stacked-special {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding: 10px 0 44px;
  }

  .stacked-track {
    padding: 0 14px;
  }

  .stacked-card {
    top: 18px;
    min-height: 440px;
    border-radius: 18px;
    margin-bottom: 12px;
  }

  .stacked-left {
    padding: 18px 16px 12px;
    gap: 8px;
  }

  .stacked-chip {
    height: 32px;
    font-size: 12px;
    margin-bottom: 8px;
  }

  .stacked-copy {
    font-size: 14px;
    line-height: 1.35;
  }

  .stacked-left h3 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .stacked-sub {
    font-size: clamp(18px, 5vw, 26px);
  }

  .stacked-right {
    min-height: 150px;
    padding: 10px 16px 18px;
  }

  .stacked-visual-card {
    border-radius: 16px;
    padding: 12px;
  }

  .stacked-visual-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .stacked-choices span {
    height: 40px;
    font-size: 15px;
  }

  .trust-strip,
  .faq-section,
  .final-cta {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .trust-strip {
    padding: 8px 0 38px;
  }

  .trust-strip-inner {
    padding: 0 14px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-item {
    border-radius: 14px;
    padding: 14px 12px;
  }

  .faq-section {
    padding: 8px 0 40px;
  }

  .faq-inner {
    padding: 0 14px;
  }

  .faq-item {
    margin-top: 8px;
    padding: 12px;
    border-radius: 12px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .faq-item p {
    font-size: 14px;
  }

  .final-cta {
    padding-bottom: 46px;
  }

  .final-cta-inner {
    margin: 0 14px;
    border-radius: 16px;
    padding: 22px 14px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .blog-section {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding: 14px 0 42px;
  }

  .blog-inner {
    padding: 0 14px;
  }

  .blog-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-top h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .blog-view-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .blog-thumb {
    height: 150px;
  }

  .blog-card h3 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .blog-meta {
    margin-top: 14px;
    font-size: 12px;
  }

  .blog-dots span {
    width: 24px;
    height: 5px;
  }

  .site-footer {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .footer-inner {
    padding: 16px 14px 0;
  }

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

  .footer-brand {
    font-size: 22px;
  }

  .footer-logo-dot {
    width: 24px;
    height: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
  }

  .footer-links h4 {
    font-size: 17px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-bottom {
    text-align: left;
    font-size: 12px;
  }

  .footer-wordmark {
    font-size: clamp(88px, 23vw, 140px);
    margin-top: 0;
    padding: 4px 8px 10px;
  }
}
