/* =========================================
   HELIOCAST PVT. LTD. — Main Stylesheet
   Colors: Navy #0A0E2A | Gold #F5B800 | Red #E53935
   Fonts: Montserrat, Poppins
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0A0E2A;
  --navy2: #111535;
  --navy3: #181d44;
  --gold: #F5B800;
  --gold2: #ffcf2d;
  --red: #E53935;
  --white: #FFFFFF;
  --light: #F4F6FA;
  --muted: #8892a4;
  --border: rgba(245, 184, 0, 0.18);
  --shadow: 0 8px 32px rgba(10, 14, 42, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2d3046;
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s;
}

#preloader img {
  width: 180px;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: .6;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---- Navbar ---- */
.navbar {
  background: var(--navy) !important;
  padding: 0;
  border-bottom: 2px solid var(--gold);
  z-index: 999;
}

.navbar-brand img {
  height: 56px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, .85) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1.4rem .8rem !important;
  position: relative;
  transition: color .25s;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all .25s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  left: .8rem;
  right: .8rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: var(--gold);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar .btn-cta-nav {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 4px;
  padding: .5rem 1.2rem !important;
  font-weight: 700;
  margin-left: .5rem;
}

.navbar .btn-cta-nav.active {
  color: var(--navy) !important
}

.navbar .btn-cta-nav:hover {
  background: var(--navy);
}

.navbar .btn-cta-nav::after {
  display: none;
}

/* ---- Page Hero ---- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 60%, var(--navy3) 100%);
  padding: 90px 0 60px;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.page-hero .lead {
  color: var(--muted);
}

.page-hero .breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.page-hero .breadcrumb-item.active {
  color: var(--white);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: var(--muted);
}

/* ---- Section Styles ---- */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 55px 0;
}

.section-dark {
  background: var(--navy);
}

.section-dark * {
  color: var(--white);
}

.section-alt {
  background: var(--light);
}

.section-tag {
  width: fit-content;
  display: inline-block;
  background: rgba(245, 184, 0, .15);
  color: var(--gold);
  border: 1px solid rgba(245, 184, 0, .35);
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  margin-bottom: .8rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .6rem;
}

.section-title span {
  color: var(--gold);
}

.section-title.light {
  color: var(--white);
}

.divider-gold {
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 22px;
}

.divider-gold.center {
  margin: 14px auto 22px;
}

/* ---- Buttons ---- */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: .7rem 1.8rem;
  letter-spacing: .04em;
  transition: all .25s;
  font-size: 16px;
  line-height: 34px;
}

.btn-gold:hover {
  background: var(--gold2);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, .4);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 4px;
  padding: .65rem 1.8rem;
  background: transparent;
  transition: all .25s;
  font-size: 16px;
  line-height: 34px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-red {
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: .7rem 1.8rem;
  transition: all .25s;
}

.btn-red:hover {
  background: #c62828;
  transform: translateY(-2px);
}

/* ---- Hero (Home) ---- */
.hero-home {
  background: linear-gradient(135deg, var(--navy) 0%, #0e133a 50%, #1a0a0a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5B800' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-home .hero-badge {
  display: inline-block;
  background: rgba(245, 184, 0, .15);
  border: 1px solid rgba(245, 184, 0, .4);
  border-radius: 30px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  margin-bottom: 1.2rem;
}

.hero-home h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-home h1 .gold {
  color: var(--gold);
}

.hero-home .hero-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.hero-pill {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  border-radius: 30px;
  font-size: .78rem;
  padding: .3rem .9rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat-lbl {
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, .6));
}

.hero-badge-float {
  position: absolute;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow);
}

.hero-badge-float .icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 184, 0, .15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-badge-float p {
  margin: 0;
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
}

.hero-badge-float strong {
  color: var(--white);
  font-size: .85rem;
  font-family: 'Montserrat', sans-serif;
}

.hbf-1 {
  bottom: 30px;
  left: -20px;
}

.hbf-2 {
  top: 30px;
  right: -10px;
}

/* ---- Ticker Bar ---- */
.ticker-bar {
  background: var(--gold);
  padding: .6rem 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
}

.ticker-item i {
  color: var(--red);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- Cards ---- */
.feature-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: all .3s;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245, 184, 0, .18);
  transform: translateY(-4px);
}

/* Shared icon-wrap base */
.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(245, 184, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all .3s;
  flex-shrink: 0;
}

.feature-card .icon-wrap {
  background: rgba(245, 184, 0, .12);
  color: var(--gold);
}

.feature-card:hover .icon-wrap {
  background: var(--gold);
  color: var(--navy);
}

.feature-card h5 {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .4rem;
  color: var(--navy);
}

.feature-card p {
  font-size: .83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* Dark card variant */
.feature-card-dark {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: all .3s;
  height: 100%;
}

.feature-card-dark:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245, 184, 0, .2);
  transform: translateY(-4px);
}

.feature-card-dark .icon-wrap {
  background: rgba(245, 184, 0, .1);
  color: var(--gold);
}

.feature-card-dark:hover .icon-wrap {
  background: var(--gold);
  color: var(--navy);
}

.feature-card-dark h5 {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .4rem;
}

.feature-card-dark p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  margin: 0;
  line-height: 1.65;
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transition: all .3s;
  height: 100%;
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(245, 184, 0, .2);
}

.service-card-img {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 42, .8));
}

.service-card-body {
  padding: 1.4rem;
}

.service-card-body h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.service-card-body p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.service-card-body .badge-tag {
  display: inline-block;
  background: rgba(245, 184, 0, .12);
  color: var(--gold);
  border: 1px solid rgba(245, 184, 0, .3);
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 600;
  padding: .2rem .7rem;
  margin-bottom: .6rem;
}

/* ---- Why Us Checklist ---- */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .85rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
}

.why-list li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* ---- Pricing ---- */
.plan-card {
  background: var(--white);
  border-radius: 14px;
  border: 2px solid transparent;
  padding: 0;
  transition: all .3s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.plan-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(245, 184, 0, .2);
}

.plan-card.featured {
  border-color: var(--gold);
}

.plan-card-header {
  background: var(--navy);
  padding: 1.5rem 1.5rem 1.2rem;
  text-align: center;
}

.plan-card.featured .plan-card-header {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
}

.plan-card.featured .plan-card-header * {
  color: var(--navy) !important;
}

.plan-card-header .plan-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
  display: block;
}

.plan-card.featured .plan-card-header .plan-badge {
  color: var(--navy);
}

.plan-card-header .plan-speed {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}

.plan-card-header .plan-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.plan-card.featured .plan-card-header .plan-price {
  color: var(--navy);
}

.plan-card-header .plan-cycle {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
}

.plan-card-body {
  padding: 1.4rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  color: #000000;
}

.plan-features li i {
  color: var(--gold);
  font-size: .85rem;
}

.plan-ribbon {
  position: absolute;
  top: 16px;
  right: -22px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem 1.5rem;
  transform: rotate(35deg);
  z-index: 1;
}

/* ---- Industries ---- */
.industry-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .3s;
  height: 100%;
}

.industry-card:hover {
  border-color: var(--gold);
  background: var(--navy3);
  transform: translateY(-4px);
}

.industry-card .ind-icon {
  width: 68px;
  height: 68px;
  background: rgba(245, 184, 0, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  transition: all .3s;
}

.industry-card:hover .ind-icon {
  background: var(--gold);
  color: var(--navy);
}

.industry-card h6 {
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  margin: 0;
}

/* ---- OTT ---- */
.ott-badge {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all .3s;
}

.ott-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245, 184, 0, .2);
  transform: translateY(-3px);
}

.ott-badge img {
  max-height: 36px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: all .3s;
}

.ott-badge:hover img {
  opacity: 1;
  filter: none;
}

.ott-icon-card {
  text-align: center;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: all .3s;
}

.ott-icon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.ott-icon-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: .6rem;
  display: block;
}

.ott-icon-card span {
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
}

/* ---- OTT Strip Section (homepage) ---- */
.ott-strip-section {
  background: linear-gradient(180deg, #080d28 0%, #0e133a 60%, #080d28 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.ott-strip-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 184, 0, .06) 0%, transparent 70%);
  pointer-events: none;
}

.ott-strip-sub {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  margin-top: .3rem;
}

.ott-strip-sub strong {
  font-size: 1.15rem;
}

.ott-tiles-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Individual tile */
.ott-tile {
  width: 120px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--g1), var(--g2));
  border: 1.5px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  cursor: default;
  position: relative;
}

.ott-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.ott-tile:hover {
  transform: translateY(-7px) scale(1.04);
  border-color: rgba(245, 184, 0, .5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(245, 184, 0, .2);
}

.ott-tile-inner {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 6px;
  padding: 0 10px;
}

.ott-tile-label {
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, .35);
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  padding: 6px 4px;
  text-transform: uppercase;
}

.ott-tile-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ott-svg-logo {
  width: 60px;
  height: auto;
}

/* Real logo images inside tiles */
.ott-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* More tile */
.ott-tile-more {
  --g1: rgba(245, 184, 0, .12);
  --g2: rgba(245, 184, 0, .06);
  border: 2px dashed rgba(245, 184, 0, .35) !important;
}

.ott-tile-more .ott-tile-label {
  background: rgba(245, 184, 0, .08);
  color: var(--gold);
}

/* Responsive */
@media (max-width: 576px) {
  .ott-tile {
    width: calc(33.33% - 10px);
    min-width: 90px;
  }

  .ott-tile-inner {
    height: 75px;
  }
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  padding: 60px 0;
}

.cta-banner h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
}

.cta-banner p {
  color: rgba(10, 14, 42, .7);
}

/* ---- Contact Form ---- */
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}

.form-control,
.form-select {
  border: 1.5px solid #e0e4ef;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .88rem;
  transition: all .25s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, .15);
}

.contact-info-card {
  background: var(--navy2);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 184, 0, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.contact-info-item p,
.contact-info-item a {
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  margin: 0;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: .6rem;
}

.testimonial-card p {
  font-size: .88rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card .tc-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card .tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
}

.testimonial-card .tc-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
}

.testimonial-card .tc-role {
  font-size: .75rem;
  color: var(--muted);
}

/* ---- Terms ---- */
.terms-section h4 {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.terms-section h4 i {
  color: var(--gold);
}

.terms-section p,
.terms-section li {
  font-size: .88rem;
  color: #4a5568;
  line-height: 1.75;
}

/* ---- Map ---- */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
}

.map-wrap iframe {
  display: block;
}

/* ---- Footer ---- */
footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 3px solid var(--gold);
}

footer .footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

footer .footer-about {
  color: rgba(255, 255, 255, .6);
  font-size: .84rem;
  line-height: 1.75;
}

footer h6 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer .footer-links {
  list-style: none;
  padding: 0;
}

footer .footer-links li {
  margin-bottom: .5rem;
}

footer .footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}

footer .footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

footer .footer-links a:hover {
  color: var(--gold);
}

footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  color: rgba(255, 255, 255, .65);
  font-size: .83rem;
}

footer .footer-contact-item i {
  color: var(--gold);
  margin-top: .15rem;
  flex-shrink: 0;
}

footer .footer-contact-item a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
}

footer .footer-contact-item a:hover {
  color: var(--gold);
}

footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .9rem;
  margin-right: .4rem;
  transition: all .25s;
}

footer .footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  padding: 1.2rem 0;
  margin-top: 2.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .45);
  font-size: .78rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ---- Floating Buttons ---- */
.float-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}

.btn-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  text-decoration: none;
  transition: all .3s;
  position: relative;
}

.btn-float:hover {
  transform: scale(1.12);
}

.btn-float-wa {
  background: #25D366;
  color: #fff;
}

.btn-float-wa:hover {
  background: #1eb556;
  color: #fff;
}

.btn-float-call {
  background: var(--gold);
  color: var(--navy);
}

.btn-float-call:hover {
  background: var(--gold2);
  color: var(--navy);
}

.btn-float-top {
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  display: none;
}

.btn-float-top.show {
  display: flex;
}

.float-label {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .72rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.btn-float:hover .float-label {
  opacity: 1;
}

/* ---- Scroll progress ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 10000;
  transition: width .1s;
}

/* ---- Back to top ---- */
#backToTop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .3s;
}

#backToTop.show {
  display: flex;
}

#backToTop:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---- Accordion (FAQ / Terms) ---- */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px !important;
  margin-bottom: .5rem;
  overflow: hidden;
}

.accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--gold);
  background: rgba(245, 184, 0, .06);
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(245, 184, 0, .3);
}

/* ---- Animations ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utility ---- */
.text-gold {
  color: var(--gold) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-gold {
  background: var(--gold) !important;
}

.rounded-14 {
  border-radius: 14px;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* ============================================================
   SINGLE-PAGE HOME STYLES
   ============================================================ */

/* Hero */
.sp-hero {
  background: linear-gradient(135deg, rgba(10, 14, 42, .97) 0%, rgba(14, 19, 58, .95) 55%, rgba(26, 10, 16, .96) 100%),
    url('../img/bghome.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F5B800' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.sp-tagline {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .04em;
  margin-bottom: .6rem;
}

.sp-tagline span {
  color: rgba(255, 255, 255, .6);
  font-weight: 400;
}

.sp-hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: .4rem;
}

.sp-hero-sub {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(245, 184, 0, .1);
  border: 1px solid rgba(245, 184, 0, .25);
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.sp-tagline-bottom {
  color: rgba(255, 255, 255, .6);
  font-size: .83rem;
}

.sp-use-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 1rem;
}

.sp-use-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-family: 'Montserrat', sans-serif;
}

.sp-use-apps {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

.sp-use-apps span {
  background: rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: .2rem .55rem;
  font-size: .7rem;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.sp-use-brands {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.sp-use-brands span {
  font-size: .65rem;
  color: rgba(255, 255, 255, .45);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .15rem .5rem;
  border-radius: 20px;
}

.sp-hero-visual {
  position: relative;
  display: inline-block;
}

.sp-hero-img {
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  object-fit: contain;
  aspect-ratio: 4/5;
  border: 3px solid rgba(245, 184, 0, .25);
}

.sp-hero-badge {
  position: absolute;
  background: rgba(17, 21, 53, .9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .6rem .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  backdrop-filter: blur(10px);
}

.sp-hero-badge div {
  line-height: 1.3;
}

.sp-hero-badge small {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
}

.sp-hero-badge strong {
  color: #fff;
  font-size: .82rem;
  font-family: 'Montserrat', sans-serif;
}

.sp-hb-1 {
  bottom: 20px;
  left: -10px;
}

.sp-hb-2 {
  top: 20px;
  right: -10px;
}

.sp-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Feature bar */
.sp-feat-bar {
  background: var(--navy2);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(245, 184, 0, .15);
}

.sp-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 1.2rem .5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
}

.sp-feat-item:hover {
  background: rgba(245, 184, 0, .06);
}

.sp-feat-item i {
  font-size: 1.6rem;
  color: var(--gold);
}

.sp-feat-item div {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .08em;
  line-height: 1.4;
}

/* Why cards */
.sp-why-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.sp-why-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 184, 0, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  color: var(--gold);
  font-size: 1.6rem;
  transition: all .3s;
  border: 2px solid rgba(245, 184, 0, .25);
}

.sp-why-card:hover .sp-why-icon {
  background: var(--gold);
  color: var(--navy);
}

.sp-why-card p {
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  margin: 0;
  line-height: 1.5;
}

.sp-why-card p strong {
  color: #fff;
  display: block;
}

/* Services */
.sp-service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  height: 100%;
  transition: all .3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.sp-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(245, 184, 0, .18);
  transform: translateY(-4px);
}

.sp-service-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(245, 184, 0, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all .3s;
}

.sp-service-card:hover .sp-service-icon {
  background: var(--gold);
  color: var(--navy);
}

.sp-service-body h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.sp-service-body p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Industries */
.sp-industry-card {
  text-align: center;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem .8rem;
  transition: all .3s;
}

.sp-industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.sp-ind-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 184, 0, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 auto .8rem;
  transition: all .3s;
}

.sp-industry-card:hover .sp-ind-icon {
  background: var(--gold);
  color: var(--navy);
}

.sp-industry-card span {
  color: rgba(255, 255, 255, .8);
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* Plan list */
.sp-plan-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sp-plan-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  padding: .75rem 1rem;
  transition: all .25s;
}

.sp-plan-row:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245, 184, 0, .2);
}

.sp-plan-row--pop {
  border-color: var(--gold);
  background: rgba(245, 184, 0, .04);
}

.sp-plan-speed {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  flex: 1;
}

.sp-plan-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}

.sp-plan-price small {
  font-size: .65rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 1px;
}

.sp-plan-badge {
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 20px;
}

/* OTT */
.sp-ott-price {
  font-size: 1.1rem;
  color: var(--gold);
  margin-left: .5rem;
  vertical-align: middle;
  font-family: 'Montserrat', sans-serif;
}

.sp-ott-price small {
  font-size: .65rem;
  font-weight: 400;
  color: var(--muted);
}

.sp-ott-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sp-ott-tile {
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.sp-ott-tile:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.sp-ott-tile img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.sp-ott-more {
  background: rgba(245, 184, 0, .1);
  border: 2px dashed rgba(245, 184, 0, .35) !important;
  flex-direction: column;
  gap: 2px;
}

.sp-ott-more span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
}

.sp-ott-more small {
  font-size: .6rem;
  color: rgba(0, 0, 0, .5);
  font-weight: 600;
  letter-spacing: .05em;
}

/* Gaming bar */
.sp-gaming-bar {
  background: var(--navy);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
}

.sp-gaming-bar strong {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  letter-spacing: .04em;
}

/* T&C */
.sp-tc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-tc-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: .7rem;
}

.sp-tc-list li::before {
  content: '\F270';
  font-family: 'bootstrap-icons';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}

.sp-tc-right {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
}

/* Sales Rep */
.sp-sales-rep {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.2rem;
}

.sp-sales-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(245, 184, 0, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
}

/* Contact items */
.sp-contact-items {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.sp-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background: #f8f9fc;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 12px;
  padding: .85rem 1rem;
  transition: all .25s;
  color: inherit;
}

.sp-contact-item:hover {
  border-color: var(--gold);
  background: rgba(245, 184, 0, .05);
}

.sp-ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(245, 184, 0, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.sp-contact-item span {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.sp-contact-item strong {
  display: block;
  font-size: .92rem;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
}

/* Hero desc lines */
.sp-hero-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .04em;
  margin-top: .5rem;
}

.sp-hero-desc2 {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .25rem;
}

/* About section */
.sp-about-img-wrap {
  position: relative;
  padding: 16px 16px 0 0;
}

.sp-about-img-wrap img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 3px solid rgba(245, 184, 0, .2);
}

.sp-about-stat {
  position: absolute;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: .7rem 1.1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.sp-as-1 {
  bottom: -16px;
  left: 3px;
}

.sp-as-2 {
  top: -16px;
  right: 3px;
}

.sp-as-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.sp-as-num span {
  font-size: 1rem;
}

.sp-as-lbl {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .7);
  font-family: 'Montserrat', sans-serif;
  margin-top: .2rem;
}

/* Pillar cards (About section) */
.sp-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: #f8f9fc;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 12px;
  padding: 1rem;
  transition: border-color .25s;
}

.sp-pillar-card:hover {
  border-color: var(--gold);
}

.sp-pillar-card>i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}

.sp-pillar-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}

.sp-pillar-card p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.row {
  --bs-gutter-y: 20px;
}

/* ---- Responsive ---- */
@media(max-width:991px) {
  .navbar .nav-link {
    padding: .6rem 1rem !important;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .hero-home {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-img-wrap {
    margin-top: 2rem;
  }

  .hbf-1,
  .hbf-2 {
    display: none;
  }
}

@media(max-width:767px) {
  .hero-stats {
    gap: 1rem;
  }

  .plan-card.featured {
    transform: none;
  }

  .row {
    --bs-gutter-y: 20px;
  }

  #about .row {
    gap: 20px;
  }

  .sp-about-img-wrap {
    padding: 0;
  }
}