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

body {
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
}

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

.topbar {
  width: 100%;
  margin: 0 auto;
  background: #10260f;
}

.topbar-inner {
  width: 100%;
  max-width: 100%;
  padding: clamp(0.75rem, 2.5vw, 2rem) clamp(0.75rem, 2vw + 0.5rem, 10rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 2rem);
  row-gap: 0.75rem;
}

.topbar-logo {
  width: clamp(112px, 36vw, 240px);
  max-width: 100%;
  height: auto;
  display: block;
  flex: 0 1 auto;
}

.topbar-contact {
  text-align: right;
  color: #ffffff;
}

.topbar-cta {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.topbar-phone {
  display: inline-block;
  margin-top: 0.2rem;
  color: #ffffff;
  font-size: clamp(0.95rem, 2.2vw + 0.55rem, 2rem);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: right;
  min-width: 0;
  word-break: break-word;
}

@media (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .topbar-phone {
    text-align: center;
  }
}

.topbar-phone:visited {
  color: #ffffff;
}

.hero {
  background-image: url('/images/leftright.png');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 60dvh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 6rem);
  padding: clamp(1rem, 3vw, 2rem);
  overflow-x: clip;

  @media (max-width: 1189px) {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    min-height: auto;
    padding-inline: clamp(0.75rem, 4vw, 1.5rem);
  }
}

.hero-left {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;

  @media (max-width: 1189px) {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
}

.hero-left > img {
  width: min(500px, 100%);
  max-width: 100%;
  height: auto;
  display: block;

  @media (max-width: 1189px) {
    width: min(380px, 86vw);
    max-width: 86%;
  }

  @media (max-width: 480px) {
    width: min(320px, 82vw);
    max-width: 82%;
  }
}

.hero-right {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;

  @media (max-width: 1189px) {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
}

.hero-right-form {
  background-color: #ffffff;
  padding: clamp(1rem, 3vw, 1.25rem);
  border-radius: 1rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: min(600px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;

  @media (max-width: 1189px) {
    max-width: 100%;
  }
}

.hero-right-form h2 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
}

.lead-form-error {
  margin: 0 0 0.5rem;
  font-size: clamp(0.82rem, 0.35rem + 1vw, 0.9rem);
  font-weight: 600;
  color: #b42318;
}

.lead-form-success {
  text-align: center;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(0.75rem, 3vw, 1.25rem);
  border-radius: 12px;
  background: linear-gradient(
    165deg,
    rgba(74, 172, 0, 0.12) 0%,
    rgba(16, 38, 15, 0.06) 55%,
    #ffffff 100%
  );
  border: 1px solid rgba(16, 38, 15, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-right-form.hero-right-form--success {
  border: 1px solid rgba(74, 172, 0, 0.45);
  box-shadow:
    0 0 0 1px rgba(74, 172, 0, 0.2),
    0 12px 36px rgba(16, 38, 15, 0.12);
}

.lead-form-success-icon {
  width: clamp(56px, 14vw, 72px);
  height: clamp(56px, 14vw, 72px);
  margin: 0 auto 1rem;
}

.lead-form-success-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(16, 38, 15, 0.2));
}

.lead-form-success-title {
  font-size: clamp(1.45rem, 1rem + 2.5vw, 2rem);
  font-weight: 700;
  color: #10260f;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.lead-form-success-lead {
  font-size: clamp(0.95rem, 0.35rem + 1.2vw, 1.08rem);
  line-height: 1.55;
  color: rgba(16, 38, 15, 0.88);
  margin: 0 auto 0.75rem;
  max-width: 28rem;
}

.lead-form-success-note {
  font-size: clamp(0.85rem, 0.3rem + 1vw, 0.95rem);
  line-height: 1.45;
  color: rgba(16, 38, 15, 0.72);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(16, 38, 15, 0.1);
}

.lead-req-title {
  font-weight: 700;
}

.lead-req-subtitle {
  margin-top: 0.25rem;
  font-weight: 600;
}

.dash-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
}

.dash-list li {
  position: relative;
  padding-left: 1rem;
}

.dash-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.lead-form {
  display: grid;
  gap: 0.75rem;
}

.lead-form-row {
  display: grid;
  gap: 0.75rem;
}

.lead-form-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 480px) {
  .lead-form-row--split {
    grid-template-columns: 1fr;
  }
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-label {
  font-size: clamp(0.82rem, 0.35rem + 1vw, 0.9rem);
  font-weight: 600;
  color: #0f1a10;
}

.field-input {
  width: 100%;
  height: 44px;
  padding: 0 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(16, 38, 15, 0.2);
  outline: none;
  background: #ffffff;
}

.field-input:focus {
  border-color: rgba(16, 38, 15, 0.55);
  box-shadow: 0 0 0 3px rgba(16, 38, 15, 0.14);
}

.lead-form-submit {
  width: 100%;
  margin-top: 0.25rem;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: #10260f;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.lead-form-submit:hover {
  filter: brightness(1.05);
}

.lead-form-legal {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(17, 17, 17, 0.76);
}

.lead-form-legal-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form-sms {
  margin-top: 0.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(17, 17, 17, 0.85);
}

.lead-form-smsBox {
  margin-top: 0.15rem;
  width: 16px;
  height: 16px;
}

.second-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(0.85rem, 4vw, 1.5rem);
  width: 100%;
  max-width: 100%;
}

.second-section-title {
  font-size: clamp(1.65rem, 1.1rem + 3.2vw, 4rem);
  line-height: 1.12;
  color: #10260f;
  text-align: center;
  font-weight: 600;
  text-wrap: balance;
}

.second-section-subtitle {
  font-size: clamp(0.95rem, 0.35rem + 1.6vw, 1.25rem);
  line-height: 1.5;
  color: #10260f;
  text-align: center;
  font-weight: 300;
  max-width: min(1000px, 100%);
  width: 100%;
  text-wrap: balance;
}

.second-section-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1rem, 4vw, 4rem);
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 2vw, 1rem);
  width: 100%;
  max-width: 1400px;
}

.second-section-card {
  position: relative;
  width: min(420px, 100%);
  min-height: clamp(340px, 52vw + 180px, 540px);
  border-radius: clamp(14px, 2.5vw, 18px);
  overflow: hidden;

  display: flex;
  align-items: flex-end;
}

.second-section-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.second-section-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.72) 35%,
    rgba(0, 0, 0, 0.22) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.second-section-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.25rem) clamp(1.1rem, 3vw, 1.4rem);
  color: #ffffff;
  display: grid;
  gap: clamp(0.4rem, 1.5vw, 0.55rem);
  width: 100%;
  min-height: 0;
}

.second-section-card-content h3 {
  font-size: clamp(1.35rem, 0.75rem + 2.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: #4aac00;
}

.second-section-card-content p {
  font-size: clamp(0.9rem, 0.35rem + 1.35vw, 1.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.third-section {
  margin-top: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  padding: clamp(1.75rem, 5vw, 3rem) clamp(0.85rem, 4vw, 1.5rem);
  background: #f2f4f5;
  width: 100%;
  max-width: 100%;
}

.third-section-title {
  font-size: clamp(1.65rem, 1.1rem + 3.2vw, 4rem);
  line-height: 1.12;
  color: #10260f;
  text-align: center;
  font-weight: 600;
  text-wrap: balance;
}

.third-section-grid {
  width: 100%;
  max-width: 1400px;
  margin-top: clamp(0.35rem, 1.5vw, 0.5rem);
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 4rem);
}

.third-section-card {
  position: relative;
  width: min(420px, 100%);
  border-radius: clamp(14px, 2.5vw, 18px);
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.25rem) clamp(1.05rem, 3vw, 1.35rem);
  background: #10260f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.third-section-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    500px 200px at 20% 0%,
    rgba(74, 172, 0, 0.24),
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
}

.third-section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.third-section-icon {
  position: relative;
  z-index: 1;
  width: clamp(44px, 11vw, 54px);
  height: clamp(44px, 11vw, 54px);
  border-radius: clamp(12px, 2vw, 14px);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.third-section-icon svg {
  width: clamp(20px, 5.5vw, 26px);
  height: clamp(20px, 5.5vw, 26px);
  fill: #ffffff;
}

.third-section-card-title {
  position: relative;
  z-index: 1;
  margin-top: clamp(0.65rem, 2vw, 0.85rem);
  font-size: clamp(1.08rem, 0.55rem + 1.65vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.third-section-card-text {
  position: relative;
  z-index: 1;
  margin-top: 0.45rem;
  font-size: clamp(0.88rem, 0.32rem + 1.25vw, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.video-block {
  background-color: #10260f;
  margin: clamp(2rem, 6vw, 12rem) 0;
  width: 100%;
  overflow-x: clip;
}

.video-block .video-cta {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding-inline: clamp(0.75rem, 3vw, 1.5rem);
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-width: 0;
}

.video-block .video-cta .tagline {
  position: relative;
  width: 50%;
  min-width: 0;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 12vw, 11rem);
}

.video-block .video-cta .tagline .leaf {
  position: absolute;
  width: clamp(50px, 12vw, 90px);
  left: 0;
}

.video-block .video-cta .tagline .bbb {
  width: clamp(72px, 18vw, 100px);
}

.video-block .video-cta .tagline p {
  font-size: clamp(1.1rem, 0.65rem + 1.5vw, 2rem);
  line-height: 1.35;
  position: absolute;
  width: min(500px, 100%);
  max-width: calc(100% - 2rem);
  left: clamp(1rem, 8vw, 8rem);
  text-align: left;
  top: clamp(3rem, 8vw, 5rem);
  color: #fff;
}

.video-block .video-cta .video-container {
  width: 50%;
  min-width: 0;
  position: relative;
  background: #fff;
}

.video-block .video-cta .video-container .video {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.video-block .video-cta .video-container .video .holder {
  position: relative;
  padding-bottom: 56.25%;
}

.video-block .video-cta .video-container .video .holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1480px) {
  .video-block {
    margin: clamp(1.5rem, 4vw, 2.5rem) auto;
    width: 100%;
  }

  .video-block .video-cta {
    display: block;
    width: 100%;
  }

  .video-block .video-cta .tagline {
    width: 100%;
    padding: clamp(1rem, 3vw, 1.5rem) 0 clamp(1.25rem, 4vw, 2rem);
    margin: 0 auto;
    text-align: center;
  }

  .video-block .video-cta .tagline .leaf {
    width: clamp(44px, 12vw, 50px);
    position: relative;
    left: auto;
  }

  .video-block .video-cta .tagline p {
    font-size: clamp(1.05rem, 0.45rem + 2vw, 1.35rem);
    position: relative;
    margin: 0 auto;
    width: min(36rem, 92%);
    max-width: 100%;
    left: auto !important;
    top: auto !important;
    text-align: center;
  }

  .video-block .video-cta .video-container {
    width: 100%;
  }

  .video-block .video-cta .video-container .video {
    position: relative;
    top: auto;
    width: min(900px, 100%);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    font-size: 0;
    margin: 0 auto;
    padding: clamp(1rem, 4vw, 2rem) 0;
  }
}

@media (max-width: 960px) {
  .video-block {
    overflow: hidden;
  }

  .video-block .video-cta .video-container {
    background-color: transparent;
  }

  .video-block .video-cta .video-container .video {
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(0.65rem, 3.5vw, 1.25rem) clamp(1rem, 4vw, 1.5rem);
    margin: 0 auto;
    box-sizing: border-box;
  }

  .video-block .video-cta .video-container .video .holder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }

  .video-block .video-cta .video-container .video .holder iframe {
    display: block;
    max-width: 100%;
  }
}

.fourth-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  padding: clamp(1.25rem, 4vw, 2rem) clamp(0.85rem, 4vw, 1.5rem);
  width: 100%;
  max-width: 100%;
}

.fourth-section-title {
  font-size: clamp(1.65rem, 1.1rem + 3.2vw, 4rem);
  line-height: 1.12;
  color: #10260f;
  text-align: center;
  font-weight: 600;
  text-wrap: balance;
}

.carousel {
  width: 100%;
  max-width: 1200px;
  display: grid;
  gap: clamp(0.65rem, 2vw, 1rem);
  margin-top: clamp(0.35rem, 2vw, 0.75rem);
}

.carousel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-top: 0.25rem;
}

.carousel-count {
  font-weight: 700;
  font-size: clamp(0.88rem, 0.4rem + 1.1vw, 1rem);
  color: rgba(16, 38, 15, 0.75);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(16, 38, 15, 0.25);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 28px;
  background: #10260f;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  height: clamp(34px, 9vw, 38px);
  padding: 0 clamp(0.6rem, 2.5vw, 0.9rem);
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 15, 0.25);
  background: #ffffff;
  color: #10260f;
  font-weight: 700;
  font-size: clamp(0.8rem, 0.45rem + 1vw, 0.95rem);
  cursor: pointer;
}

.carousel-btn:hover {
  filter: brightness(0.98);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: clamp(14px, 2.5vw, 18px);
  border: 1px solid rgba(16, 38, 15, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(16, 38, 15, 0.08);
}

.carousel-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: clamp(0.75rem, 3vw, 1.25rem);
  min-width: 0;
}

.carousel-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 3vw, 1.25rem);
  align-items: center;
  min-width: 0;
}

.carousel-img {
  width: 100%;
  height: clamp(200px, 42vw, 360px);
  object-fit: cover;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.carousel-text h3 {
  font-size: clamp(1.35rem, 0.65rem + 2.2vw, 2.2rem);
  line-height: 1.12;
  color: #4aac00;
}

.carousel-text p {
  margin-top: clamp(0.5rem, 2vw, 0.75rem);
  font-size: clamp(0.92rem, 0.35rem + 1.2vw, 1.1rem);
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.78);
}

@media (max-width: 980px) {
  .carousel-topbar {
    flex-wrap: wrap;
  }

  .carousel-slide-inner {
    grid-template-columns: 1fr;
  }

  .carousel-img {
    height: clamp(200px, 52vw, 300px);
  }
}

.fifth-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  padding: clamp(1.25rem, 4vw, 2rem) clamp(0.85rem, 4vw, 1.5rem);
  background: #f2f4f5;
  width: 100%;
  max-width: 100%;
}

.fifth-section-title {
  font-size: clamp(1.65rem, 1.1rem + 3.2vw, 4rem);
  line-height: 1.12;
  color: #10260f;
  text-align: center;
  font-weight: 600;
  text-wrap: balance;
}

.testimonials {
  width: 100%;
  max-width: 1200px;
  margin-top: clamp(0.35rem, 2vw, 0.5rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 3vw, 1.25rem);

  @media (max-width: 980px) {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(16, 38, 15, 0.12);
  border-radius: clamp(14px, 2.5vw, 18px);
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1rem, 3vw, 1.35rem) clamp(1.1rem, 3vw, 1.5rem);
  box-shadow: 0 14px 42px rgba(16, 38, 15, 0.08);
  display: grid;
  gap: clamp(0.75rem, 2vw, 1rem);
  min-width: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 0.9rem);
}

.testimonial-avatar {
  width: clamp(48px, 12vw, 56px);
  height: clamp(48px, 12vw, 56px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: #ffffff;
  background: linear-gradient(135deg, #4aac00, #10260f);
  box-shadow: 0 12px 26px rgba(16, 38, 15, 0.2);
  flex: 0 0 auto;
}

.testimonial-nameRow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.testimonial-name {
  font-size: clamp(1.05rem, 0.5rem + 1.4vw, 1.2rem);
  font-weight: 800;
  color: #10260f;
}

.testimonial-badge {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: clamp(0.7rem, 0.45rem + 0.85vw, 0.8rem);
  font-weight: 700;
  color: #10260f;
  background: rgba(74, 172, 0, 0.12);
  border: 1px solid rgba(74, 172, 0, 0.22);
}

.testimonial-text {
  font-size: clamp(0.9rem, 0.35rem + 1.15vw, 1.05rem);
  line-height: 1.62;
  color: rgba(17, 17, 17, 0.78);
}

.site-footer {
  background: #10260f;
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(0.85rem, 4vw, 1.25rem);
}

.site-footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: start;

  @media (max-width: 900px) {
    grid-template-columns: 1fr;
  }
}

.site-footer-logo {
  width: clamp(160px, 42vw, 220px);
  max-width: 100%;
  height: auto;
  display: block;
}

.site-footer-content {
  display: grid;
  gap: clamp(0.65rem, 2vw, 0.85rem);
  min-width: 0;
}

.site-footer-terms {
  font-weight: 800;
  color: #ffffff;
  font-size: clamp(0.95rem, 0.4rem + 1.1vw, 1.05rem);
}

.site-footer-text,
.site-footer-note,
.site-footer-address {
  line-height: 1.55;
  font-size: clamp(0.8rem, 0.32rem + 1.05vw, 0.95rem);
}

.site-footer-note {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer-address {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-link:visited {
  color: #ffffff;
}