@charset "UTF-8";
/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

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

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
  scroll-behavior: smooth;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: #615d64;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  background: #fff;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

p {
  padding: 0rem;
  margin: 0rem 0 0.5rem;
  color: #615d64;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 2rem;
  padding: 0rem;
  color: var(--White, #fff);
  font-family: "Montserrat", sans-serif;
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.125rem; /* 119.048% */
}

h2 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Violet, #5b2c6f);
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 142.857% */
}

h3 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #2b2b2b;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h4 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Charcoal, #2b2b2b);
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem; /* 144.444% */
}

h5 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Charcoal, #2b2b2b);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal; /* 133.333% */
}

h6 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal; /* 133.333% */
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  color: var(--Grey, #333);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #000;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
  border-radius: 0.25rem;
  border: 1px solid var(--Coral, #ff6b6b);
  background: var(--Coral, #ff6b6b);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
  gap: 0.75rem;
}
.btn span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0.5rem;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background: #fff;
  color: var(--Coral, #ff6b6b);
  overflow: hidden;
}
.btn span i {
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  transform: translate(17px, 0);
}
.btn span i::before {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  content: "\f105";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  width: 2rem;
}
.btn span i::after {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  content: "\f105";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  width: 2rem;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
  border: 1px solid var(--Coral, #ff6b6b);
  background: var(--Coral, #ff6b6b);
}
.btn:hover {
  color: #fff;
  border: 1px solid var(--Coral, #ff6b6b);
  background: var(--Coral, #ff6b6b);
}
.btn:hover span i {
  transform: translate(-16px, 0);
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #9b9b9b;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  color: #9b9b9b;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit], [type=radio], [type=checkbox]),
select {
  padding: 0.875rem 1.5rem; /* UPDATED: Even padding for the new pill shape */
  display: block;
  width: 100%;
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 3.125rem;
  border: 1px solid rgba(51, 51, 51, 0.1);
  background: rgba(237, 238, 243, 0.4);
  box-shadow: none;
  margin-bottom: 1.5rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder, select::-moz-placeholder {
  color: rgba(51, 51, 51, 0.35);
  opacity: 1;
}
input:not([type=submit], [type=radio], [type=checkbox])::placeholder,
select::placeholder {
  color: rgba(51, 51, 51, 0.35);
  opacity: 1;
}

textarea {
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: rgb(51, 51, 51);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 1rem; /* UPDATED: Softer global curve for large textareas */
  border: 1px solid rgba(51, 51, 51, 0.1);
  padding: 0.625rem 1.25rem; /* UPDATED: Gives the text breathing room from the corners */
  background: rgba(237, 238, 243, 0.4);
  box-shadow: none;
  height: 7.0625rem;
  margin-bottom: 1.5rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
textarea::-moz-placeholder {
  color: #afafaf;
}
textarea::placeholder {
  color: #afafaf;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  padding: 0.975rem 3.125rem 0.975rem 1.5rem; /* UPDATED padding */
  background-color: #f9f9f9;
  background-image: url("../images/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 1.25rem center; /* UPDATED: Shifted arrow left to clear the curve */
  background-size: 0.75rem;
  width: 100%;
  border-radius: 2rem; /* UPDATED: Global pill shape */
  color: var(--Dark-grey, #2e2e2e);
  color: rgb(51, 51, 51);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: auto;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: transparent;
}

select option {
  color: #a8a8a8;
  font-size: 0.875rem;
  font-weight: normal;
}

label {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0rem 0rem 0.5rem;
  padding: 0;
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background: url(../images/tick_circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #249d8f;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  position: relative;
  top: 3px;
}

input[type=checkbox]::before {
  content: "";
  width: 0.75rem;
  height: 0.5625rem;
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  background: url(../images/tick-clear.svg) no-repeat;
  background-size: contain;
  /* Windows High Contrast Mode */
  background-color: transparent;
  left: 0.25rem;
  position: relative;
  top: -0.0875rem;
}

input[type=checkbox]:checked {
  background: url(../images/tick_gap.svg);
  background-size: contain;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: none;
  outline-offset: none;
}

input[type=checkbox]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #000;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #000;
  /* Windows High Contrast Mode */
  background-color: #fff;
}

input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=radio]:focus {
  outline: none;
  outline-offset: none;
}

input[type=radio]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

section h1,
section h2 {
  margin: 0 0 1rem;
}
section.defaultPadding {
  padding: 5.625rem 0;
}
section.defaultPadding70 {
  padding: 4.375rem 0;
}

header.header_main {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  background: #fff;
  padding: 1.625rem 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}
header.header_main .d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header_main .logo {
  position: relative;
  width: 9rem;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
  margin-top: 0;
}
header.header_main .logo a {
  display: block;
}
header.header_main .stellarnav > ul > li > a {
  padding: 0.75rem 0;
  text-align: left;
}
header.header_main .stellarnav > ul > li:hover a::before, header.header_main .stellarnav > ul > li.current-menu-item a::before {
  width: 100%;
}
header.header_main .stellarnav > ul > li + li {
  margin-left: 1.75rem;
}
header.header_main .stellarnav > ul ul li + li {
  border-top: 0.0625rem solid #c0c1d1;
}
header.header_main .stellarnav > ul ul li:last-child {
  border-bottom: none;
}
header.header_main .stellarnav > ul ul li a:hover {
  background: #b8860b;
  color: var(--White, #fff);
}
header.header_main .rig_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
header.header_main .rig_btn a.link {
  color: var(--Coral, #ff6b6b);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  text-transform: uppercase;
}

.hm_banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--Violet, #5b2c6f) url(../images/banner_bg.png) no-repeat center center;
  background-size: cover;
}
.hm_banner .banner-img-fm {
  width: 50%;
  aspect-ratio: 785/798;
  margin-left: auto;
}
.hm_banner .banner-img-fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hm_banner .container {
  position: absolute;
  inset: calc(50% + 2.5rem) 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}
.hm_banner .banner-content {
  max-width: 36.4375rem;
  color: #fff;
}
.hm_banner .banner-content h1 {
  color: #fff;
  margin: 0 0 1rem;
}
.hm_banner .banner-content h1 + p {
  margin: 0 0 2rem;
}
.hm_banner .banner-content p {
  color: #e6e6e6;
}
.hm_banner .banner-content .banner-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 0 3.75rem;
}
.hm_banner .banner-content .banner-buttons .link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}
.hm_banner .banner-content .banner-buttons .link::before {
  content: "\f095";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
}
.hm_banner .banner-content .banner-buttons .link:hover {
  opacity: 0.8;
}
.hm_banner .banner-content h4 {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 120% */
  margin: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-block;
  padding: 0.375rem;
  margin: 0 0 1.875rem;
}
.hm_banner .banner-content ul {
  display: flex;
}
.hm_banner .banner-content ul li {
  display: inline-flex;
  position: relative;
}
.hm_banner .banner-content ul li + li::before {
  content: " ";
  width: 1px;
  height: 40px;
  background: var(--Coral, #ff6b6b);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 1rem;
  position: relative;
  display: inline-block;
}
.hm_banner .banner-content ul li .each-info {
  display: flex;
  gap: 0.625rem;
}
.hm_banner .banner-content ul li .each-info span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.hm_banner .banner-content ul li .each-info span img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.hm_banner .banner-content ul li .each-info .rig-cnt h6 {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.25rem;
  padding: 0;
}
.hm_banner .banner-content ul li .each-info .rig-cnt a,
.hm_banner .banner-content ul li .each-info .rig-cnt p {
  color: var(--White, #fff);
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  text-transform: uppercase;
}
.hm_banner .banner-content ul li .each-info .rig-cnt a:hover {
  color: var(--Coral, #ff6b6b);
}

section.hm_sec1 {
  text-align: center;
}
section.hm_sec1 h4 + p {
  margin: 0 0 1.875rem;
}
section.hm_sec1 h3 {
  color: var(--Violet, #5b2c6f);
  text-align: center;
  font-family: Lato;
}

.each-box {
  display: flex;
  height: 12.375rem;
  padding: 0.625rem 0.5625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 0 4px 10px 0 rgba(91, 44, 111, 0.08);
  justify-content: space-between;
  margin: 0 0 1.875rem;
}
.each-box span {
  display: flex;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0.4375rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.each-box span img {
  width: 1.5625rem;
  height: 1.5625rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.each-box h6 {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  text-align: left;
  margin: 0;
  padding: 0;
}
.each-box:hover span {
  background: var(--Electric-Blue, #00a8e8);
}
.each-box:hover span img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(64%) hue-rotate(167deg) brightness(117%) contrast(100%);
}

section.hm_sec2 {
  background: #f3f8ff;
}
section.hm_sec2 .build_fm {
  aspect-ratio: 107/102;
  border-radius: 4px;
  overflow: hidden;
}
section.hm_sec2 .build_fm img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content_txt {
  text-align: center;
  margin: 0 0 1.875rem;
}
.content_txt h6 {
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0 0 0.75rem;
}
.content_txt p {
  max-width: 59.125rem;
  margin: 0 auto;
}

.arrow_content {
  margin: 0 0 1.875rem;
}
.arrow_content ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.arrow_content ul li h6 {
  color: var(--Violet, #5b2c6f);
  font-family: Lato;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1rem auto;
  gap: 0.625rem;
  align-items: center;
  margin: 0 0 0.5rem;
}
.arrow_content ul li h6::before {
  content: "";
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  background-image: url(../images/blue-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.arrow_content ul li p {
  line-height: normal;
}
.arrow_content.p-arrow ul li p strong {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  margin: 0;
  display: inline-block;
  position: relative;
  padding-left: 25px;
}
.arrow_content.p-arrow ul li p strong::before {
  content: "";
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  background-image: url(../images/blue-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrow_content.p-arrow ul li ul {
  padding-left: 0.9375rem;
}
.arrow_content.p-arrow ul li ul li {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 0;
}

.circle_icon {
  margin: 0 0 1.875rem;
}
.circle_icon > p {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  margin: 0 0 1.25rem;
  line-height: normal;
}
.circle_icon ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.circle_icon ul li {
  color: #615d64;
}
.circle_icon ul li p {
  position: relative;
  padding-left: 1.375rem;
  line-height: normal;
}
.circle_icon ul li p strong {
  color: var(--Charcoal, #2b2b2b);
}
.circle_icon ul li p::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  background-image: url(../images/black-circle-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.circle_icon.purple-color ul li p::before {
  background-image: url(../images/purple-circle-arrow.png);
}
.circle_icon.purple-color ul li p strong {
  color: var(--Violet, #5b2c6f);
}

section.hm_sec3 .content_txt {
  text-align: center;
  margin: 0 0 1.875rem;
}
section.hm_sec3 .content_txt h6 {
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0 0 0.75rem;
}
section.hm_sec3 .content_txt p {
  max-width: 59.125rem;
  margin: 0 auto;
}
section.hm_sec3 .build_fm {
  aspect-ratio: 107/102;
  border-radius: 4px;
  overflow: hidden;
}
section.hm_sec3 .build_fm img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_sec3 .last-notice {
  text-align: center;
}
section.hm_sec3 .last-notice p {
  color: #615d64;
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
}

/* --- Vanguard Banner (No Variables) --- */
.proof-section {
  position: relative;
  background-color: #f3f8ff; /* Very light blue */
  padding: 48px 20px 80px;
  margin-top: 50px;
  border-radius: 0% 0% 50% 50%/0% 0% 40% 40%;
  text-align: center;
  margin: 1.875rem 0 1.875rem;
  /* --- The Trapezoid Header --- */
}
.proof-section .proof-header {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #29b6f6; /* Bright blue */
  padding: 15px 80px;
  clip-path: polygon(0% 0, 100% 0, 90% 100%, 10% 100%);
  background: linear-gradient(180deg, #00a8e8 0%, #60d3ff 100%);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}
.proof-section .proof-header h2 {
  margin: 0;
  color: #111;
  font-size: 1.4rem;
  font-weight: 700;
}
.proof-section {
  /* --- The CSS Grid --- */
}
.proof-section .proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.4375rem;
  align-items: start;
}
@media (max-width: 900px) {
  .proof-section .proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
}
.proof-section {
  /* --- Individual Items --- */
}
.proof-section .proof-item {
  position: relative;
  padding: 10px;
  height: 100%;
}
.proof-section .proof-item .check-icon {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 12px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  margin: auto 12px;
}
.proof-section .proof-item p {
  margin: 0;
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.proof-section .proof-item {
  /* --- The Vertical Dividers --- */
}
.proof-section .proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.6563rem;
  top: 0%;
  height: 100%;
  width: 1px;
  background-color: #81d4fa; /* Soft blue line */
}
@media (max-width: 900px) {
  .proof-section .proof-item:not(:last-child)::after {
    display: none;
  }
}

section.hm_sec4 {
  background: #5b2c6f;
  padding: 80px 0;
}
section.hm_sec4 h2,
section.hm_sec4 h3,
section.hm_sec4 h4,
section.hm_sec4 p {
  color: #ffffff;
}
section.hm_sec4 {
  /* --- Top Header Text --- */
}
section.hm_sec4 .content_txt {
  text-align: center;
}
section.hm_sec4 .content_txt.w782 {
  max-width: 48.875rem;
  margin: 0 auto 3.5rem;
}
section.hm_sec4 .content_txt h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
section.hm_sec4 .content_txt p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0e0e0;
}
section.hm_sec4 {
  /* --- Middle Checklist Section --- */
}
section.hm_sec4 .middle-content {
  margin-bottom: 4rem;
}
section.hm_sec4 .fit-list-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
section.hm_sec4 .red-correct ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.hm_sec4 .red-correct ul li {
  position: relative; /* Anchor for the ::before element */
  padding-left: 28px; /* Creates the gap for the checkmark */
  margin-bottom: 1.2rem;
  /* Injecting the Checkmark */
}
section.hm_sec4 .red-correct ul li::before {
  content: "✓"; /* Unicode Hex for Checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5252; /* Bright Red */
  font-size: 1.1rem;
  font-weight: bold;
}
section.hm_sec4 .red-correct ul li p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
section.hm_sec4 .red-correct ul li p strong {
  font-weight: 700;
}
section.hm_sec4 {
  /* Image Container */
}
section.hm_sec4 .image-box {
  height: 100%;
}
section.hm_sec4 .image-box .custom-rounded-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
section.hm_sec4 {
  /* --- Bottom Industries Card --- */
}
section.hm_sec4 .industries-card {
  background: #6a3780;
  border-radius: 12px;
  padding: 40px 50px;
}
section.hm_sec4 .industries-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
section.hm_sec4 .industries-card .industry-item {
  position: relative; /* Anchor for the ::before element */
  padding-left: 35px; /* Creates the gap for the arrow */
  margin-bottom: 1.8rem;
  /* Injecting the Arrow */
}
section.hm_sec4 .industries-card .industry-item::before {
  content: "➤"; /* Unicode Hex for Solid Right Arrow */
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  line-height: 1;
  color: #ffffff;
}
section.hm_sec4 .industries-card .industry-item .ind-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 5px;
}
section.hm_sec4 .industries-card .industry-item .ind-text p {
  font-size: 0.85rem;
  margin: 0;
  color: #d1b8dc;
  line-height: 1.5;
}
@media (max-width: 768px) {
  section.hm_sec4 .industries-card {
    padding: 30px 20px;
  }
}

.content_txt.w782 {
  max-width: 48.875rem;
  margin: 0 auto 1.875rem;
}

/* =========================================
   Section 5: Our Focus (Desktop Styles)
   ========================================= */
section.hm_sec5 {
  padding: 80px 0;
  background-color: #ffffff;
  /* --- Top Intro Text --- */
}
section.hm_sec5 .focus_intro_txt {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto 3.5rem;
}
section.hm_sec5 .focus_intro_txt h2 {
  color: #5b2c6f;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
section.hm_sec5 .focus_intro_txt p {
  font-size: 1.15rem;
  color: #2b2b2b;
  margin: 0;
}
section.hm_sec5 .focus_intro_txt p strong {
  font-weight: 700;
}
section.hm_sec5 {
  /* --- 5-Column Blue Focus Cards --- */
}
section.hm_sec5 .focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 4rem;
}
section.hm_sec5 .focus-card {
  border: 1px solid #81d4fa;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
section.hm_sec5 .focus-card .fc-header {
  background: #00a8e8;
  padding: 18px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.hm_sec5 .focus-card .fc-header h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  position: relative;
  padding-left: 28px;
}
section.hm_sec5 .focus-card .fc-header h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}
section.hm_sec5 .focus-card .fc-header h4.icon-broadcast::before {
  background-image: url("../images/icon-broadcast.svg");
}
section.hm_sec5 .focus-card .fc-header h4.icon-digital::before {
  background-image: url("../images/icon-digital.svg");
}
section.hm_sec5 .focus-card .fc-header h4.icon-boost::before {
  background-image: url("../images/icon-boost.svg");
}
section.hm_sec5 .focus-card .fc-header h4.icon-analytics::before {
  background-image: url("../images/icon-analytics.svg");
}
section.hm_sec5 .focus-card .fc-header h4.icon-campaign::before {
  background-image: url("../images/icon-campaign.svg");
}
section.hm_sec5 .focus-card .fc-body {
  padding: 20px 15px;
  flex-grow: 1;
}
section.hm_sec5 .focus-card .fc-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.hm_sec5 .focus-card .fc-body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 1.2rem;
}
section.hm_sec5 .focus-card .fc-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("../images/red-check-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
section.hm_sec5 .focus-card .fc-body ul li p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #615d64;
}
section.hm_sec5 {
  /* --- "What We Don't Do" Red Section --- */
}
section.hm_sec5 .dont-do-section {
  position: relative;
  background: linear-gradient(180deg, #ff6b6b 0%, #f45b5b 100%);
  padding: 60px 20px 50px;
  margin-top: 30px;
  margin-bottom: 3rem;
  border-radius: 0% 0% 50% 50%/0% 0% 20% 20%;
  text-align: center;
}
section.hm_sec5 .dont-do-section .dont-do-header {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ff7a7a 0%, #ff6b6b 100%);
  padding: 12px 60px;
  clip-path: polygon(0% 0, 100% 0, 90% 100%, 10% 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
section.hm_sec5 .dont-do-section .dont-do-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
}
section.hm_sec5 .dont-do-section .dont-do-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: start;
}
section.hm_sec5 .dont-do-section .dd-item {
  position: relative;
  padding: 10px;
}
section.hm_sec5 .dont-do-section .dd-item::before {
  content: "✕";
  display: block;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 12px;
}
section.hm_sec5 .dont-do-section .dd-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffffff;
}
section.hm_sec5 .dont-do-section .dd-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
section.hm_sec5 {
  /* --- Bottom Conclusion Text --- */
}
section.hm_sec5 .focus-bottom-text {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}
section.hm_sec5 .focus-bottom-text p {
  font-size: 1.05rem;
  color: #5b2c6f;
  line-height: 1.6;
  margin: 0;
}
section.hm_sec5 .focus-bottom-text p strong {
  font-weight: 700;
}

/* =========================================
   Responsive Overrides
   ========================================= */
/* --- Large Devices (Laptops/Desktops, 1200px and down) --- */
@media (max-width: 1200px) {
  section.hm_sec5 .focus-grid {
    /* Step down from 5 columns to 3 columns, cards wrap automatically */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
/* --- Medium Devices (Tablets, 900px and down) --- */
@media (max-width: 900px) {
  section.hm_sec5 .dont-do-section .dont-do-grid {
    /* Let the browser auto-fit the columns so it flows naturally */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
  }
  section.hm_sec5 .dont-do-section .dd-item:not(:last-child)::after {
    /* Hide the white vertical divider lines when the layout wraps */
    display: none;
  }
}
/* --- Small Devices (Phones, 768px and down) --- */
@media (max-width: 768px) {
  section.hm_sec5 {
    padding: 50px 0; /* Reduce padding on mobile so it doesn't feel empty */
  }
  section.hm_sec5 .focus_intro_txt h2 {
    font-size: 1.8rem; /* Scale down the main heading */
  }
  section.hm_sec5 .focus-grid {
    /* Stack the blue cards into a single column */
    grid-template-columns: 1fr;
  }
  section.hm_sec5 .dont-do-section {
    padding: 60px 15px 40px;
    border-radius: 0% 0% 30% 30%/0% 0% 10% 10%; /* Soften the bottom curve */
  }
  section.hm_sec5 .dont-do-section .dont-do-header {
    padding: 10px 40px; /* Make the trapezoid a bit smaller */
  }
}/*# sourceMappingURL=style.css.map */