/* ================================================================
   MALLIX.CL — Global CSS v3
   Mobile-first + Full Desktop Responsive
   Colors: #3366ff (blue) | #0f0e1a (dark) | #2C419A (navy) | #ffcc33 (gold)
   ================================================================ */

:root {
  --blue:      #3366ff;
  --blue-dk:   #2C419A;
  --dark:      #0f0e1a;
  --gold:      #ffcc33;
  --gold-dk:   #e6b800;
  --white:     #ffffff;
  --light:     #f4f6ff;
  --gray:      #6b7280;
  --gray-lt:   #9ca3af;
  --border:    #e5e7eb;
  --wa:        #25d366;
  --r:         16px;
  --shadow:    0 2px 16px rgba(51,102,255,.10);
  --shadow-lg: 0 8px 40px rgba(51,102,255,.18);
  --font:      'Open Sans', sans-serif;
  --wa-num:    "56929989883";
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }
ul { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 20px; } }

.section    { padding: 64px 0; }
.section-sm { padding: 44px 0; }
@media (min-width: 768px) {
  .section    { padding: 96px 0; }
  .section-sm { padding: 64px 0; }
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1 { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.18; }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; line-height: 1.4; }
p  { font-size: .97rem; color: #374151; line-height: 1.7; }

.tc { text-align: center; }
.text-blue  { color: var(--blue); }
.text-gold  { color: var(--gold); }
.text-white { color: #fff; }
.text-gray  { color: var(--gray); }

/* ── LABELS ─────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.label-blue  { background: rgba(51,102,255,.1); color: var(--blue); }
.label-gold  { background: rgba(255,204,51,.2);  color: #856a00; }
.label-white { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.label-dark  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 100px;
  font-weight: 700; font-size: .97rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  white-space: nowrap; line-height: 1;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn:active { transform: scale(.97); }
.btn-lg     { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm     { padding: 10px 18px; font-size: .88rem; }

.btn-blue         { background: var(--blue);  color: #fff; border-color: var(--blue); }
.btn-blue:hover   { background: #254ee6; border-color: #254ee6; }
.btn-gold         { background: var(--gold);  color: var(--dark); border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-wa           { background: var(--wa);    color: #fff; border-color: var(--wa); }
.btn-wa:hover     { background: #1eba55; }
.btn-dark         { background: var(--dark);  color: #fff; border-color: var(--dark); }
.btn-outline-w    { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-w:hover { background: rgba(255,255,255,.12); }

/* Button rows */
.btn-row {
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 480px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; align-items: center; }
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 16px;
}
.nav-logo img { height: 34px; width: auto; }

/* Desktop links */
.nav-links {
  display: none; align-items: center; gap: 2px;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 7px 12px; border-radius: 8px;
  font-size: .86rem; font-weight: 600; color: var(--dark);
  transition: background .15s, color .15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--light); color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 8px 18px; border-radius: 100px;
  font-size: .85rem; font-weight: 700;
  display: none;
  transition: background .15s;
}
.nav-cta:hover { background: #254ee6; }
@media (min-width: 480px) { .nav-cta { display: inline-flex; } }

.nav-wa-link {
  background: var(--wa); color: #fff;
  padding: 7px 14px; border-radius: 100px;
  font-size: .82rem; font-weight: 700;
  display: none;
}
.nav-wa-link:hover { background: #1eba55; }
@media (min-width: 960px) { .nav-wa-link { display: inline-flex; } }

/* Hamburger */
.ham {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; border-radius: 8px;
}
.ham span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
@media (min-width: 960px) { .ham { display: none; } }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999;
  padding: 24px 20px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 1.05rem; font-weight: 600; color: var(--dark);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mm-wa {
  margin-top: 20px; background: var(--wa); color: #fff;
  border-radius: var(--r); padding: 16px 20px;
  justify-content: center; border: none;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 997;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
  cursor: pointer; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg   { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.7); }
}

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--r);
  box-shadow: var(--shadow); padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── GRIDS ──────────────────────────────────────────── */
.g2 { display: grid; gap: 20px; }
.g3 { display: grid; gap: 16px; }
.g4 { display: grid; gap: 14px; }
@media (min-width: 600px)  { .g2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { .g3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px)  { .g4 { grid-template-columns: repeat(4,1fr); } }

/* Two-col hero layout */
.hero-cols {
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 768px) {
  .hero-cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .hero-cols { grid-template-columns: 55% 45%; gap: 60px; }
}

/* ── AUTO-SCROLL SLIDER ─────────────────────────────── */
.slider-outer {
  position: relative; overflow: hidden;
  /* Subtle fade on edges - desktop only */
}
@media (min-width: 768px) {
  .slider-outer::before,
  .slider-outer::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
    pointer-events: none;
  }
  .slider-outer::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
  .slider-outer.bg-light-fade::before { background: linear-gradient(to right, var(--light), transparent); }
  .slider-outer.bg-light-fade::after  { background: linear-gradient(to left,  var(--light), transparent); }
  .slider-outer::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
}

.slider-track {
  display: flex; gap: 16px;
  animation: slide-auto 28s linear infinite;
  width: max-content;
}
.slider-track:hover { animation-play-state: paused; }

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

/* Manual scroll fallback on mobile */
.slider-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
}
.slider-scroll::-webkit-scrollbar { display: none; }
.slider-scroll:active { cursor: grabbing; }

/* Arrow buttons */
.slider-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 20px;
}
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: var(--dark);
  transition: all .15s; box-shadow: var(--shadow);
}
.slider-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── SERVICE CARDS (image + text) ───────────────────── */
.svc-card {
  border-radius: var(--r); overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0; width: 260px;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card img   { width: 100%; height: 180px; object-fit: cover; }
.svc-card-body  { padding: 18px; }
.svc-card-body h4 { margin-bottom: 6px; }
.svc-card-body p  { font-size: .85rem; color: var(--gray); }
@media (min-width: 768px) { .svc-card { width: auto; } }

/* ── BENEFIT CARDS ─────────────────────────────────── */
.bcard {
  background: #fff; border-radius: var(--r);
  box-shadow: var(--shadow); padding: 24px 20px;
  text-align: center; transition: transform .2s, box-shadow .2s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bcard .ico {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}
.bcard h4 { margin-bottom: 6px; font-size: .95rem; }
.bcard p  { font-size: .83rem; color: var(--gray); }

/* ── GUARANTEE PILLS ────────────────────────────────── */
.gpill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid rgba(51,102,255,.1);
  border-radius: 100px; padding: 9px 18px;
  font-size: .86rem; font-weight: 600;
  box-shadow: var(--shadow); white-space: nowrap; flex-shrink: 0;
}

/* ── STEPS ──────────────────────────────────────────── */
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 0; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
  font-weight: 700; font-size: .97rem; color: var(--dark); cursor: pointer;
}
.faq-icon { font-size: 1.3rem; color: var(--blue); transition: transform .25s; flex-shrink: 0; margin-top: 1px; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; font-size: .9rem; color: var(--gray); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 16px; }

/* ── FORMS ──────────────────────────────────────────── */
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: .86rem; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: .95rem; color: var(--dark);
  background: #fff; transition: border-color .18s;
  -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(51,102,255,.1);
}
.fg textarea { min-height: 90px; resize: vertical; }
/* Date input calendar icon fix */
.fg input[type="date"] {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  background-size: 18px; padding-right: 42px;
}

.fg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg-grid .full { grid-column: 1/-1; }
@media (max-width: 480px) { .fg-grid { grid-template-columns: 1fr; } .fg-grid .full { grid-column: 1; } }

/* ── CALC BOX ───────────────────────────────────────── */
.calc-box {
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 40px rgba(51,102,255,.12); padding: 28px 24px;
}
@media (min-width: 600px) { .calc-box { padding: 36px 32px; } }

/* Result gradient box */
.result-box {
  background: linear-gradient(135deg, #152070, var(--blue));
  border-radius: 16px; padding: 24px 20px; margin-top: 20px; display: none;
}
.result-box.show { display: block; }
.rr { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; }
.rr:last-of-type { border: none; }
.rl  { font-size: .86rem; opacity: .82; }
.rv  { font-weight: 800; }
.rv-big { font-size: 1.5rem; color: var(--gold); }
.rv-sub { font-size: .84rem; opacity: .7; font-weight: 600; }
.note-min { display: none; margin: 8px 0; background: rgba(255,204,51,.18); border-radius: 8px; padding: 9px 12px; font-size: .78rem; color: rgba(255,255,255,.85); }
.note-min.show { display: block; }

/* Malla cards */
.malla-card {
  flex-shrink: 0; width: 165px;
  border: 2.5px solid var(--border); border-radius: 14px;
  padding: 16px 12px; text-align: center; cursor: pointer;
  transition: all .18s; background: #fff;
}
.malla-card:hover { border-color: var(--blue); }
.malla-card.on { border-color: var(--blue); background: rgba(51,102,255,.05); box-shadow: 0 0 0 3px rgba(51,102,255,.1); }
.malla-card .mc-ico  { font-size: 1.6rem; margin-bottom: 8px; }
.malla-card .mc-name { font-weight: 800; font-size: .88rem; margin-bottom: 3px; }
.malla-card .mc-spec { font-size: .73rem; color: var(--gray); margin-bottom: 8px; line-height: 1.4; }
.malla-card .mc-price { background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; display: inline-block; }

/* ML preview */
.ml-preview { display: none; background: rgba(51,102,255,.08); border-radius: 10px; padding: 11px 14px; margin-top: 8px; font-size: .85rem; color: var(--blue); font-weight: 700; }

/* Pilar toggle */
.pilar-box { background: var(--light); border-radius: 12px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; user-select: none; }
.pilar-box label { font-weight: 600; font-size: .92rem; cursor: pointer; flex: 1; }
.pilar-box small { display: block; font-weight: 400; font-size: .78rem; color: var(--gray); margin-top: 2px; }
.tog { width: 46px; height: 25px; background: #d1d5db; border-radius: 100px; position: relative; transition: background .2s; border: none; flex-shrink: 0; cursor: pointer; }
.tog::after { content: ''; position: absolute; left: 3px; top: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2); transition: left .2s; }
.tog.on { background: var(--blue); }
.tog.on::after { left: 24px; }
.pilar-cnt { display: none; align-items: center; gap: 8px; flex-shrink: 0; }
.pilar-cnt.show { display: flex; }
.pilar-cnt button { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--blue); background: #fff; color: var(--blue); font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.pilar-cnt .pn { font-weight: 800; min-width: 18px; text-align: center; }

/* ── SECTION DIVIDERS & BACKGROUNDS ─────────────────── */
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark); }
.bg-blue  { background: var(--blue); }

/* ── STRIPS ─────────────────────────────────────────── */
.strip { border-radius: 20px; padding: 36px 28px; }
.strip-blue { background: var(--blue); }
.strip-blue h2, .strip-blue h3 { color: #fff; margin-bottom: 10px; }
.strip-blue p { color: rgba(255,255,255,.82); margin-bottom: 20px; }
.strip-gold { background: var(--gold); }
.strip-gold p { color: rgba(0,0,0,.65); margin-bottom: 20px; }
.strip-gold h2, .strip-gold h3 { margin-bottom: 10px; }

/* ── PROCESS STEPS ──────────────────────────────────── */
.proc { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.proc:last-child { border: none; }
.proc-n { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: .95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proc h4 { margin-bottom: 3px; font-size: .93rem; }
.proc p  { font-size: .84rem; color: var(--gray); }

/* ── HERO SECTION ───────────────────────────────────── */
.hero-wrap {
  background: linear-gradient(150deg, #060c2e 0%, #0e1e6e 55%, #1a2a8a 100%);
  padding-top: 66px; /* navbar height */
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-wrap::before {
  content: '';
  position: absolute; top: 10%; left: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(51,102,255,.28) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap::after {
  content: '';
  position: absolute; bottom: 5%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,204,51,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Mobile hero: image on top, content below */
.hero-img-wrap {
  display: flex; justify-content: center; align-items: flex-end;
  padding: 32px 20px 0;
  position: relative; z-index: 1;
}
.hero-img-wrap img {
  max-height: 42svh;
  width: auto; max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(51,102,255,.4));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-content-wrap {
  color: #fff; padding: 28px 20px 48px;
  text-align: center; position: relative; z-index: 1;
}
.hero-content-wrap h1 { color: #fff; margin-bottom: 14px; }
.hero-content-wrap p  { color: rgba(255,255,255,.8); font-size: 1.02rem; max-width: 480px; margin: 0 auto 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; margin-top: 24px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* Desktop: side by side */
@media (min-width: 768px) {
  .hero-wrap { min-height: 100vh; }
  .hero-inner { display: grid; grid-template-columns: 55% 45%; align-items: center; gap: 0; }
  .hero-img-wrap { padding: 60px 20px 40px; align-items: center; }
  .hero-img-wrap img { max-height: 70vh; max-width: 100%; }
  .hero-content-wrap { text-align: left; padding: 60px 40px 60px 20px; }
  .hero-content-wrap p { margin: 0 0 28px; }
  .hero-trust { justify-content: flex-start; }
}

/* ── PHOTO SECTIONS ─────────────────────────────────── */
.photo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.photo-pair img {
  width: 100%; border-radius: var(--r);
  object-fit: cover; aspect-ratio: 4/3;
}
.photo-pair.tall img { aspect-ratio: 3/4; }

/* ── RENEW SECTION ──────────────────────────────────── */
.renew-box {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2a6e 100%);
  border-radius: 20px; overflow: hidden;
}
/* Mobile: stacked */
.renew-content { padding: 36px 28px; color: #fff; }
.renew-content h2 { color: #fff; margin-bottom: 12px; }
.renew-content p  { color: rgba(255,255,255,.78); margin-bottom: 24px; }
/* SuperMallix in renew: always show as separate block, not overlapping */
.renew-sm {
  display: flex; justify-content: center;
  background: linear-gradient(135deg, #0a1540 0%, #1a2a6e 100%);
  padding: 24px 20px 0;
}
.renew-sm img { max-height: 240px; width: auto; }

@media (min-width: 768px) {
  .renew-box  { display: grid; grid-template-columns: 1fr 1fr; }
  .renew-sm   { padding: 0; align-items: flex-end; }
  .renew-sm img { max-height: 320px; }
}

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2a6e 100%);
  padding: 110px 0 64px; text-align: center; color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ── FOOTER ─────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 56px 0 28px; }
.footer-logo  { height: 30px; width: auto; margin-bottom: 16px; }
.footer-desc  { font-size: .88rem; line-height: 1.75; margin-bottom: 12px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.65); transition: background .15s, color .15s; flex-shrink: 0; } .footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--blue); color: #fff; }
.footer-grid { display: grid; gap: 28px; margin-bottom: 40px; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2.5fr 1fr 1fr 1fr; } }
.footer-col h4 { color: #fff; font-size: .88rem; margin-bottom: 14px; }
.footer-col a  { display: block; color: rgba(255,255,255,.55); font-size: .86rem; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p  { font-size: .83rem; color: rgba(255,255,255,.35); margin-top: 8px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; font-size: .8rem; color: rgba(255,255,255,.3); display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }

/* ── STATS (dark bg) ────────────────────────────────── */
.stat-box { text-align: center; padding: 24px 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── UTILITY ────────────────────────────────────────── */
.mb8  { margin-bottom: 8px; }
.mb12 { margin-bottom: 12px; }
.mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; }
.mb32 { margin-bottom: 32px; }
.mb40 { margin-bottom: 40px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt32 { margin-top: 32px; }
.mt40 { margin-top: 40px; }
.divider { border: none; border-top: 2px solid var(--border); margin: 24px 0; }

/* ── RESPONSIVE HELPERS ─────────────────────────────── */
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile  { display: block; }
  .hide-desktop { display: none; }
}

/* Image fill with object-fit */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.rounded   { border-radius: var(--r); overflow: hidden; }
