/* =============================================
   ZEEPLIVE AGENCY - Main Stylesheet
   Design inspired by ZeepLive Brand PDF
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --purple:        #7B1FA2;
  --purple-dark:   #4A0072;
  --purple-mid:    #6A1B9A;
  --purple-light:  #9C27B0;
  --magenta:       #AD1457;
  --magenta-dark:  #880E4F;
  --orange:        #FF8F00;
  --orange-light:  #FFA000;
  --orange-pale:   #FFD54F;
  --cream:         #FAE8D1;
  --cream-light:   #FDF6EE;
  --white:         #FFFFFF;
  --dark:          #1A0533;
  --text:          #2D1B4E;
  --text-mid:      #5D4E7A;
  --text-light:    #9E8FB5;
  --grad-purple:   linear-gradient(135deg, #4A0072 0%, #7B1FA2 50%, #AD1457 100%);
  --grad-hero:     linear-gradient(160deg, #380060 0%, #7B1FA2 45%, #C2185B 100%);
  --grad-orange:   linear-gradient(135deg, #FF8F00, #FFA000);
  --shadow-sm:     0 2px 10px rgba(123,31,162,.12);
  --shadow:        0 4px 24px rgba(123,31,162,.18);
  --shadow-lg:     0 8px 48px rgba(123,31,162,.28);
  --radius:        14px;
  --radius-lg:     24px;
  --radius-pill:   100px;
  --transition:    .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream-light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.display-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-mid); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,143,0,.12);
  padding: .3rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.section-title span { color: var(--purple); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

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

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-purple);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(123,31,162,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123,31,162,.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,143,0,.4);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,143,0,.5);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn-sm { padding: .6rem 1.4rem; font-size: .83rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 5, 51, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 5, 51, .98);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(123,31,162,.5);
}

.logo span { color: var(--orange-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-cta {
  background: var(--grad-orange) !important;
  color: var(--white) !important;
  padding: .5rem 1.3rem !important;
  box-shadow: 0 4px 14px rgba(255,143,0,.35) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,143,0,.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(26,5,51,.97);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-direction: column;
  gap: .5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu a:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(173,20,87,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,143,0,.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative concentric circles (from PDF) */
.hero-deco-circles {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  opacity: .18;
}

.hero-deco-circles::before,
.hero-deco-circles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
}

.hero-deco-circles::before {
  inset: 0;
}

.hero-deco-circles::after {
  inset: 60px;
}

/* Diagonal pill decorations (from PDF) */
.deco-pill {
  position: absolute;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06);
  transform: rotate(-35deg);
  pointer-events: none;
}

.deco-pill-1 { width: 320px; height: 55px; top: 15%; left: -60px; }
.deco-pill-2 { width: 200px; height: 40px; bottom: 20%; right: 15%; }
.deco-pill-3 { width: 140px; height: 30px; top: 60%; left: 30%; opacity: .5; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange-pale);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  font-weight: 900;
  color: var(--orange-pale);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero .btn-group { margin-bottom: 2.5rem; }

/* =============================================
   AGENT ID COMPONENT
   ============================================= */
.agent-id-box {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  backdrop-filter: blur(12px);
}

.agent-id-box.dark {
  background: var(--cream);
  border-color: var(--purple);
}

.agent-id-box.dark .agent-id-label { color: var(--text-mid); }
.agent-id-box.dark .agent-id-value { color: var(--purple-dark); }
.agent-id-box.dark .copy-btn { background: var(--purple); }

.agent-id-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.agent-id-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Poppins', monospace;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.copy-btn:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.copy-btn svg { width: 14px; height: 14px; }

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
  position: fixed;
  bottom: 100px;
  right: 1.5rem;
  background: #1a1a2e;
  color: var(--white);
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .6rem;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: var(--grad-purple);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item { padding: .5rem; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-pale);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1.5px solid rgba(123,31,162,.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,31,162,.2);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--purple);
  transform: scale(1.05);
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--dark);
}

.feature-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* =============================================
   NUMBERED STEPS (like PDF orange circles)
   ============================================= */
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(123,31,162,.07);
  transition: var(--transition);
}

.step-item:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,143,0,.35);
}

.step-text h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem;
  color: var(--dark);
}

.step-text p {
  font-size: .85rem;
  color: var(--text-mid);
  margin: 0;
}

/* =============================================
   COMMISSION TABLES
   ============================================= */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(123,31,162,.12);
}

.comm-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.comm-table thead tr {
  background: var(--grad-purple);
}

.comm-table thead th {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.comm-table thead th:first-child { text-align: left; }

.comm-table tbody tr {
  background: var(--white);
  transition: background .2s;
}

.comm-table tbody tr:nth-child(even) {
  background: rgba(250,232,209,.45);
}

.comm-table tbody tr:hover {
  background: rgba(123,31,162,.06);
}

.comm-table td {
  padding: .9rem 1.25rem;
  font-size: .9rem;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid rgba(123,31,162,.07);
}

.comm-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
}

.comm-badge {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
}

/* =============================================
   BENEFITS CARDS
   ============================================= */
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  border: 1.5px solid rgba(123,31,162,.07);
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(123,31,162,.2);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(123,31,162,.12), rgba(173,20,87,.08));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.benefit-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--dark);
}

.benefit-card p {
  font-size: .85rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(123,31,162,.07);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,31,162,.2);
}

.blog-card-img {
  width: 100%;
  height: 160px;
  background: var(--grad-purple);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: .4;
}

.blog-card-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
}

.blog-card-body { padding: 1.5rem; }

.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}

.blog-read-more:hover { color: var(--magenta); gap: .6rem; }

/* =============================================
   PROCESS FLOW (arrow style from PDF)
   ============================================= */
.process-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 140px;
  background: var(--grad-purple);
  color: var(--white);
  padding: 1.25rem 1rem 1.25rem 1.75rem;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  text-align: center;
  transition: var(--transition);
}

.process-step:first-child {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
}

.process-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.process-step:hover { filter: brightness(1.1); }

.process-step-num {
  font-size: .72rem;
  font-weight: 700;
  opacity: .7;
  display: block;
  margin-bottom: .2rem;
}

.process-step-text {
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
}

/* =============================================
   SECTION BACKGROUNDS
   ============================================= */
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-cream-light { background: var(--cream-light); }
.bg-purple { background: var(--grad-purple); }
.bg-dark   { background: var(--dark); }

.bg-purple * { color: rgba(255,255,255,.85); }
.bg-purple .section-title,
.bg-purple h2,
.bg-purple h3 { color: var(--white); }
.bg-purple .section-title span { color: var(--orange-pale); }

/* Decorative section separator */
.wave-sep {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(123,31,162,.08);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(123,31,162,.2); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  gap: 1rem;
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--grad-purple);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section h2 em {
  font-style: normal;
  font-weight: 900;
  color: var(--orange-pale);
}

.cta-section p {
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1.5px solid rgba(123,31,162,.08);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-purple);
}

.about-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--cream);
  text-align: center;
  padding: 5rem 0;
}

.contact-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(123,31,162,.08);
}

.contact-box .agent-id-box {
  margin: 2rem auto;
  justify-content: center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover { color: var(--orange-light); gap: .6rem; }

.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}

.footer-disclaimer {
  background: rgba(255,255,255,.04);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,.06);
}

.footer-disclaimer p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  line-height: 1.7;
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.float-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: .85rem 1.4rem;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
}

.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}

.float-whatsapp:hover::before { transform: scaleX(1); }

.float-whatsapp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.float-whatsapp span { position: relative; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--grad-hero);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(173,20,87,.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-label { color: var(--orange-pale); background: rgba(255,143,0,.15); }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.page-hero .agent-id-box { margin: 0 auto; position: relative; z-index: 1; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span:last-child { color: rgba(255,255,255,.85); }

/* =============================================
   EARNINGS SALARY TABLE
   ============================================= */
.salary-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 400px;
}

.salary-table thead {
  background: var(--grad-purple);
}

.salary-table thead th {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: center;
  letter-spacing: .04em;
}

.salary-table tbody tr { background: var(--white); }
.salary-table tbody tr:nth-child(even) { background: rgba(250,232,209,.45); }
.salary-table tbody tr:hover { background: rgba(123,31,162,.06); }

.salary-table td {
  padding: .9rem 1.25rem;
  font-size: .9rem;
  text-align: center;
  border-bottom: 1px solid rgba(123,31,162,.07);
  color: var(--text);
}

.salary-table td:first-child { font-weight: 700; color: var(--orange); }

/* =============================================
   CHECKLIST
   ============================================= */
.checklist {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .92rem;
  color: var(--text-mid);
  padding: .65rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(123,31,162,.07);
}

.checklist li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
}

/* =============================================
   INFO BOXES
   ============================================= */
.info-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--orange);
  margin: 1.5rem 0;
}

.info-box p {
  font-size: .9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.65;
}

.info-box strong { color: var(--purple-dark); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos="zoom-in"]    { transform: scale(.94); }

[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="zoom-in"].aos-animate {
  transform: translateX(0) scale(1);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .hero { padding: 6rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero-deco-circles { display: none; }
  .deco-pill-1, .deco-pill-2 { display: none; }

  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero .btn-group { align-items: stretch; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  .process-flow { flex-direction: column; }
  .process-step, .process-step:first-child, .process-step:last-child {
    clip-path: none;
    border-radius: var(--radius);
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-whatsapp .float-text { display: none; }
  .float-whatsapp { padding: .85rem; border-radius: 50%; }

  .about-card { padding: 2rem 1.5rem; }
  .contact-box { padding: 2rem 1.25rem; }
  .section { padding: 3.5rem 0; }

  .page-hero { padding: 6.5rem 0 3.5rem; }

  .cta-section { padding: 3.5rem 0; }
  .cta-section .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .table-wrapper { font-size: .82rem; }
  .btn { font-size: .85rem; padding: .8rem 1.5rem; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .agent-id-box { flex-direction: column; align-items: flex-start; gap: .75rem; }
}
