/* Custom Fonts */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Ultra.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Use this font globally */
body {
  font-family: "Gotham", sans-serif;
  padding: 0px;
  margin: 0px;
  background-color: #f4f4f4;
}

:root {
  --color-red: #ef233c;
  --color-black: #000000;
  --color-pink: #ffebf2;
  --color-white: #ffffff;
  --color-grey: #ebebeb;
}

/* Typography Base (Mobile-first) */
h1 {
  font-size: 2rem; /* ~32px */
  font-weight: 900;
}

h2 {
  font-size: 1.75rem; /* ~28px */
  font-weight: 800;
}

h3 {
  font-size: 1.5rem; /* ~24px */
  font-weight: 700;
}

h4 {
  font-size: 1.25rem; /* ~20px */
  font-weight: 700;
}

h5 {
  font-size: 1.125rem; /* ~18px */
  font-weight: 700;
}

h6 {
  font-size: 1rem; /* ~16px */
  font-weight: 700;
}

p,
a,
button,
label,
li {
  font-size: 1rem; /* ~16px */
  font-weight: 400;
  line-height: 1.6;
}

button {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

small {
  font-size: 0.875rem; /* ~14px */
}

.navbar {
  display: flex;
  align-items: center;
  padding: 0rem 1.5rem;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.mobile-logo {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Desktop: logo left */
@media (min-width: 768px) {
  .navbar {
    justify-content: flex-start;
  }

  .logo {
    position: relative;
    left: 0;
    transform: none;
    margin: 0;
  }
}

/* Mobile: logo centered */
@media (max-width: 767px) {
  .navbar {
    display: none;
    justify-content: center;
  }

  .logo {
    text-align: center;
  }
  .mobile-logo {
    display: block;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
  }
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
}

/* Hide menu on small screens */
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
}

.menu-toggle {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--color-red, #ef233c);
  color: #fff;
  font-size: 2rem;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

/* Show button only on mobile */
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  display: flex;
}

.overlay-logo {
  font-size: 1.75rem;
  font-weight: 900;
  text-align: center;
  padding: 1.5rem 0;
}

.overlay-nav {
  list-style: none;
  margin: auto 0;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-nav li {
  margin: 1rem 0;
}

.overlay-nav li a {
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--color-black, #000);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}

.overlay-nav {
  margin-top: -90px;
}

.overlay-nav li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.4s forwards;
}

.mobile-menu-overlay.active .overlay-nav li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu-overlay.active .overlay-nav li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu-overlay.active .overlay-nav li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu-overlay.active .overlay-nav li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--color-red, #ef233c);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-toggle .bar {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Top line */
.menu-toggle .bar:nth-child(1) {
  transform: translateY(-8px);
}

/* Middle line */
.menu-toggle .bar:nth-child(2) {
  transform: translateY(0);
}

/* Bottom line */
.menu-toggle .bar:nth-child(3) {
  transform: translateY(8px);
}

/* --- When Active --- */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
}

.site-header {
  position: relative;
}

.site-header img {
  height: 60px;
}

header {
  height: 100vh;
  color: var(--color-white);
  display: flex;
  flex-direction: column; /* nav stays on top */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  z-index: -1;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
}

.mobile-menu-overlay img {
  max-height: 60px;
}

.desktop-bar {
  display: none; /* hidden by default */
}

@media (min-width: 992px) {
  .desktop-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    color: var(--color-white);
    padding: 0rem 1.5rem;
  }

  .bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .bar-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .bar-text {
    font-size: 0.8rem;
  }
}

.nav-menu .btn-secondary a {
  padding: 0.5rem 1.5rem;
  background-color: #fff;
  color: var(--color-red, #ef233c);
  border-radius: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.nav-menu .btn-secondary a:hover {
  background-color: var(--color-red, #ef233c);
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center; /* important! */
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
  }
  .site-header {
    height: 100vh;
    color: var(--color-white);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  padding: 2rem 1.5rem;
}

@media (max-width: 767px) {
  .hero-content {
    align-items: center;
    text-align: center;
  }
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-content .subhead {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2rem;
}

.hero-content strong {
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}

.btn-outline-white {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 32px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-white:hover {
  background-color: #fff;
  color: var(--color-red, #ef233c);
}

/* Responsive layout changes */
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    margin-left: 1.5rem;
  }

  .hero-content h1,
  .hero-content .subhead {
    text-align: left;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content .subhead {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
}

.hero-wrapper h1 {
  text-transform: uppercase;
}

.hero-wrapper h1 span {
  color: var(--color-red);
}

.features-grid {
  display: grid;
  padding: 2rem 1.5rem;
  max-width: 97vw;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-block {
  padding: 2rem;
  color: #fff;
  text-align: left;
}

.feature-block img.icon {
  width: 40px;
}

.feature-block h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Colors */
.feature-block.red {
  background-color: var(--color-red);
}

.feature-block.light {
  background-color: var(--color-white);
  color: var(--color-black);
}

@media (max-width: 767px) {
  .features-grid {
    display: none;
  }
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-header .icon {
  width: 32px; /* or whatever fits best visually */
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .feature-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.features-mobile {
  display: none;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  color: #fff;
}

.feature-box.red {
  background-color: var(--color-red);
}

.feature-box.light {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.feature-box .icon {
  width: 36px;
  margin-bottom: 1rem;
}

.feature-box h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .features-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    display: none !important;
  }
}

.howItWorks {
  background-color: #f5f5f5;
  padding: 2rem;
}

.two-column-section {
  display: flex;
  flex-direction: column;
  padding: 0; /* remove padding between columns */
  margin: 0;
}

.column {
  padding: 0;
}

.column-left {
  display: flex;
  align-items: center;
  justify-content: center; /* center image on mobile */
  padding: 0;
}

.left-image {
  height: 400px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

@media (min-width: 992px) {
  .two-column-section {
    flex-direction: row;
  }

  .column-left {
    width: 40%;
    justify-content: flex-end; /* right-align image on desktop */
  }

  .column-right {
    width: 60%;
  }

  .left-image {
    height: 700px;
  }
}

.feature-steps {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 550px;
  margin-top: 75px;
}

.step {
  background-color: #fff;
  color: #000;
  padding: 1rem;
  transition: all 0.3s ease;
  border-radius: 0px 32px 32px 0px;
  width: 80%;
}

.step h4 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  font-family: "Gotham", sans-serif;
}

.step:hover {
  background-color: var(--color-red);
  color: #fff;
  width: 85%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

.section-title h2 {
  color: var(--color-red);
  font-size: 2rem;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title p {
  color: #707070;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-weight: 400;
}

.button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline-red {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-red);
  color: var(--color-red);
  background-color: transparent;
  border-radius: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-red:hover {
  background-color: var(--color-red);
  color: #fff;
}

@media (max-width: 767px) {
  .howItWorks {
    padding: 2rem 0px;
  }
  .feature-steps {
    height: auto;
    margin-top: 30px;
  }
  .step {
    background-color: #fff;
    color: #000;
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 0px;
    text-align: center;
    margin-bottom: 15px;
    width: auto;
  }
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr; /* force two equal-height rows */
  background-color: var(--color-red);
  padding: 5rem;
  color: #fff;
  text-align: center;
  position: relative;
}

.stat-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
  min-height: 180px; /* ensures consistent height across rows */
  z-index: 1;
}

.stat-block img {
  height: 40px;
  margin-bottom: 0.75rem;
}

.stat-block h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0.25rem 0;
}

.stat-block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Horizontal line between rows */
.coverage-stats::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

/* Vertical lines between columns */
.coverage-stats .stat-block:nth-child(1),
.coverage-stats .stat-block:nth-child(2),
.coverage-stats .stat-block:nth-child(4),
.coverage-stats .stat-block:nth-child(5) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile view */
@media (max-width: 767px) {
  .coverage-stats {
    grid-template-columns: 1fr;
  }

  .coverage-stats::after {
    display: none;
  }

  .stat-block {
    border-right: 0px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .stat-block:last-child {
    border-bottom: none;
  }
}

.masonry-3x3 {
  width: 60%;
  margin-left: 20%;
  margin-top: -5rem;
  z-index: 999;
  position: relative;
  background-color: #707070;
}

.masonry-3x3 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 0;
}

.block {
  display: flex;
  justify-content: start;
  align-items: end;
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  color: white;
  text-align: left;
  position: relative;
}

.block p {
  padding: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0px;
  z-index: 9999;
}

.block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.white {
  background: white;
  color: #707070;
}

.red {
  background: #ef233c;
}

.black {
  background: #000;
}

.span-2-col {
  grid-column: span 2;
}

.span-2-row {
  grid-row: span 2;
}

@media (max-width: 767px) {
  .masonry-3x3 .grid {
    display: none;
    flex-direction: column;
  }
  .coverage-stats {
    padding: 2rem 2rem 2rem 2rem;
  }
}

.mobile-masonry {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 5rem;
}

.masonry-block {
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 150px;
  color: #fff;
}

.masonry-block.white {
  background-color: #fff;
  color: #000;
}

.masonry-block.black {
  background-color: #000;
}

.masonry-block.red {
  background-color: #ef233c;
}

.masonry-block h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.masonry-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .mobile-masonry {
    display: none; /* Only show this section on mobile */
  }
}

.pricing-section {
  background-color: #f4f4f4;
  padding: 4rem 1rem;
  text-align: center;
}

.pricing-header h2 {
  color: #ef233c;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: #707070;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 900;
}

.card h3 span {
  font-size: 0.875rem;
  font-weight: 400;
}

.card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-white {
  background-color: #ffffff;
  color: #000;
}

.card-red {
  background-color: #ef233c;
  color: #ffffff;
}

.featured {
  transform: scale(1.05);
  z-index: 1;
}

.btn-red,
.btn-white {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-red {
  background: #ef233c;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #ef233c;
}

@media (min-width: 768px) {
  .pricing-cards {
    flex-direction: row;
    justify-content: center;
  }

  .card {
    width: 280px;
  }

  .featured {
    margin-top: -1rem;
  }
}

.cta-banner {
  background-color: #ef233c;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0rem 4rem;
  gap: 2rem;
  height: 350px;
}

.cta-content {
  flex: 1;
  max-width: 600px;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.store-buttons a {
  display: inline-block;
  margin-right: 1rem;
}

.store-buttons img {
  height: 50px;
  width: auto;
}

.cta-image {
  flex: 1;
  text-align: center;
  max-width: 600px;
  margin-top: -50px;
}

.cta-image img {
  max-height: 400px;
}

@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    height: 400px;
    padding: 2rem;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-image {
    text-align: center;
  }

  .cta-image img {
    max-width: 80%;
    height: auto;
    margin-top: 2rem;
    display: none;
  }

  .store-buttons a {
    margin: 0 0.5rem;
  }
}

.testimonials-section {
  padding: 4rem 1rem;
  background-color: #f7f7f7;
  text-align: center;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ef233c;
  margin-bottom: 2rem;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, auto); /* No gaps between cards */
  justify-content: center; /* Center the whole grid */
  row-gap: 1rem;
  column-gap: 1rem; /* Ensure no space between columns */
  padding: 0 1rem;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  width: 320px; /* Fixed width for even spacing */
  margin: 0; /* Remove default margins */
}

.testimonial-card .quote {
  font-size: 2rem;
  color: #ef233c;
  margin: 0;
  line-height: 1;
}

.testimonial-card .author {
  font-weight: 700;
  margin-top: 1.5rem;
  color: #000;
}

/* Tablet */
@media (max-width: 1199px) {
  .testimonial-card {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

/* Mobile Scroll */
@media (max-width: 768px) {
  .testimonials-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 1rem 0;
    gap: 1rem;
    scroll-padding-left: 1rem;
  }

  .testimonial-card {
    flex: 0 0 90%; /* Each card takes 90% of screen */
    scroll-snap-align: center; /* CENTER each card on scroll */
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }
}

/* Stay One Step Ahead Strip */
.cta-strip {
  background-color: #ed1c2e;
  color: #fff;
  padding: 40px 20px;
}

.cta-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.cta-left {
  font-weight: 700;
  font-size: 24px;
  flex: 1;
  text-align: left;
}

.cta-center {
  flex: 2;
  font-size: 14px;
  padding: 10px 20px;
  text-align: center;
}

.cta-right {
  flex: 1;
  text-align: right;
}

.cta-button {
  background: #fff;
  color: #ed1c2e;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid white;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: transparent;
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: #f5f5f5;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

.footer-logo {
  height: 40px;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 8px;
}

.legal-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-left,
  .cta-center,
  .cta-right {
    flex: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 5px;
  }
}

#why-partner .content-section {
  padding: 4rem 1rem;
  text-align: center;
}
.ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .ways-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
