:root {
    --bg-main: #0a0a0a;
    --accent: #00ff88;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

header {
    padding: 2rem 1rem;
    text-align: center;
}

.logo-lp {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem 6rem;
}

section {
    margin-bottom: 6rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

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

.social-proof {
    margin-top: 4rem;
    text-align: center;
}

.social-proof p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    flex-wrap: wrap;
}

.icon-segment {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.lp-card:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.lp-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.lp-card p {
    color: var(--text-muted);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
}

footer {
    padding: 4rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Specific Quiz Layout */
.quiz-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3rem;
    margin-top: 4rem;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.quiz-option:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 136, 0.1);
}

.quiz-option.selected {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.quiz-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 3rem;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    main { padding-bottom: 4rem; }
    h1 { font-size: 2.2rem; }
    .btn-primary { width: 100%; }
    .social-icons { gap: 1.5rem; }
    .lp-card { padding: 1.5rem; }
}


/* REGIONAL PHONES FOOTER */
.regional-phones-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem !important;
}
.regional-phone-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--border-subtle, #27272a);
  transition: all 0.3s ease;
  text-decoration: none;
}
.regional-phone-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #005bbf; /* Fallback accent */
  border-color: var(--accent-primary, #005bbf);
  transform: translateY(-2px);
}
.regional-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
}
.regional-phone-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.regional-phone-card > div:not(.regional-phone-icon) {
  display: flex;
  flex-direction: column;
}
.regional-phone-region {
  font-size: 0.75rem;
  color: var(--text-muted, #a1a1aa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.regional-phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.regional-phone-label {
  font-size: 0.8rem;
  color: #25D366;
  margin-top: 0.2rem;
}
