/* ==========================================================================
   MAIN.CSS — Reddy Anna / Laser247
   2026 Premium Gambling & Casino Aesthetic
   Dark luxe · Gold accents · Neon glow · Glassmorphism
   ========================================================================== */

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ---------- BASE OVERRIDES ---------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-primary);
  color: var(--color-light);
  overflow-x: hidden;
}

::selection {
  background: var(--color-secondary);
  color: var(--color-black);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- UTILITY ---------- */
.white-style h2,
.white-style h3,
.white-style p {
  color: var(--color-light) !important;
}

/* ---------- ANIMATED BACKGROUND NOISE ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l4.33 8.77 9.67 1.41-7 6.82 1.65 9.64L30 27.27l-8.65 4.37 1.65-9.64-7-6.82 9.67-1.41z' fill='%23d4af37' fill-opacity='0.15'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(212, 175, 55, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav_container {
  padding: 0 var(--padding-global--padding-global);
}

.nav_content {
  max-width: var(--container--large);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75em 0;
}

.site-branding a {
  display: flex;
  text-decoration: none;
}

.site-branding img {
  height: 2.8em;
  width: auto;
  transition: transform 0.3s ease;
}
.site-branding img:hover {
  transform: scale(1.05);
}

.nav_menu-list {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.main-navigation .menu {
  display: flex;
  align-items: center;
  gap: 0.25em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .menu-item a {
  display: flex;
  align-items: center;
  gap: 0.35em;
  text-decoration: none;
  color: var(--color-light);
  font-size: 0.875em;
  font-weight: 500;
  padding: 0.6em 1em;
  border-radius: var(--border-radius--medium);
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.main-navigation .menu-item a:hover {
  color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.08);
}

.main-navigation .menu-item a .bi-whatsapp {
  color: var(--color-whatsapp);
  font-size: 1.1em;
}

/* ---------- NAV WA BUTTON ---------- */
.main-navigation .wa-button a {
  background: var(--button-gradient);
  color: var(--color-black) !important;
  font-weight: 700;
  padding: 0.65em 1.5em;
  border-radius: 99px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.main-navigation .wa-button a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.5),
    0 4px 20px rgba(212, 175, 55, 0.3);
  background: var(--button-gradient);
}

/* ---------- BURGER (mobile) ---------- */
.ods-burger {
  display: none;
  cursor: pointer;
  padding: 0.5em;
  border-radius: var(--border-radius--small);
  transition: background 0.2s ease;
}
.ods-burger:hover {
  background: rgba(212, 175, 55, 0.1);
}
.ods-burger svg path {
  fill: var(--color-secondary);
  transition: fill 0.3s;
}

@media (max-width: 991px) {
  .ods-burger {
    display: block;
  }
  .main-navigation {
    display: none;
  }
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.ods-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ods-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.ods-mobile-menu-items {
  text-align: center;
  width: 100%;
  padding: 2em;
}

.ods-mobile-menu-close {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  cursor: pointer;
  color: var(--color-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background 0.3s,
    color 0.3s;
}
.ods-mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-secondary);
}

.ods-mobile-menu-nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.ods-mobile-menu-nav .menu-item a {
  display: flex;
  justify-content: center;
  gap: 0.35em;
  text-decoration: none;
  color: var(--color-light);
  font-size: 1.5em;
  font-weight: 600;
  padding: 0.75em 1em;
  border-radius: var(--border-radius--medium);
  transition:
    color 0.3s,
    background 0.3s,
    transform 0.3s;
}

.ods-mobile-menu-nav .menu-item a:hover {
  color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(8px);
}

.ods-mobile-menu-nav .wa-button a {
  background: var(--button-gradient);
  color: var(--color-black) !important;
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: 99px;
  font-weight: 700;
  margin-top: 1em;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   BUTTONS — Global
   ========================================================================== */

/* WhatsApp CTA Button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--color-whatsapp);
  color: #fff !important;
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  padding: 0.9em 2em;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow:
    0 0 20px rgba(0, 170, 64, 0.3),
    0 0 60px rgba(0, 170, 64, 0.1);
}

.btn-wa::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg, #00aa40, #00dd55, #00aa40, #00dd55);
  background-size: 300% 300%;
  animation: shimmer 3s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-wa:hover::before {
  opacity: 1;
}

.btn-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 0 30px rgba(0, 170, 64, 0.5),
    0 0 80px rgba(0, 170, 64, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-wa svg {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn-wa--xl {
  font-size: 1.15em;
  padding: 1em 2.5em;
}

/* Outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: transparent;
  color: var(--color-light);
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  padding: 0.9em 2em;
  border-radius: 99px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Theme button (contact form) */
.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--button-gradient);
  color: var(--color-black);
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  padding: 0.9em 2.5em;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.btn-theme:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   HERO BLOCK
   ========================================================================== */
.hero-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 4em);
  padding-bottom: 6em;
}

.hero-block__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-block__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
}

.hero-block__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-block__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.7) 0%,
    rgba(15, 15, 15, 0.4) 40%,
    rgba(15, 15, 15, 0.6) 70%,
    rgba(15, 15, 15, 0.95) 100%
  );
}

/* Decorative gold light flare */
.hero-block__overlay::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-block__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-block__inner {
  max-width: 50em;
  margin: 0 auto;
  text-align: center;
}

.hero-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--color-secondary);
  font-size: 0.8em;
  font-weight: 600;
  padding: 0.4em 1em;
  border-radius: 99px;
  margin-bottom: 1.5em;
  backdrop-filter: blur(10px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-block__badge-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero-block h1 {
  color: var(--color-light);
  font-size: var(--font-size--h1);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

.hero-block__desc {
  margin-bottom: 2em;
}

.hero-block__desc p {
  color: rgba(249, 243, 229, 0.7);
  font-size: 1.15em;
  line-height: 1.5;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.hero-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 3em;
  justify-content: center;
}

/* Hero Stats */
.hero-block__stats {
  display: flex;
  gap: 2.5em;
  padding-top: 2em;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  justify-content: center;
}

.hero-block__stat {
  text-align: center;
}

.hero-block__stat-val {
  color: var(--color-secondary);
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.25em;
}

.hero-block__stat-label {
  color: rgba(249, 243, 229, 0.5);
  font-size: 0.8em;
  font-weight: 400;
}

/* ==========================================================================
   PAYMENT MARQUEE
   ========================================================================== */
.payment {
  padding-top: 2.5em;
  padding-bottom: 3em;
  background: var(--color-black);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  overflow: hidden;
  background-color: var(--color-card-dark);
}

.payment__wrap {
  text-align: center;
}

.payment__header {
  margin-bottom: 2em;
}

.payment__header h2 {
  color: var(--color-light);
  font-size: var(--font-size--h5);
}

.payment__marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.payment__track {
  display: flex;
  gap: 3em;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.payment__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: grayscale(0.3) brightness(1.2);
}

.payment__logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.3);
}

.payment__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   AUTHOR BLOCK
   ========================================================================== */
.author-block {
  padding-top: var(--section-padding);
}

.author-block__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2em;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(28, 28, 28, 0.8) 0%,
    rgba(212, 175, 55, 0.04) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius--large);
  padding: 2.5em;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.author-block__inner::before {
  content: "\201C";
  position: absolute;
  top: -0.1em;
  right: 0.2em;
  font-size: 8em;
  color: rgba(212, 175, 55, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.author-block__avatar {
  flex-shrink: 0;
}

.author-block__avatar img {
  width: 5.5em;
  height: 5.5em;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-secondary);
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.2),
    0 0 0 6px rgba(212, 175, 55, 0.06);
}

.author-block__meta {
  flex: 1;
}

.author-block__text {
  margin-bottom: 1.25em;
}

.author-block__text .author-position {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--color-secondary);
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75em;
  background: rgba(212, 175, 55, 0.08);
  padding: 0.35em 0.8em;
  border-radius: 99px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.author-block__text p {
  color: rgba(249, 243, 229, 0.7);
  font-size: 0.95em;
  line-height: 1.7;
}

.author-block__label {
  color: var(--color-gray);
  font-size: 0.75em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-block__name {
  color: var(--color-light);
  font-weight: 700;
  font-size: 1em;
}

.author-block__sep {
  color: rgba(212, 175, 55, 0.3);
  margin: 0 0.6em;
}

.author-block__date {
  color: var(--color-gray);
  font-size: 0.85em;
}

/* ==========================================================================
   JOURNEY SECTION
   ========================================================================== */
.journey {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

.journey__header {
  text-align: center;
  max-width: 42em;
  margin: 0 auto 3em;
}

.journey__header h2 {
  color: var(--color-light);
  margin-bottom: 0.75em;
}

.journey__header p {
  color: rgba(249, 243, 229, 0.6);
  font-size: 1em;
  line-height: 1.6;
}

.journey__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 52em;
  margin: 0 auto;
}

/* Vertical gold line */
.journey__steps::before {
  content: "";
  position: absolute;
  left: 1.75em;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--color-secondary) 15%,
    var(--color-secondary) 85%,
    transparent
  );
  opacity: 0.3;
}

.journey__step {
  display: flex;
  gap: 1.5em;
  padding: 1.5em 0;
  position: relative;
  transition: transform 0.3s ease;
}
.journey__step:hover {
  transform: translateX(6px);
}

.journey__step-num {
  flex-shrink: 0;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.journey__step:hover .journey__step-num {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.journey__step-num span {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.1em;
  transition: color 0.3s;
}

.journey__step:hover .journey__step-num span {
  color: var(--color-black);
}

.journey__step-body h3 {
  color: var(--color-light);
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

.journey__step-body p {
  color: rgba(249, 243, 229, 0.6);
  font-size: 0.95em;
  line-height: 1.6;
}

/* ==========================================================================
   FEATURES SECTION (Sports + Casino + Why Choose)
   ========================================================================== */
.features {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

/* Section variants */
.features--sports {
  background: var(--color-light);
}

.features--sports .features__text h2 {
  color: var(--color-primary);
}

.features--sports .features__text p {
  color: var(--color-main-mid);
}

.features--sports .features__card h3 {
  color: var(--color-primary);
}

.features--sports .features__card p {
  color: var(--color-main-mid);
}

.features--sports .features__card--style-1 {
  background: #fff;
  border-color: rgba(15, 15, 15, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.features--sports .features__card--style-1:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(212, 175, 55, 0.08);
}

.features--sports .features__card-icon {
  background: var(--color-secondary);
}

.features--casino {
  background: linear-gradient(180deg, #0a1a0b 0%, #0b1907 50%, #0a1a0b 100%);
}

.features--why {
  background: var(--color-primary);
}

.features__text {
  text-align: center;
  max-width: 42em;
  margin: 0 auto 2.5em;
}

.features__text h2 {
  margin-bottom: 0.5em;
}

.features__text p {
  color: var(--color-black);
  font-size: 1em;
  line-height: 1.6;
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-bottom: 2.5em;
}

.features__cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Card Style 1: Sports (light bg) */
.features__card--style-1 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius--large);
  padding: 2em;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features__card--style-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.features__card--style-1:hover::before {
  opacity: 1;
}

.features__card--style-1:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.08);
}

/* Card Style 2: Why Choose (dark, golden accent) */
.features__card--style-2 {
  background: var(--color-card-dark);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius--large);
  padding: 2em;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features__card--style-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--button-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.features__card--style-2:hover::after {
  transform: scaleX(1);
}

.features__card--style-2:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card Style 3: Casino (dark green tinted) */
.features__card--style-3 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 170, 64, 0.15);
  border-radius: var(--border-radius--large);
  padding: 2em;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features__card--style-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 170, 64, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.features__card--style-3:hover::before {
  opacity: 1;
}

.features__card--style-3:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 170, 64, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 170, 64, 0.08);
}

/* Card icons & text (shared) */
.features__card-icon {
  width: 3.5em;
  height: 3.5em;
  margin-bottom: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border-radius: var(--border-radius--medium);
  padding: 0.6em;
}

.features__card--style-3 .features__card-icon {
  background: var(--color-secondary);
}

.features__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features__card h3 {
  color: var(--color-black);
  font-size: 1.15em;
  margin-bottom: 0.5em;
}

.features__card p {
  color: var(--color-black);
  font-size: 0.9em;
  line-height: 1.6;
}

.features__card--style-2.features__card p,
.features__card--style-2.features__card h3,
.features__card--style-3.features__card p,
.features__card--style-3.features__card h3 {
  color: var(--color-white);
}

.features__link {
  text-align: center;
  margin-top: 2em;
}

/* ==========================================================================
   SECURITY CARDS (subtle inline badges)
   ========================================================================== */
.security__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  margin-top: 2.5em;
  margin-bottom: 2em;
  justify-content: center;
}

.security__card {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 99px;
  padding: 0.5em 1.2em;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.security__card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.06);
}

.security__card-icon {
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
}

.security__card h3 {
  color: rgba(249, 243, 229, 0.5);
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ==========================================================================
   TRUST BLOCK
   ========================================================================== */
.trust-block {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: linear-gradient(
    180deg,
    var(--color-primary) 0%,
    rgba(28, 28, 28, 0.5) 50%,
    var(--color-primary) 100%
  );
}

.trust-block__inner {
  max-width: 52em;
  margin: 0 auto;
}

.trust-block__inner h2 {
  text-align: center;
  color: var(--color-light);
  margin-bottom: 1.5em;
  position: relative;
}

.trust-block__inner h2::after {
  content: "";
  display: block;
  width: 3em;
  height: 3px;
  background: var(--button-gradient);
  margin: 0.5em auto 0;
  border-radius: 99px;
}

.trust__text h3 {
  color: var(--color-secondary);
  font-size: 1.15em;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}

.trust__text h3:first-child {
  margin-top: 0;
}

.trust__text p {
  color: rgba(249, 243, 229, 0.65);
  line-height: 1.6;
  font-size: 0.95em;
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.comparison__inner {
  max-width: 52em;
  margin: 0 auto;
}

.comparison__header {
  text-align: center;
  margin-bottom: 2em;
}

.comparison__header h2 {
  color: var(--color-light);
  margin-bottom: 0.5em;
}

.comparison__header p {
  color: rgba(249, 243, 229, 0.6);
  font-size: 0.95em;
  line-height: 1.5;
}

.comparison__table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius--large);
  overflow-x: auto;
}

.comparison__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transition: background 0.3s;
}

.comparison__row:not(:last-child) {
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.comparison__row:hover {
  background: rgba(212, 175, 55, 0.04);
}

.comparison__row--header {
  background: rgba(212, 175, 55, 0.08);
}

.comparison__row--header .comparison__cell {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison__row--highlight {
  background: rgba(212, 175, 55, 0.06);
}

.comparison__cell {
  padding: 1em 1.5em;
  color: rgba(249, 243, 229, 0.75);
  font-size: 0.95em;
  font-weight: 500;
  text-align: center;
}

.comparison__cell:not(:last-child) {
  border-right: 1px solid rgba(212, 175, 55, 0.06);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.3) 0%,
    var(--color-primary) 100%
  );
}

.testimonials__header {
  text-align: center;
  margin-bottom: 2.5em;
}

.testimonials__header h2 {
  color: var(--color-light);
  margin-bottom: 0.5em;
}

.testimonials__header p {
  color: rgba(249, 243, 229, 0.6);
  font-size: 1em;
}

.testimonials-swiper {
  max-width: 50em;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__card {
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius--large);
  padding: 2.5em 3em;
  backdrop-filter: blur(10px);
  text-align: center;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 0.5em;
  height: 0.5em;
  background: rgba(212, 175, 55, 0.25);
  opacity: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

.testimonials__stars {
  display: flex;
  justify-content: center;
  gap: 0.25em;
  margin-bottom: 1em;
}

.testimonials__star--filled {
  color: var(--color-secondary);
}

.testimonials__text {
  margin: 0 0 1.5em;
}

.testimonials__text p {
  color: rgba(249, 243, 229, 0.7);
  font-size: 0.95em;
  line-height: 1.6;
  font-style: italic;
}

.testimonials__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
}

.testimonials__avatar {
  width: 2.8em;
  height: 2.8em;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.25);
}

.testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.testimonials__name {
  color: var(--color-light);
  font-weight: 600;
  font-size: 0.9em;
}

.testimonials__location {
  color: var(--color-gray);
  font-size: 0.8em;
}

/* ==========================================================================
   WHATSAPP PROOF SECTION
   ========================================================================== */
.whatsapp-proof {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.3) 0%,
    var(--color-primary) 100%
  );
}

.whatsapp-proof__header {
  text-align: center;
  margin-bottom: 2.5em;
}

.whatsapp-proof__header h2 {
  color: var(--color-light);
  margin-bottom: 0.5em;
}

.whatsapp-proof__header p {
  color: rgba(249, 243, 229, 0.6);
  font-size: 1em;
}

.whatsapp-proof-swiper {
  max-width: 50em;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 2.5em;
}

.whatsapp-proof__image {
  border-radius: var(--border-radius--large);
  overflow: hidden;
  background: rgba(28, 28, 28, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.whatsapp-proof__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.whatsapp-proof-swiper .swiper-pagination {
  bottom: 0;
}

.whatsapp-proof-swiper .swiper-pagination-bullet {
  width: 0.5em;
  height: 0.5em;
  background: rgba(212, 175, 55, 0.25);
  opacity: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}

.whatsapp-proof-swiper .swiper-pagination-bullet-active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, #0a0a0a 100%);
}

.stats__header {
  text-align: center;
  margin-bottom: 3em;
}

.stats__header h2 {
  color: var(--color-light);
  margin-bottom: 0.5em;
}

.stats__header p {
  color: rgba(249, 243, 229, 0.6);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius--large);
  overflow: hidden;
}

.stats__item {
  text-align: center;
  padding: 3em 2em;
  position: relative;
  background: transparent;
  transition: background 0.3s;
}

.stats__item:not(:last-child) {
  border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.stats__item:hover {
  background: rgba(212, 175, 55, 0.04);
}

.stats__icon {
  width: 3.2em;
  height: 3.2em;
  margin: 0 auto 1.2em;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em;
}

.stats__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stats__number {
  color: var(--color-secondary);
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 0.15em;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
}

.stats__prefix,
.stats__suffix {
  font-size: 0.55em;
  opacity: 0.7;
  vertical-align: super;
}

.stats__label {
  color: rgba(249, 243, 229, 0.5);
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5em;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: linear-gradient(
    180deg,
    var(--color-primary) 0%,
    rgba(28, 28, 28, 0.3) 100%
  );
}

.faq__header {
  text-align: center;
  margin-bottom: 2.5em;
}

.faq__header h2 {
  color: var(--color-light);
}

.faq__list {
  max-width: 50em;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.our-faq__item {
  background: rgba(28, 28, 28, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--border-radius--medium);
  overflow: hidden;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.our-faq__item:hover {
  border-color: rgba(212, 175, 55, 0.15);
}

.our-faq__item--active {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.03);
}

.our-faq__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2em 1.5em;
  cursor: pointer;
  gap: 1em;
  transition: background 0.3s;
}

.our-faq__top:hover {
  background: rgba(212, 175, 55, 0.04);
}

.our-faq__top h3 {
  color: var(--color-light);
  font-size: 1em;
  font-weight: 600;
  margin: 0;
}

.our-faq__icon {
  flex-shrink: 0;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
  display: flex;
}

.our-faq__item--active .our-faq__icon {
  transform: rotate(180deg);
}

.our-faq__bottom {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.our-faq__item--active .our-faq__bottom {
  max-height: 20em;
}

.our-faq__answer {
  padding: 0 1.5em 1.5em;
}

.our-faq__answer p {
  color: rgba(249, 243, 229, 0.65);
  font-size: 0.95em;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIBLE GAMING
   ========================================================================== */
.responsible {
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.responsible-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}

.responsible-wrap h2 {
  color: var(--color-light);
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.red-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  background: #cc0000;
  color: #fff;
  font-weight: 700;
  font-size: 0.9em;
  border-radius: 50%;
  line-height: 1;
}

.red-18 span {
  font-size: 0.65em;
  vertical-align: super;
}

.responsible-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25em;
  flex-wrap: wrap;
}

.responsible-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius--medium);
  padding: 0.8em 1.25em;
  transition:
    opacity 0.3s,
    border-color 0.3s,
    transform 0.3s;
  opacity: 0.65;
}

.responsible-box:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.responsible-box img {
  height: 2em;
  width: auto;
  transition: filter 0.3s;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding-top: var(--gap);
  padding-bottom: 2em;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.site-footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3em;
  margin-bottom: 2em;
}

.site-footer__logo img {
  height: 2.5em;
  width: auto;
  margin-bottom: 1em;
}

.site-footer__logo a {
  text-decoration: none;
}

.site-footer__logo p {
  color: rgba(249, 243, 229, 0.5);
  font-size: 0.85em;
  line-height: 1.6;
}

.site-footer_nav h4 {
  color: var(--color-secondary);
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
}

.site-footer_nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.site-footer_nav .menu-item a {
  color: rgba(249, 243, 229, 0.5);
  font-size: 0.9em;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer_nav .menu-item a:hover {
  color: var(--color-secondary);
}

.site-footer_wa p {
  color: rgba(249, 243, 229, 0.5);
  font-size: 0.85em;
  line-height: 1.6;
  margin-bottom: 1.25em;
}

.site-footer__copyright {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 1.5em;
  text-align: center;
}

.site-footer__copyright p {
  color: var(--color-gray);
  font-size: 0.8em;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  z-index: 999;
  width: 2.5em;
  height: 2.5em;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  text-decoration: none;
  box-shadow:
    0 4px 16px rgba(0, 170, 64, 0.4),
    0 0 40px rgba(0, 170, 64, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 170, 64, 0.4);
  animation: wa-ring 2.5s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow:
    0 6px 24px rgba(0, 170, 64, 0.5),
    0 0 60px rgba(0, 170, 64, 0.25);
}

/* ==========================================================================
   PAGE TITLE (About, Contact)
   ========================================================================== */
.page-title {
  padding-top: calc(var(--header-height) + 4em);
  padding-bottom: 2em;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 3em;
  height: 3px;
  background: var(--button-gradient);
  margin: 0.75em auto 0;
  border-radius: 99px;
}

.page-title h1 {
  color: var(--color-light);
}

/* ==========================================================================
   PAGE CONTENT (About Us)
   ========================================================================== */
.page-content {
  padding-top: var(--gap);
  padding-bottom: var(--section-padding);
}

.page-content-box {
  max-width: 50em;
  margin: 0 auto;
}

.page-content-box h2 {
  color: var(--color-secondary);
  font-size: var(--font-size--h5);
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.page-content-box h2:first-child {
  margin-top: 0;
}

.page-content-box p {
  color: rgba(249, 243, 229, 0.7);
  line-height: 1.7;
  font-size: 0.95em;
}

.page-content-box ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.page-content-box li {
  color: rgba(249, 243, 229, 0.7);
  font-size: 0.95em;
  line-height: 1.6;
  padding-left: 1.5em;
  position: relative;
}

.page-content-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.page-content-box li strong {
  color: var(--color-secondary);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact {
  padding-top: calc(var(--header-height) + 4em);
  padding-bottom: var(--section-padding);
}

.contact__content {
  max-width: 42em;
  margin: 0 auto;
}

.contact__title {
  text-align: center;
  margin-bottom: 2.5em;
}

.contact__title h1 {
  color: var(--color-light);
  margin-bottom: 0.75em;
}

.contact__title p {
  color: rgba(249, 243, 229, 0.6);
  font-size: 0.95em;
  line-height: 1.6;
}

.wpcf7-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
}

.col-md-6 {
  grid-column: span 1;
}
.col-md-12 {
  grid-column: span 2;
}

.form-inner label {
  display: block;
  color: var(--color-light);
  font-size: 0.85em;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.form-inner label span {
  color: var(--color-secondary);
}

.form-inner input[type="text"],
.form-inner input[type="email"],
.form-inner textarea {
  width: 100%;
  background: rgba(28, 28, 28, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius--medium);
  color: var(--color-light);
  font-family: inherit;
  font-size: 0.95em;
  padding: 0.8em 1em;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
}

.form-inner input:focus,
.form-inner textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-inner textarea {
  resize: vertical;
  min-height: 8em;
}

.wpcf7-form p {
  margin-bottom: 0;
}

.hidden-fields-container {
  display: none;
}

/* ==========================================================================
   FADE-UP ANIMATION
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.swiper-pagination {
  position: relative !important;
  margin-top: 3em;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes glow-line {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

/* ==========================================================================
   RESPONSIVE — TABLET (max 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .hero-block__stats {
    gap: 1.5em;
    flex-wrap: wrap;
  }

  .features__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .security__cards {
    justify-content: center;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }

  .site-footer_wa {
    grid-column: span 2;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE LANDSCAPE (max 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 12px;
    right: 12px;
  }
  .comparison__row {
    min-width: 600px;
  }
  .hero-block__buttons {
    flex-direction: column;
  }

  .btn-wa--xl {
    font-size: 1em;
    padding: 0.9em 2em;
    width: 100%;
    justify-content: center;
  }

  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-block__stats {
    flex-direction: column;
    gap: 1em;
  }

  .features__cards,
  .features__cards--4 {
    grid-template-columns: 1fr;
  }

  .security__cards {
    justify-content: center;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    gap: 0;
  }

  .stats__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .testimonials__card {
    padding: 2em 1.5em;
  }

  .whatsapp-proof-swiper {
    max-width: 100%;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .site-footer_wa {
    grid-column: auto;
  }

  .author-block__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-block__avatar {
    margin: 0 auto;
  }

  .author-block__text .author-position {
    margin-left: auto;
    margin-right: auto;
  }

  .journey__steps::before {
    display: none;
  }

  .wpcf7-form .row {
    grid-template-columns: 1fr;
  }

  .col-md-6,
  .col-md-12 {
    grid-column: span 1;
  }

  .comparison__cell {
    padding: 0.75em 0.75em;
    font-size: 0.85em;
  }

  .responsible-wrap {
    flex-direction: column;
    text-align: center;
  }

  .responsible-wrap h2 {
    justify-content: center;
  }

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

  .responsible-box img {
    height: 1.8em;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE PORTRAIT (max 479px)
   ========================================================================== */
@media (max-width: 479px) {
  .hero-block h1 {
    font-size: 1.8em;
  }

  .payment__logo {
    height: 2em;
  }

  .whatsapp-float {
    width: 3em;
    height: 3em;
    font-size: 1.3em;
    bottom: 1em;
    right: 1em;
  }
}
