:root {
  --green: #0f7b47;
  --green-bright: #18b961;
  --green-dark: #063c24;
  --green-deep: #071d15;
  --navy: #10243d;
  --text: #17223b;
  --muted: #667085;
  --cream: #f6fbf7;
  --light: #eff8f2;
  --white: #ffffff;
  --border: rgba(16, 36, 61, 0.12);
  --shadow: 0 18px 48px rgba(16, 36, 61, 0.11);
  --shadow-soft: 0 10px 28px rgba(16, 36, 61, 0.08);
  --container: 1180px;
  --header-height: 78px;
  --font: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--green-deep);
}

body.menu-open {
  overflow: hidden;
}

main {
  background: #fff;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 105;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 36, 61, 0.08);
}

.nav-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.site-brand img {
  width: auto;
  height: 42px;
  max-width: 240px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a {
  color: #1d2635;
  font-weight: 850;
  font-size: 0.98rem;
  transition: 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.phone-pill {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(15, 123, 71, 0.16);
  background: #f8fcfa;
  color: #5d6878;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.2s ease;
  cursor: pointer;
}

.phone-pill strong {
  color: var(--green);
  font-weight: 950;
  font-size: 1.05rem;
}

.phone-pill:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 36, 61, 0.08);
}

.copy-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 123, 71, 0.18);
  background: #f7fcf9;
  color: #5d6878;
  font-weight: 850;
  white-space: nowrap;
  transition: 0.2s ease;
}

.copy-btn span {
  color: var(--green);
  font-weight: 950;
  font-size: 1.02rem;
}

.copy-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 14px 30px rgba(15, 123, 71, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15, 123, 71, 0.34);
}

.nav-call-btn {
  min-width: 122px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 36, 61, 0.12);
  border-radius: 14px;
  background: #fff;
  place-content: center;
  gap: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 12px;
  right: 12px;
  z-index: 104;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 36, 61, 0.1);
  flex-direction: column;
  gap: 10px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a:not(.btn) {
  padding: 13px 14px;
  border-radius: 14px;
  background: #f4faf6;
  font-weight: 850;
}

.mobile-copy,
.mobile-call {
  width: 100%;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #0b281a;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(1, 20, 13, 0.86) 0%,
      rgba(3, 32, 19, 0.72) 34%,
      rgba(3, 32, 19, 0.34) 62%,
      rgba(3, 32, 19, 0.06) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(100%, 720px);
  color: #fff;
  padding: 30px 0 170px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-content h1 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(3.25rem, 5.35vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-shadow:
    0 4px 24px rgba(0, 0, 0, 0.34),
    0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.14rem;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

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

.hero-actions .btn-primary {
  min-width: 208px;
}

.btn-outline-light {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

/* OVERLAP TRUST CARD */

.hero-trust-section {
  position: relative;
  z-index: 5;
  margin-top: -120px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent 88px,
    #ffffff 88px,
    #ffffff 100%
  );
}

.hero-trust-wrap {
  position: relative;
  margin-top: -14px;
  margin-bottom: -72px;
  pointer-events: none;
}

.hero-trust-card {
  width: min(100%, 960px);
  margin: 0 auto;
  min-height: 166px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(16, 36, 61, 0.16);
  border: 1px solid rgba(16, 36, 61, 0.1);
  pointer-events: auto;
}

.trust-item {
  text-align: center;
  padding: 6px 18px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eaf8f0;
  color: var(--green);
  font-size: 1.35rem;
}

.trust-item h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.08rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.9rem;
}

.trust-divider {
  width: 1px;
  height: 86px;
  background: rgba(15, 123, 71, 0.2);
}

/* SECTIONS */

.section {
  padding: 96px 0;
}

.light-section {
  background: var(--light);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 950;
}

.section-head {
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
}

.section-head h2,
.about-copy h2,
.why-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-head p,
.about-copy p,
.why-copy p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ABOUT */

.about-section {
  padding-top: 172px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 78px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 420px;
}

.image-main {
  position: absolute;
  inset: 0 70px 46px 0;
  border-radius: 32px;
  background:
    linear-gradient(rgba(3, 32, 19, 0.28), rgba(3, 32, 19, 0.28)),
    url("../assets/support-image.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.image-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 270px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-float span {
  display: block;
  color: var(--green);
  font-weight: 950;
  margin-bottom: 6px;
}

.image-float strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 8px;
  white-space: nowrap;
}

.image-float p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.check-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4faf6;
  border: 1px solid rgba(15, 123, 71, 0.1);
  color: #26354a;
  font-weight: 850;
}

.section-call {
  min-width: 260px;
}

/* SERVICES */

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

.service-card,
.process-card,
.faq-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 36, 61, 0.08);
  transition: 0.2s ease;
}

.service-card:hover,
.process-card:hover,
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eaf8f0;
  font-size: 1.6rem;
}

.service-card h3,
.process-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.service-card p,
.process-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 950;
}

/* WHY */

.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-copy p {
  margin: 0;
}

.why-card {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0b3824, #0f7b47);
  color: #fff;
  box-shadow: 0 22px 52px rgba(15, 123, 71, 0.24);
}

.why-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.why-row:last-child {
  border-bottom: 0;
}

.why-row span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 950;
}

.why-row h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.why-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* PROCESS */

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

.process-number {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

/* CTA BAND */

.cta-band {
  padding: 74px 0;
  background:
    linear-gradient(rgba(3, 32, 19, 0.82), rgba(3, 32, 19, 0.82)),
    url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center right;
  color: #fff;
  overflow: hidden;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #b9f2cf;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 950;
  font-size: 0.78rem;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.cta-band-btn {
  min-width: 300px;
  white-space: nowrap;
  gap: 6px;
}

.cta-band-btn span {
  letter-spacing: 0;
  white-space: nowrap;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-card {
  padding: 26px;
}

/* DISCLAIMER */

.disclaimer-section {
  padding: 0 0 88px;
  background: #fff;
}

.disclaimer-box {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(16, 36, 61, 0.1);
  border-left: 5px solid var(--green);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.disclaimer-box h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.3rem;
}

.disclaimer-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* FOOTER */

.site-footer {
  background: var(--green-deep);
  color: #fff;
  padding: 44px 0 118px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: auto;
  height: 36px;
  max-width: 270px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand-block p,
.footer-call p,
.footer-brand-block small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-brand-block p {
  margin: 0 0 22px;
  max-width: 390px;
}

.footer-links strong,
.footer-call strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-call a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-call a span {
  white-space: nowrap;
}

.footer-call p {
  margin: 12px 0 0;
}

/* FIXED CTA - DESKTOP BASE */

.fixed-call-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  width: auto;
  z-index: 999;
}

.fixed-call-cta a {
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 34px rgba(15, 123, 71, 0.34);
  font-weight: 950;
  white-space: nowrap;
}

.fixed-call-cta span {
  font-size: 0.92rem;
  line-height: 1;
  opacity: 0.96;
  white-space: nowrap;
}

.fixed-call-cta strong {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

/* RESPONSIVE: TABLET / SMALL LAPTOP */

@media (max-width: 1080px) {
  .nav-inner {
    grid-template-columns: 220px 1fr auto;
  }

  .site-brand img {
    height: 36px;
    max-width: 210px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .phone-pill {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-section,
  .hero-inner {
    min-height: 690px;
  }

  .hero-content {
    width: min(100%, 640px);
  }

  .hero-content h1 {
    font-size: clamp(3rem, 6vw, 4.6rem);
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

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

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

  .cta-band-btn {
    justify-self: start;
  }
}

/* MOBILE ONLY */

@media (max-width: 840px) {
  :root {
    --header-height: 64px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    border-bottom: 1px solid rgba(16, 36, 61, 0.08);
  }

  .nav-inner {
    min-height: var(--header-height);
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .site-brand {
    max-width: calc(100% - 54px);
  }

  .site-brand img {
    height: 29px;
    max-width: 188px;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .mobile-menu {
    top: var(--header-height);
    left: 12px;
    right: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .mobile-menu a:not(.btn) {
    padding: 12px 13px;
    border-radius: 13px;
    font-size: 0.94rem;
  }

  .mobile-copy,
  .mobile-call {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .hero-section,
  .hero-inner {
    min-height: 610px;
  }

  .hero-section::before {
    background-position: center right;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 22, 13, 0.78) 0%,
        rgba(2, 22, 13, 0.56) 46%,
        rgba(2, 22, 13, 0.78) 100%
      );
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-content {
    text-align: center;
    padding: 38px 0 120px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 9px 12px;
    margin-bottom: 15px;
  }

  .hero-content h1 {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    font-size: clamp(2.22rem, 10vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .hero-content p {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
  }

  .hero-actions .btn {
    width: min(100%, 306px);
    min-height: 46px;
    font-size: 0.92rem;
  }

  .hero-trust-section {
    margin-top: -62px;
    background: linear-gradient(
      to bottom,
      transparent 0,
      transparent 62px,
      #ffffff 62px,
      #ffffff 100%
    );
  }

  .hero-trust-wrap {
    margin-top: 0;
    margin-bottom: -42px;
  }

  .hero-trust-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 15px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(16, 36, 61, 0.14);
  }

  .trust-item {
    padding: 8px 2px;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    border-radius: 13px;
    font-size: 1.05rem;
  }

  .trust-item h3 {
    margin-bottom: 5px;
    font-size: 0.96rem;
  }

  .trust-item p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }

  .section {
    padding: 58px 0;
  }

  .about-section {
    padding-top: 102px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2,
  .about-copy h2,
  .why-copy h2 {
    font-size: 1.9rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .section-head p,
  .about-copy p,
  .why-copy p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-media {
    order: 2;
    overflow: visible;
  }

  .about-copy {
    order: 1;
  }

  .image-stack {
    min-height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 0;
  }

  .image-main {
    position: relative;
    inset: auto;
    width: 100%;
    height: 268px;
    border-radius: 22px;
    background-position: center;
  }

  .image-float {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -46px auto 0;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 34px rgba(16, 36, 61, 0.14);
  }

  .image-float span {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }

  .image-float strong {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }

  .image-float p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .check-list {
    gap: 10px;
    margin: 20px 0;
  }

  .check-list div {
    padding: 12px 13px;
    font-size: 0.86rem;
  }

  .service-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card,
  .process-card,
  .faq-card,
  .why-card {
    padding: 18px;
    border-radius: 19px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 1.25rem;
  }

  .service-card h3,
  .process-card h3,
  .faq-card h3 {
    font-size: 1.05rem;
  }

  .service-card p,
  .process-card p,
  .faq-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .why-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .why-row span {
    width: 38px;
    height: 38px;
  }

  .cta-band {
    padding: 48px 0;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cta-band h2 {
    font-size: 1.88rem;
  }

  .cta-band p {
    font-size: 0.92rem;
  }

  .cta-band-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    justify-self: stretch;
    font-size: 0.88rem;
  }

  .disclaimer-section {
    padding-bottom: 62px;
  }

  .disclaimer-box {
    padding: 18px;
    border-radius: 19px;
  }

  .disclaimer-box p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .site-footer {
    padding: 34px 0 108px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-logo {
    height: 28px;
    max-width: 210px;
  }

  .footer-brand-block p,
  .footer-call p,
  .footer-brand-block small {
    font-size: 0.86rem;
  }

  .fixed-call-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    width: auto;
    z-index: 999;
  }

  .fixed-call-cta a {
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    border-radius: 999px;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    text-align: center;
  }

  .fixed-call-cta span {
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
  }

  .fixed-call-cta strong {
    margin-top: 0 !important;
    font-size: 0.98rem;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .site-brand img {
    height: 24px;
    max-width: 160px;
  }

  .hero-content h1 {
    font-size: 2.15rem;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

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

  .image-main {
    height: 246px;
  }

  .image-float {
    width: calc(100% - 24px);
    margin-top: -42px;
    padding: 14px;
  }

  .fixed-call-cta a {
    min-height: 52px;
    padding: 0 14px;
    gap: 8px;
  }

  .fixed-call-cta span {
    font-size: 0.82rem;
  }

  .fixed-call-cta strong {
    font-size: 0.92rem;
  }
}