@charset "UTF-8";
:root {
  --primary: #34a8eb;
  --accent: #1ae684;
  --tertiary: #7adbca;
  --black: #2e2e2e;
  --white: #f8f6f8;
  --body-font: sans-serif;
}

.body-font {
  font-family: var(--body-font);
}

.primary {
  color: var(--primary);
}

textarea {
  font-family: var(--body-font);
}

.primary {
  color: var(--primary);
}

.accent {
  color: var(--accent);
}

.tertiary {
  color: var(--tertiary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--body-font);
  margin: 1rem 0;
  color: #000;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

h1 .primary {
  color: var(--primary);
  font-weight: 700;
}

h1 small {
  font-size: 1.8rem;
  display: block;
  margin-top: 1rem;
  color: rgb(162.1360946746, 229.8639053254, 217.9940828402);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/*h2 {
  font-size: 3rem;

  @include mobile {
    font-size: 2.1rem;
  }
}

.h2 {
  font-size: 3rem !important;

  @include mobile {
    font-size: 2.1rem !important;
  }
}

h3 {
  font-size: 2.625rem;

  @include mobile {
    font-size: 1.8375rem;
  }
}

.h3 {
  font-size: 2.625rem !important;

  @include mobile {
    font-size: 1.8375rem !important;
  }
}

h4 {
  font-size: 2rem;

  @include mobile {
    font-size: 1.4rem;
  }
}

.h4 {
  font-size: 2rem !important;

  @include mobile {
    font-size: 1.4rem !important;
  }
}

h5 {
  font-size: 1.5rem;

  @include mobile {
    font-size: 1.05rem;
  }
}

.h5 {
  font-size: 1.5rem !important;

  @include mobile {
    font-size: 1.05rem !important;
  }
}

h6 {
  font-size: 1.25rem;

  @include mobile {
    font-size: 1rem;
  }
}

.h6 {
  font-size: 1.25rem !important;

  @include mobile {
    font-size: 1rem !important;
  }
}*/
a {
  color: var(--primary);
  font-family: var(--body-font);
  text-decoration: none;
  transition: all 100ms linear;
}

p {
  font-size: 1rem;
  margin: 1rem 0;
  padding: 0;
}
p.small {
  font-size: 0.875rem;
  margin: 0;
}

li {
  margin: 0.75rem 0;
  list-style-type: none;
}

blockquote span.big {
  font-size: 2.5rem;
  color: #000;
}
blockquote {
  font-size: 1.2rem;
}

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

.text-14 {
  font-size: 14px;
}

.text-12 {
  font-size: 12px;
}

:root {
  --primary: #34a8eb;
  --accent: #1ae684;
  --tertiary: #7adbca;
  --black: #2e2e2e;
  --white: #f8f6f8;
  --body-font: sans-serif;
}

.body-font {
  font-family: var(--body-font);
}

.primary {
  color: var(--primary);
}

textarea {
  font-family: var(--body-font);
}

.primary {
  color: var(--primary);
}

.accent {
  color: var(--accent);
}

.tertiary {
  color: var(--tertiary);
}

body,
html,
main {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
}

html {
  margin-top: -2rem;
}

hr {
  height: 0;
  border: none;
  border-bottom: 1px solid var(--primary);
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

iframe {
  width: 100%;
  border: none;
  border-radius: 0.5rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  transition: all 100ms linear;
  cursor: pointer;
  padding: 0.75rem 1rem !important;
  border-radius: 2rem;
  font-weight: 700;
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.button.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.button svg {
  height: 1.25rem;
  width: 1.25rem;
  vertical-align: middle;
}
.button .front-arrow svg {
  rotate: 180deg;
}
.button.outlined {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}
.button.outlined:hover {
  background-color: #1ae684 !important;
}
.button.ghost {
  border: transparent;
  background-color: transparent;
  color: #000;
}
.button.ghost:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.button.subtle {
  border: transparent;
  background-color: #7adbca;
  color: #000;
}
.button.subtle:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.button.filled:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.check-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background-color: #7adbca;
  border-radius: 8px;
}
.check-chip p {
  color: #000;
}

input[type=radio]:checked {
  accent-color: black;
}

input[type=checkbox]:checked {
  accent-color: #16a34a;
}

.toggle-btn .toggle-container {
  width: 40px;
  height: 21px;
  background-color: #7adbca;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-btn .toggle-circle {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}
.toggle-btn input[type=checkbox]:checked + .toggle-container {
  background-color: #34a8eb;
}
.toggle-btn input[type=checkbox]:checked + .toggle-container .toggle-circle {
  transform: translateX(20px);
}
.toggle-btn input[type=checkbox] {
  display: none;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 1rem 0;
}

.grid5 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin: 1rem 0;
}

.grid4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 1rem 0;
}

.grid3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 1rem 0;
}

.grid2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin: 1rem 0;
}

.grid1 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin: 1rem 0;
}

@media screen and (max-width: 1100px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media screen and (min-width: 701px) and (max-width: 1100px) {
  .grid3,
  .grid4,
  .grid5 {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .grid,
  .grid2,
  .grid3,
  .grid4,
  .grid5 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.no-wrap {
  flex-wrap: nowrap;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

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

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

@media screen and (max-width: 700px) {
  .flex {
    flex-direction: column;
  }
  .flex.mbl-row {
    flex-direction: row;
  }
  .justify-content {
    justify-content: center;
  }
  .align-items {
    align-items: stretch;
  }
}
header .topBanner {
  position: sticky;
  top: 0;
  background-color: #1ae684;
  height: 3rem;
  margin-bottom: 2rem;
}
header .topBanner .container {
  margin: 0 3.75rem;
  padding: 2px 0px;
}
header .topBanner .container ul {
  margin: 0;
  padding: 0;
}
header .topBanner .container .topBanner-content {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  gap: 2rem;
}
@media screen and (max-width: 1100px) {
  header .topBanner .container .topBanner-content {
    gap: 1rem;
  }
}
header .topBanner .container .topBanner-content li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .topBanner .container .topBanner-content li a,
header .topBanner .container .topBanner-content li p {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
header .topBanner .container img {
  margin: 0;
  padding: 0;
  height: 20px;
  width: 20px;
  fill: #000;
  border-radius: 0;
}
@media screen and (max-width: 1100px) {
  header .topBanner .container {
    margin: 0 2rem;
  }
}
@media screen and (max-width: 1100px) {
  header .topBanner {
    height: auto;
    padding: 0.5rem 0;
  }
}
header .navigation {
  padding: 0.5rem 0;
  position: relative;
  gap: 0;
}
header .navigation .mobile-menu {
  display: none;
}
header .navigation .mobile-menu svg {
  fill: #000;
}
@media screen and (max-width: 1100px) {
  header .navigation .mobile-menu {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    cursor: pointer;
  }
}
header .navigation .nav-links {
  position: relative;
  gap: 2rem;
}
@media screen and (max-width: 1230px) {
  header .navigation .nav-links {
    gap: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  header .navigation .nav-links {
    display: none;
  }
  header .navigation .nav-links.active {
    padding: 4rem 2rem;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1ae684;
  }
  header .navigation .nav-links.active li {
    padding: 5px;
  }
  header .navigation .nav-links.active li:hover .dropdown-menu, header .navigation .nav-links.active li.active .dropdown-menu, header .navigation .nav-links.active li:focus .dropdown-menu {
    display: block;
  }
  header .navigation .nav-links.active .dropdown-menu {
    position: relative;
    display: block;
    background-color: #1ae684;
    box-shadow: none;
    padding: 0;
    transform: initial;
    transition: none;
    margin: 0;
    padding: 0.25rem 0.75rem;
    display: none;
  }
  header .navigation .nav-links.active .dropdown-menu li {
    padding: 0;
  }
  header .navigation .nav-links.active .dropdown-menu li:hover .dropdown-menu {
    display: block;
  }
  header .navigation .nav-links.active .dropdown-menu li a {
    padding: 0.25rem 0;
  }
}
header .navigation .nav-links a {
  color: #000;
  text-decoration: none;
}
header .navigation .nav-links a.active {
  font-weight: 700;
}
header .navigation .nav-links li {
  position: relative;
  cursor: pointer;
}
header .navigation .nav-links li:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .navigation .nav-links .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  background: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  min-width: 150px;
  border-radius: 5px;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 1100px) {
  header .navigation .nav-links .dropdown-menu {
    top: 10%;
  }
}
header .navigation .nav-links li:hover .dropdown-menu,
header .navigation .nav-links .dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .navigation .nav-links .dropdown-menu a {
  display: block;
  padding: 0.5rem 0;
  color: #000;
  text-decoration: none;
}
header .navigation .nav-links .cta-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1rem;
  flex-wrap: wrap;
}

footer {
  background: var(--tertiary);
}
footer section {
  min-height: 0vh;
}
footer svg {
  padding: 1rem;
  margin-left: 20px;
}
@media screen and (max-width: 700px) {
  footer svg {
    padding: 0;
    margin: 0;
  }
}
footer h2 {
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
}
footer h2,
footer li,
footer p,
footer a {
  color: #fff;
  font-size: 14px;
}
footer ul {
  padding: 0;
}
@media screen and (max-width: 700px) {
  footer ul {
    padding: 0;
    margin: 0;
  }
}
footer .footer-bottom p {
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 2rem;
  font-size: 14px;
}

.demo .step-indicator {
  display: flex;
  gap: 1rem;
  margin-bottom: 20px;
  justify-content: center;
}
.demo .step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.demo .step.active {
  background-color: #34a8eb;
}
.demo h1 {
  padding-top: 3rem;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.demo p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.demo .grid4 {
  gap: 1rem;
  padding-bottom: 3rem;
}
.demo .grid4 button {
  background-color: #1ae684;
  color: #000;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.demo .grid4 button:hover {
  background-color: #b1d976;
}
.demo .form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.demo .form input {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  margin: 10px auto;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.demo .form input::placeholder {
  color: #34a8eb;
  font-size: 14px;
}
.demo .form button {
  background-color: #34a8eb;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 20px;
}
.demo .form button:hover {
  background-color: #9b91db;
}
.demo .form small {
  font-size: 0.75rem;
  color: #555;
  margin-top: 20px;
  display: block;
}
.demo .alert {
  background-color: red;
  color: #000;
  padding: 12px;
  border-radius: 8px;
  margin: 20px 0;
  max-width: 600px;
}
.demo .alert p {
  text-align: left;
  margin: 1rem 0;
}
.demo .hidden {
  display: none;
}

.button {
  display: inline-block;
  text-decoration: none;
  transition: all 100ms linear;
  cursor: pointer;
  padding: 0.75rem 1rem !important;
  border-radius: 2rem;
  font-weight: 700;
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.button.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.button svg {
  height: 1.25rem;
  width: 1.25rem;
  vertical-align: middle;
}
.button .front-arrow svg {
  rotate: 180deg;
}
.button.outlined {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}
.button.outlined:hover {
  background-color: #1ae684 !important;
}
.button.ghost {
  border: transparent;
  background-color: transparent;
  color: #000;
}
.button.ghost:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.button.subtle {
  border: transparent;
  background-color: #7adbca;
  color: #000;
}
.button.subtle:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.button.filled:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.check-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background-color: #7adbca;
  border-radius: 8px;
}
.check-chip p {
  color: #000;
}

input[type=radio]:checked {
  accent-color: black;
}

input[type=checkbox]:checked {
  accent-color: #16a34a;
}

.toggle-btn .toggle-container {
  width: 40px;
  height: 21px;
  background-color: #7adbca;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-btn .toggle-circle {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}
.toggle-btn input[type=checkbox]:checked + .toggle-container {
  background-color: #34a8eb;
}
.toggle-btn input[type=checkbox]:checked + .toggle-container .toggle-circle {
  transform: translateX(20px);
}
.toggle-btn input[type=checkbox] {
  display: none;
}

* {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.shadow {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30rem;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  display: none;
}
.shadow.visible {
  display: block;
}
.shadow {
  z-index: 10000;
}

.outer {
  position: fixed;
  top: 35vh;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.outer.visible {
  display: flex;
}
.outer {
  z-index: 10001;
}

.banner {
  padding: 0 2rem 1rem;
  background-color: #fff;
  border-radius: 2rem;
  display: none;
  box-shadow: var(--box-shadow);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  max-width: 500px;
  margin: 2rem;
  z-index: 10002;
}
.banner.visible {
  display: flex;
}
.banner p {
  font-size: 1.1rem;
  text-align: center;
}

.row {
  width: 100%;
}

.button-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.btn {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
}
.btn.grey {
  background-color: #ccc;
}

.city-section {
  padding: 4rem 0;
  background: #f9fbff;
}
.city-section:nth-of-type(even) {
  background: #ffffff;
}
.city-section--intro {
  background: #ffffff;
  padding-top: 3rem;
}
.city-section .inner {
  max-width: 960px;
  margin: 0 auto;
}

.city-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.city-section__title {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: #1f2b3a;
  margin: 0;
}

.city-section__bar {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #34a8eb 0%, #1ae684 100%);
}

.city-section__content {
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: 0 12px 32px rgba(25, 51, 89, 0.08);
  font-size: 1.04rem;
  line-height: 1.75;
  color: #2c3645;
}

.city-section--intro .city-section__content {
  background: transparent;
  box-shadow: none;
  padding: 0;
  font-size: 1.1rem;
}

.city-section__content p {
  margin: 0 0 1.5rem;
}

.city-section__content ul,
.city-section__content ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.city-section__content ul {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.city-section__content ol {
  counter-reset: city-steps;
}

.city-section__content ol li {
  counter-increment: city-steps;
  background: linear-gradient(135deg, rgba(52, 168, 235, 0.12) 0%, rgba(26, 230, 132, 0.12) 100%);
  border-radius: 14px;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  font-weight: 600;
  color: #1f2b3a;
}

.city-section__content ol li::before {
  content: counter(city-steps);
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #34a8eb;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(52, 168, 235, 0.35);
}

.city-section__content ul li {
  background: #f2f8fd;
  border-radius: 12px;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  position: relative;
  font-weight: 600;
  color: #1f2b3a;
  box-shadow: inset 0 0 0 1px rgba(52, 168, 235, 0.12);
}

.city-section__content ul li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #1ae684;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(26, 230, 132, 0.25);
}

.city-section__content blockquote {
  border-left: 4px solid #34a8eb;
  padding: 1rem 1.5rem;
  background: #f5fbff;
  margin: 1.5rem 0;
  font-style: italic;
  color: #1f2b3a;
}

.city-section__content blockquote p {
  margin: 0 0 0.5rem;
}

.city-section__content blockquote strong {
  color: #34a8eb;
}

.city-section__content a {
  color: #34a8eb;
  font-weight: 700;
  text-decoration: underline;
}

.city-section__content h3,
.city-section__content h4 {
  margin-top: 2rem;
  color: #0f172a;
}

@media (max-width: 768px) {
  .city-section {
    padding: 3rem 0;
  }
  .city-section__content {
    padding: 1.5rem;
  }
  .city-section__content ul {
    grid-template-columns: 1fr;
  }
}
.lead-shell {
  background: #f5f9ff;
  padding: clamp(2rem, 4vw, 3rem) 1rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.lead-main-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .lead-main-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.lead-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .lead-content {
    gap: 2rem;
  }
}
.lead-content__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-shell__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lead-shell__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(52, 168, 235, 0.12);
  color: #0b4f72;
  width: fit-content;
}

.lead-shell__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0;
  color: #0b1f33;
  font-weight: 800;
  line-height: 1.2;
}

.lead-shell__subtitle {
  font-size: 1rem;
  color: #3c5066;
  margin: 0;
  line-height: 1.5;
}

.lead-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .lead-cta-buttons {
    gap: 1.25rem;
  }
}
.lead-cta-button {
  flex: 1 1 auto;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.lead-cta-button--call {
  background: #1ae684;
  color: #021b11;
  box-shadow: 0 4px 12px rgba(26, 230, 132, 0.3);
}

.lead-cta-button--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 230, 132, 0.4);
}

.lead-cta-button--form {
  background: #34a8eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(52, 168, 235, 0.3);
}

.lead-cta-button--form:hover,
.lead-cta-button--form.is-active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 168, 235, 0.4);
  background: linear-gradient(135deg, #34a8eb, #1ae684);
}

.lead-cta-button__icon {
  font-size: 1.3rem;
  line-height: 1;
}

.lead-cta-button__text {
  font-weight: 700;
}

@media (max-width: 640px) {
  .lead-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .lead-cta-button {
    width: 100%;
    min-width: auto;
  }
}
.lead-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 1024px) {
  .lead-benefits-list {
    gap: 1rem;
  }
}
.lead-content__trust {
  margin: 0.5rem 0 0;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #6b7a94;
  font-weight: 600;
  border-top: 1px solid rgba(52, 168, 235, 0.15);
}

@media (min-width: 1024px) {
  .lead-content__trust {
    font-size: 1rem;
    margin-top: 0.75rem;
    padding-top: 1.25rem;
  }
}
.lead-benefits-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.lead-benefits-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(26, 230, 132, 0.15);
  color: #1ae684;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lead-benefits-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lead-benefits-list li strong {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.lead-benefits-list li span {
  font-size: 0.9rem;
  color: #6b7a94;
  line-height: 1.4;
}

.lead-form-column {
  position: sticky;
  top: 1.5rem;
  height: fit-content;
}

@media (max-width: 1023px) {
  .lead-form-column {
    position: static;
  }
}
@media (min-width: 960px) {
  .lead-shell__wrap {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.lead-actions {
  background: #eef4fb;
  padding: 2rem 1rem 4rem;
}

.lead-options {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .lead-options {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.lead-option {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(9, 40, 74, 0.08);
  border: 1px solid rgba(12, 46, 83, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-option--call {
  background: radial-gradient(120% 140% at 0% 0%, rgba(26, 230, 132, 0.22) 0%, rgba(9, 53, 63, 0) 55%), linear-gradient(140deg, #0a2f3a 0%, #031621 60%, #021018 100%);
  color: #ffffff;
  border: none;
  position: relative;
  overflow: hidden;
}

.lead-option--call::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(52, 168, 235, 0.22), rgba(26, 230, 132, 0.12));
  opacity: 0.6;
}

.lead-option__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.lead-option--form .lead-option__badge {
  background: rgba(52, 168, 235, 0.16);
  color: #1d3146;
}

.lead-option__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 2;
}

.lead-option__text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.lead-option--form .lead-option__text {
  color: #354153;
}

.lead-option__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}

.lead-option__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.lead-option__list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(26, 230, 132, 0.2);
  border: 1px solid rgba(26, 230, 132, 0.7);
  font-size: 0.85rem;
  color: #1ae684;
  flex-shrink: 0;
}

.lead-option__cta {
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin-top: 0.25rem;
}

.lead-option__cta-number {
  font-size: 1.3rem;
  font-weight: 800;
}

.lead-option__cta-main {
  font-size: 1rem;
  font-weight: 800;
}

.lead-option__cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.lead-option__cta--primary {
  background: #1ae684;
  color: #021b11;
  box-shadow: 0 8px 20px rgba(26, 230, 132, 0.3);
}

.lead-option__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 230, 132, 0.4);
}

.lead-option__cta--secondary {
  background: rgba(52, 168, 235, 0.1);
  color: #114065;
  border: 2px solid rgba(52, 168, 235, 0.3);
  box-shadow: 0 8px 20px rgba(9, 40, 74, 0.08);
}

.lead-option__cta--secondary:hover,
.lead-option__cta--secondary.is-active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #34a8eb, #1ae684);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(52, 168, 235, 0.25);
}

.lead-option__hint {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 2;
}

.lead-option--form .lead-option__hint {
  color: #536b87;
}

.lead-option__trust {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0;
  display: grid;
  gap: 0.4rem;
  color: #1f2b3a;
  font-weight: 600;
  font-size: 0.8rem;
  border-top: 1px solid rgba(52, 168, 235, 0.15);
}

.lead-option__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.lead-card {
  position: relative;
  border-radius: 28px;
  padding: clamp(2rem, 3vw, 2.8rem);
  box-shadow: 0 32px 60px rgba(9, 40, 74, 0.14);
  border: 1px solid rgba(12, 46, 83, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px rgba(9, 40, 74, 0.18);
}

.lead-card--call {
  background: radial-gradient(120% 140% at 0% 0%, rgba(26, 230, 132, 0.22) 0%, rgba(9, 53, 63, 0) 55%), linear-gradient(140deg, #0a2f3a 0%, #031621 60%, #021018 100%);
  color: #ffffff;
  border: none;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.lead-card--call::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(52, 168, 235, 0.22), rgba(26, 230, 132, 0.12));
  opacity: 0.6;
}

.lead-card--form {
  background: #ffffff;
  border-color: rgba(12, 46, 83, 0.06);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.lead-card__header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  align-self: flex-start;
}

.lead-card--form .lead-card__eyebrow {
  background: rgba(52, 168, 235, 0.16);
  color: #1d3146;
}

.lead-card__title {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin: 0;
}

.lead-card__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.lead-card--form .lead-card__text {
  color: #354153;
}

.lead-card__list {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.lead-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
}

.lead-card__list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(26, 230, 132, 0.2);
  border: 1px solid rgba(26, 230, 132, 0.7);
  font-size: 0.95rem;
  color: #1ae684;
  flex-shrink: 0;
}

.lead-card__cta {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  padding: 1.15rem 1.8rem;
  font-size: 1.3rem;
  font-weight: 800;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.lead-card__cta span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-card__cta--primary {
  background: #1ae684;
  color: #021b11;
  box-shadow: 0 28px 48px rgba(26, 230, 132, 0.35);
  border: none;
  margin-top: auto;
}

.lead-card__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 55px rgba(26, 230, 132, 0.45);
}

.lead-card__cta--primary:active {
  transform: translateY(0);
}

.lead-card__cta--outline {
  background: rgba(52, 168, 235, 0.1);
  color: #114065;
  border: 2px solid rgba(52, 168, 235, 0.3);
  box-shadow: 0 22px 38px rgba(9, 40, 74, 0.1);
  width: 100%;
  justify-content: center;
}

.lead-card__cta--outline span {
  color: #1f3e56;
}

.lead-card__cta--outline:hover,
.lead-card__cta--outline.is-active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #34a8eb, #1ae684);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 28px 48px rgba(52, 168, 235, 0.28);
  margin-top: auto;
}

.lead-card__cta--outline:hover span,
.lead-card__cta--outline.is-active span {
  color: #ffffff;
}

.lead-card__cta--outline:active {
  transform: translateY(0);
}

.lead-card__hint {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.lead-card__hint--dark {
  color: #536b87;
}

.lead-card__trust {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
  color: #1f2b3a;
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid rgba(52, 168, 235, 0.15);
}

.lead-card__trust li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.lead-card__trust li::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #34a8eb, #1ae684);
  box-shadow: 0 0 0 3px rgba(52, 168, 235, 0.12);
  flex-shrink: 0;
}

.lead-form-panel {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  display: block;
  animation: leadPanelFade 0.35s ease-out;
  position: relative;
}

.lead-form-panel[hidden] {
  display: none;
}

.lead-form-panel.is-open {
  display: block;
  animation: leadPanelFade 0.35s ease-out;
}

.lead-form-panel__inner {
  padding: clamp(1.25rem, 3vw, 1.5rem);
}

@media (min-width: 1024px) {
  .lead-form-panel__inner {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 640px) {
  .lead-form-panel__inner {
    padding: 1.25rem;
  }
}
.lead-form-panel__header {
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 1024px) {
  .lead-form-panel__header {
    margin-bottom: 1rem;
  }
}
.lead-form-panel__header h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}

@media (min-width: 1024px) {
  .lead-form-panel__header h2 {
    font-size: 2rem;
  }
}
.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

@media (min-width: 1024px) {
  .lead-form {
    gap: 1rem;
  }
}
.lead-form__grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lead-form__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
}
@media (min-width: 1024px) {
  .lead-form__grid {
    gap: 0.7rem;
  }
}
.lead-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
  color: #1f2b3a;
}

.lead-form__group span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7a94;
}

.lead-form__group input,
.lead-form__group select,
.lead-form__group textarea {
  width: 100%;
  border-radius: 8px;
  border: 1.5px solid rgba(52, 168, 235, 0.22);
  background: #f9fcff;
  padding: 0.55rem 0.8rem;
  font-size: 16px;
  font-weight: 500;
  color: #1f2b3a;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

@media (min-width: 1024px) {
  .lead-form__group input,
  .lead-form__group select,
  .lead-form__group textarea {
    padding: 0.6rem 0.9rem;
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .lead-form__group input,
  .lead-form__group select,
  .lead-form__group textarea {
    font-size: 16px;
    padding: 0.65rem 0.8rem;
  }
}
.lead-form__phone {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.lead-form__phone select {
  flex: 0 0 100px;
  padding-left: 0.5rem;
  min-width: 0;
}

.lead-form__phone input {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 640px) {
  .lead-form__phone {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .lead-form__phone select {
    width: 100%;
    flex: 1 1 auto;
  }
  .lead-form__phone input {
    width: 100%;
  }
}
.lead-form__error {
  margin: -0.5rem 0 0;
  padding: 0.75rem 1rem;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #a32020;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.lead-form__group input:focus,
.lead-form__group select:focus,
.lead-form__group textarea:focus {
  border-color: #34a8eb;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 168, 235, 0.18);
}

.lead-form__group textarea {
  min-height: 70px;
  resize: vertical;
}

@media (min-width: 1024px) {
  .lead-form__group textarea {
    min-height: 80px;
  }
}
.lead-form__group--full {
  grid-column: 1/-1;
}

.lead-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #516073;
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .lead-form__privacy {
    font-size: 0.9rem;
  }
}
.lead-form__privacy input {
  margin-top: 0.25rem;
}

.lead-form__privacy a {
  color: #34a8eb;
  font-weight: 600;
  text-decoration: underline;
}

.lead-form__submit {
  border: none;
  border-radius: 12px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #34a8eb, #1ae684);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(52, 168, 235, 0.2);
  width: 100%;
  margin-top: 0.2rem;
}

@media (min-width: 640px) {
  .lead-form__submit {
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
  }
}
@media (min-width: 1024px) {
  .lead-form__submit {
    padding: 0.95rem 2.8rem;
    font-size: 1.05rem;
    font-weight: 800;
  }
}
.lead-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(26, 230, 132, 0.25);
}

.lead-form__submit:active {
  transform: translateY(0);
}

.lead-form__note {
  font-size: 0.75rem;
  color: #6b7a94;
  margin: 0.3rem 0 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .lead-form__note {
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }
}
.lead-form-benefits {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(52, 168, 235, 0.15);
}

@media (min-width: 1024px) {
  .lead-form-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.lead-form-benefits__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1.5rem;
}

@media (min-width: 1024px) {
  .lead-form-benefits__title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }
}
.lead-form-benefits__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .lead-form-benefits__list {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.lead-form-benefits__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.lead-form-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(26, 230, 132, 0.15);
  color: #1ae684;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lead-form-benefits__list li div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lead-form-benefits__list li strong {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.lead-form-benefits__list li span {
  font-size: 0.85rem;
  color: #6b7a94;
  line-height: 1.4;
}

.lead-form-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(52, 168, 235, 0.15);
}

@media (min-width: 640px) {
  .lead-form-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}
@media (min-width: 1024px) {
  .lead-form-trust {
    padding-top: 0.65rem;
    margin-top: 0.65rem;
    gap: 0.75rem;
  }
}
.lead-form-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #4b5a6f;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .lead-form-trust__item {
    font-size: 0.9rem;
  }
}
.lead-form-trust__icon {
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 1023px) {
  .lead-form-benefits {
    position: static;
    margin-top: 2rem;
  }
}
.lead-form__close {
  border: none;
  background: transparent;
  color: #4b5a6f;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.lead-form__close:hover {
  color: #0f172a;
}

@keyframes leadPanelFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lead-trust-footer {
  background: #fff8e1;
  padding: 3rem 1rem;
  margin-top: 2rem;
}

.lead-trust-footer__content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.lead-trust-footer__stars {
  display: flex;
  gap: 0.25rem;
  font-size: 2rem;
  line-height: 1;
}

.lead-trust-footer__star {
  color: #ffc107;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.lead-trust-footer__rating {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2b3a;
  margin: 0;
}

.lead-trust-footer__text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b1f33;
  margin: 0;
}

@media (max-width: 768px) {
  .lead-shell__meta {
    grid-template-columns: 1fr;
  }
  .lead-option {
    padding: 1.5rem;
  }
  .lead-option__title {
    font-size: 1.5rem;
  }
  .lead-option__cta {
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }
  .lead-option__cta-number {
    font-size: 1.2rem;
  }
  .lead-form__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .lead-form__close {
    text-align: center;
    padding: 0.75rem;
  }
  .lead-trust-footer {
    padding: 2rem 1rem;
  }
  .lead-trust-footer__stars {
    font-size: 1.5rem;
  }
  .lead-trust-footer__text {
    font-size: 1.1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  color: #000;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 70vh;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  z-index: -1;
}

h1 img {
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  h1 img {
    margin-top: 2rem;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

.hero .inner {
  z-index: 1;
}

small {
  color: var(--tertiary);
}

.grid3 {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 700px) {
  .grid3 {
    margin-top: 1rem;
    gap: 1rem;
  }
}

h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000 !important;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border-radius: 8px;
}
@media screen and (max-width: 700px) {
  h5 {
    padding: 0.5rem;
  }
}
h5 {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 4px solid #1ae684;
}

section {
  padding: 2rem 0;
}

section:nth-child(even) {
  background-color: #f9f9f9;
}

.btn {
  display: inline-block;
  background-color: #34a8eb;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 2rem;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn:hover {
  background-color: #1ae684;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: #34a8eb;
  margin-bottom: 1rem;
}

.testimonials {
  text-align: center;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-weight: 700;
  color: #34a8eb;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.cta {
  background-color: var(--tertiary);
  color: #000;
  text-align: center;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #34a8eb;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h1 small {
    font-size: 1.4rem;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */