/* ============================================================
   TISTAN NEXT — CSS Principal
  Paleta: Navy #213b52 | Cyan #00f5ff
   ============================================================ */

:root {
  --navy:       #213b52;
  --navy-mid:   #204564;
  --navy-deep:  #1a2e40;
  --navy-light: #2d5576;
  --gold:       #00f5ff;
  --gold-light: #66fbff;
  --gold-dark:  #00c7d1;
  --text:       #444444;
  --text-light: #6c757d;
  --bg-light:   #f2f6fa;
  --white:      #ffffff;
  --nav-link:   #adc7de;
  --border:     #dde8f1;
  --shadow-sm:  0 2px 15px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

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

/* ── GLOBAL BUTTONS ───────────────────────────────────────── */
.btn-accent {
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: 50px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  padding: .45rem 1.4rem;
}
.btn-accent:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,245,255,.4);
}

.btn-outline-accent {
  background: transparent;
  color: var(--gold) !important;
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: 50px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  padding: .45rem 1.4rem;
}
.btn-outline-accent:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.6) !important;
  color: #fff !important;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: #fff !important;
}

.btn-outline-primary-dark {
  background: transparent;
  color: var(--navy) !important;
  font-weight: 600;
  border: 2px solid var(--navy);
  border-radius: 50px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  padding: .55rem 1.6rem;
}
.btn-outline-primary-dark:hover {
  background: var(--navy);
  color: #fff !important;
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: rgba(0,245,255,.15);
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  border: 1px solid rgba(0,245,255,.3);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.accent-text { color: var(--gold-dark); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

section { padding: 80px 0; overflow: hidden; }
.section-light { background: var(--bg-light); }

/* ── PRELOADER ────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.preloader-logo span { color: var(--gold); }

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 10px;
  animation: preload 1.8s ease forwards;
}
@keyframes preload { from { width: 0; } to { width: 100%; } }

/* ── SPLASH SCREEN ─────────────────────────────────────────── */
.splash-screen {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a54 100%);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
  opacity: 1;
  visibility: visible;
}
.splash-screen.hidden { opacity: 0; visibility: hidden; }

.splash-content {
  text-align: center;
  animation: splash-float 1.2s ease-in-out forwards;
}

.splash-text {
  display: inline-block;
}
.splash-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
  margin: 0;
  line-height: 1;
}
.splash-text .accent { color: var(--gold); }

@keyframes splash-float {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── TOPBAR ───────────────────────────────────────────────── */
#topbar {
  background: var(--navy-deep);
  padding: .45rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar-union-logo {
  height: 20px;
  filter: brightness(10);
  opacity: .85;
  vertical-align: middle;
  margin-right: .35rem;
}
.topbar-badge {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.75);
}
.topbar-badge strong { color: var(--gold); }
.topbar-right a {
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  transition: var(--transition);
}
.topbar-right a:hover { color: var(--gold); }
.topbar-right i { margin-right: .3rem; color: var(--gold); }

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  background: var(--navy);
  padding: 0;
  /* padding: .75rem 0; */
  position: sticky;
  top: 33px;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: var(--transition);
}
#navbar.scrolled {
  top: 0;
  padding: .5rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.nav-logo-img {
  height: 64px;
  margin-right: .5rem;
  vertical-align: middle;
}
.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  vertical-align: middle;
}
.nav-logo-text .accent { color: var(--gold); }

#navbar .nav-link {
  color: var(--nav-link) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem .85rem !important;
  border-radius: 6px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
#navbar .nav-link:hover,
#navbar .nav-link.active { color: #fff !important; background: rgba(255,255,255,.08); }

.navbar-toggler {
  border: none;
  color: var(--gold);
  font-size: 1.25rem;
  padding: .3rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a54 100%);
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: #2d8fc4;
  bottom: -100px; left: -100px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(0,245,255,.4);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
}
.hero-badge-logo {
  height: 18px;
  filter: brightness(10);
  opacity: .85;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #d2e0ed;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--gold) 0%, #9cfdff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}
.hero-subtitle strong { color: #fff; }

/* Stats */
.hero-stats { gap: 1.5rem; }

.stat-item { text-align: center; }
.stat-item-message {
  max-width: 270px;
  display: flex;
  align-items: center;
  gap: .8rem;
  text-align: left;
}
.stat-item-message i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .15rem; text-transform: uppercase; letter-spacing: 1px; }
.stat-item-message .stat-label {
  margin-top: 0;
  line-height: 1.5;
}
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.2); }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }

.hero-phone-mockup {
  position: relative;
  display: inline-block;
}

.phone-frame {
  width: 280px;
  background: var(--navy-deep);
  border-radius: 40px;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 80px; height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  margin: 14px auto 0;
}

.phone-screen {
  padding: 12px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sms-bubble {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px 16px 16px 4px;
  padding: 10px 12px;
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateX(-20px);
  animation: bubbleIn .5s ease forwards;
}
.sms-bubble.delay-1 { animation-delay: .8s; }
.sms-bubble.delay-2 { animation-delay: 1.6s; }

@keyframes bubbleIn {
  to { opacity: 1; transform: translateX(0); }
}

.sms-from {
  font-size: .65rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .3rem;
}
.sms-bubble p { font-size: .78rem; color: rgba(255,255,255,.85); margin: 0; line-height: 1.4; }
.sms-bubble span { font-size: .62rem; color: rgba(255,255,255,.4); display: block; text-align: right; margin-top: .3rem; }

.phone-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: var(--gold);
  filter: blur(30px);
  opacity: .3;
  border-radius: 50%;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.fb-1 { top: 30px; right: -40px; animation-delay: 0s; }
.fb-2 { top: 50%; right: -50px; animation-delay: 1s; }
.fb-3 { bottom: 60px; right: -40px; animation-delay: 2s; }
.floating-badge i { color: var(--gold); margin-right: .3rem; }

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

/* Hero wave */
.hero-wave {
  line-height: 0;
  position: relative;
  bottom: -1px;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ── UNION STRIP ──────────────────────────────────────────── */
.union-strip {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 3px solid var(--gold);
}

.strip-union-logo {
  height: 36px;
  filter: brightness(10);
  opacity: .9;
}
.strip-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 1rem; }
.strip-sub { font-size: .78rem; color: rgba(255,255,255,.6); }

.strip-feat {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.strip-feat i { color: var(--gold); margin-right: .4rem; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.about-icon-box:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.aib-icon {
  min-width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.about-icon-box h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.about-icon-box p { font-size: .88rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* About visual */
.about-visual { position: relative; padding-bottom: 40px; }

.av-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(33,59,82,.08);
}

.av-header {
  background: linear-gradient(180deg, #fbfcfd 0%, #eff4f8 100%);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid var(--border);
}
.av-dot { width: 10px; height: 10px; border-radius: 50%; }
.av-dot.red   { background: #ff5f57; }
.av-dot.yellow{ background: #febc2e; }
.av-dot.green { background: #28c940; }
.av-label { font-size: .8rem; font-weight: 600; color: var(--text-light); margin-left: .5rem; }

.av-body { padding: 1rem; }

.av-shot-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #173247 0%, #274b67 100%);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}

.av-shot-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,17,24,.06) 0%, rgba(10,17,24,.24) 100%),
    linear-gradient(120deg, rgba(255,255,255,.18) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.av-panel-shot {
  display: block;
  width: 100%;
  height: auto;
}

.av-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.av-overlay-top { top: 20px; }
.av-overlay-bottom { bottom: 20px; }

.av-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: rgba(16,28,40,.72);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.av-pill i { color: var(--gold); }

.av-pill.success {
  background: rgba(10,92,79,.78);
}

.av-pill.success i { color: #88f7ce; }

.av-kpi-card {
  margin-left: auto;
  max-width: 260px;
  padding: .95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 35px rgba(12,28,43,.18);
}

.av-kpi-card strong {
  display: block;
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: .2rem;
}

.av-kpi-card span {
  display: block;
  font-size: .76rem;
  line-height: 1.5;
  color: var(--text-light);
}

.av-badge-union {
  position: absolute;
  bottom: 0; right: 30px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: .75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-md);
}
.av-badge-union img { height: 28px; filter: brightness(10); opacity: .9; }
.av-badge-union span { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.av-badge-union strong { color: var(--gold); }

/* ── FEATURES ─────────────────────────────────────────────── */
.features-section {
  background: linear-gradient(180deg, var(--white) 0%, #e8f0f7 100%);
}

.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-card:hover::after { transform: scaleX(1); }

.feat-card.featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: #fff;
  border-color: transparent;
}
.feat-card.featured h4 { color: #fff; }
.feat-card.featured p { color: rgba(255,255,255,.75); }
.feat-card.featured .feat-icon { background: rgba(0,245,255,.15); }

.feat-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(33,59,82,.08), rgba(33,59,82,.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.feat-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.feat-card p  { font-size: .88rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ── USE NOW ──────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 1.75rem; }

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  min-width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(33,59,82,.3);
}

.step-content h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: .35rem; }
.step-content p  { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin: 0; }

.usenow-cta-box {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.usenow-cta-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(0,245,255,.1);
  border-radius: 50%;
}

.ucb-top { text-align: center; margin-bottom: 1.5rem; }
.ucb-top i { color: var(--gold); }
.ucb-top h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: .5rem; }
.ucb-top p  { font-size: .9rem; color: rgba(255,255,255,.75); margin: 0; }

.ucb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1rem;
}
.ucb-features span {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.ucb-features i { color: var(--gold); margin-right: .4rem; }

.ucb-note { font-size: .78rem; color: rgba(255,255,255,.5); margin: 0; }
.ucb-note strong { color: var(--gold); }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-section { background: var(--white); }

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.price-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pc-best {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: .3rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pc-header { text-align: center; margin-bottom: 1.75rem; }

.pc-plan {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .75rem;
}

.pc-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .2rem;
  line-height: 1;
  margin-bottom: .4rem;
}
.pc-currency { font-size: 1.2rem; font-weight: 700; color: var(--navy); padding-top: .4rem; }
.pc-value    { font-size: 3rem; font-weight: 800; color: var(--gold-dark); font-family: 'Poppins', sans-serif; }
.pc-unit     { font-size: 1rem; font-weight: 500; color: var(--text-light); padding-top: 1.5rem; }
.pc-min      { font-size: .82rem; color: var(--text-light); margin: 0; }
.pc-min strong { color: var(--navy); }

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  flex: 1;
}
.pc-features li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.pc-features li:last-child { border-bottom: none; }
.pc-features i { color: var(--gold-dark); font-size: .9rem; flex-shrink: 0; }

.pricing-note {
  font-size: .88rem;
  color: var(--text-light);
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pricing-note i { color: var(--gold-dark); }
.pricing-note a { font-weight: 600; color: var(--navy); }
.pricing-note a:hover { color: var(--gold-dark); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--bg-light); }

.faq-accordion .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: .85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  background: var(--white);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
  border-radius: var(--radius) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--navy), var(--navy-mid));
  color: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) i { color: var(--gold); }
.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23213b52'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300f5ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button i { color: var(--gold-dark); margin-right: .5rem; font-size: .9rem; }

.faq-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); }
.contact-section .section-tag { background: rgba(0,245,255,.15); border-color: rgba(0,245,255,.3); }
.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: rgba(255,255,255,.75); }

.contact-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }

.cc-icon {
  width: 64px; height: 64px;
  background: rgba(0,245,255,.15);
  border: 2px solid rgba(0,245,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}

.contact-card h4 { font-size: 1.05rem; color: #fff; margin-bottom: .75rem; }
.contact-card p, .contact-card p a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin: 0;
}
.contact-card p a:hover { color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────────── */
#footer { background: var(--navy-deep); color: rgba(255,255,255,.75); }

.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo { height: 36px; }
.footer-brand span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: 2px;
}
.footer-brand strong { color: var(--gold); }

.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.25rem;
}

.footer-union {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.footer-union img { height: 22px; filter: brightness(10); opacity: .8; }
.footer-union strong { color: var(--gold); }

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-list i { color: var(--gold); margin-top: .1rem; font-size: .85rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }

.footer-bottom {
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom strong { color: rgba(255,255,255,.65); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 20px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  border: 2px solid var(--gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 25px; right: 20px;
  width: 52px; height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  z-index: 900;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); color: #fff; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  #navbar.scrolled { top: 33px; }
  .price-card.featured { transform: scale(1); }
  .hero-phone-mockup .floating-badge { display: none; }
  .phone-frame { width: 240px; }
  .av-kpi-card { max-width: 220px; }
}

@media (max-width: 767.98px) {
  section { padding: 60px 0; }
  .hero-title { font-size: 1.9rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-item-message { max-width: 100%; }
  .stat-divider { display: none; }
  .feat-card.featured { margin-top: 0; }
  .usenow-cta-box { margin-top: 2rem; }
  .topbar-badge { font-size: .72rem; }
  #topbar { padding: .35rem 0; }
  .av-badge-union { right: 10px; }
  .av-overlay { left: 14px; right: 14px; }
  .av-overlay-top { top: 14px; }
  .av-overlay-bottom { bottom: 14px; }
  .av-pill { font-size: .72rem; padding: .55rem .8rem; }
  .av-kpi-card { max-width: 200px; padding: .8rem .85rem; }
  .ucb-features { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.6rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .strip-features { flex-direction: column; align-items: center; }
  .about-visual { padding-bottom: 54px; }
  .av-body { padding: .75rem; }
  .av-overlay { gap: .5rem; }
  .av-pill.success { display: none; }
  .av-kpi-card { max-width: 170px; }
  .av-badge-union {
    right: 0;
    left: 0;
    bottom: 0;
    width: fit-content;
    margin: 0 auto;
    padding: .7rem 1rem;
  }
}

/* ── AOS-like data-aos animation support ──────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos].animated {
  opacity: 1;
  transform: translate(0, 0);
}
