/* ==========================================================================
   YZ IMPORTS - DESIGN SYSTEM & STYLES
   Minimalist, Clean, High-Conversion Apple-inspired Aesthetic
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #FFFFFF;
    --bg-subtle: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-blue-soft: #F0F6FF;
    
    --primary-blue: #0066FF;
    --primary-blue-hover: #0052CC;
    --primary-blue-glow: rgba(0, 102, 255, 0.2);
    
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1EBE5A;
    --whatsapp-glow: rgba(37, 211, 102, 0.3);
    
    --text-title: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    
    --border-light: #E2E8F0;
    --border-blue: #BFDBFE;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-blue: 0 12px 30px rgba(0, 102, 255, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transition */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-title);
    line-height: 1.25;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 860px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: #0F172A;
    color: #FFFFFF;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #E2E8F0;
}

.badge-item svg {
    color: var(--primary-blue);
}

.badge-divider {
    color: #475569;
}

.top-bar-link {
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.top-bar-link:hover {
    color: #60A5FA;
}

/* ==========================================================================
   HEADER & LOGO
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Brand Logo (Matching reference) */
.brand-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-title);
}

.logo-dot {
    color: var(--primary-blue);
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: lowercase;
    margin-top: 1px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-body);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* Header Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-title);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn-header {
    background-color: var(--text-title);
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-header:hover {
    background-color: var(--primary-blue);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #FFFFFF;
    box-shadow: var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background-color: var(--bg-subtle);
    color: var(--text-title);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-community {
    background-color: #FFFFFF;
    color: var(--primary-blue);
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-community:hover {
    background-color: #F8FAFC;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 70px 0 90px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid var(--border-blue);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.hero-title {
    font-size: 3.4rem;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight-blue {
    color: var(--primary-blue);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.6;
}

.hero-trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.trust-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-title);
    box-shadow: var(--shadow-sm);
}

.trust-tag svg {
    color: var(--primary-blue);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

.hero-live-counter {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid #FFFFFF;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.font-av1 { background-color: #0066FF; }
.font-av2 { background-color: #10B981; }
.font-av3 { background-color: #6366F1; }

/* Real-Time WebGL 3D Hero Canvas Container */
.hero-3d-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    border-radius: var(--radius-lg);
}

.hero-3d-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.16) 0%, rgba(240, 246, 255, 0.5) 50%, transparent 80%);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}

#hero3dCanvas {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 2;
    cursor: grab;
}

#hero3dCanvas:active {
    cursor: grabbing;
}

/* Floating 3D Badges */
.hero-3d-badge {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.15), 0 4px 15px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.badge-top-right {
    top: 25px;
    right: 0px;
    transform: translateZ(50px);
}

.badge-bottom-left {
    bottom: 25px;
    left: 0px;
    transform: translateZ(70px);
}

.badge-interactive {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateZ(85px);
    background: rgba(15, 23, 42, 0.92);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
}

.badge-icon-box {
    font-size: 1.4rem;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    font-size: 0.88rem;
    color: var(--text-title);
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    animation: pulseGlow 1.5s infinite;
}

.badge-top-right {
    top: 20px;
    right: -10px;
    animation: floatBadge1 4s ease-in-out infinite alternate;
}

.badge-bottom-left {
    bottom: 40px;
    left: -20px;
    animation: floatBadge2 5s ease-in-out infinite alternate;
}

.badge-interactive {
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.92);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.badge-icon-box {
    font-size: 1.4rem;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    font-size: 0.88rem;
    color: var(--text-title);
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    animation: pulseGlow 1.5s infinite;
}

@keyframes floatBadge1 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

@keyframes floatBadge2 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(10px); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 50px auto;
}

/* ==========================================================================
   PILLARS / 3 CARDS SECTION
   ========================================================================== */
.pillars-section {
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background-color: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-blue);
}

.pillar-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.pillar-badge-top {
    position: absolute;
    top: -14px;
    left: 32px;
    background-color: var(--primary-blue);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-emoji {
    font-size: 1.8rem;
}

.pillar-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.pillar-desc {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pillar-footer {
    margin-top: auto;
}

.pillar-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    background-color: var(--primary-blue-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   TIMELINE / COMO FUNCIONA
   ========================================================================== */
.timeline-section {
    background-color: #FFFFFF;
}

.timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 60px;
}

.timeline-step {
    flex: 1;
    background-color: var(--bg-subtle);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

.timeline-step:hover {
    background-color: #FFFFFF;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.timeline-arrow {
    color: var(--primary-blue);
    opacity: 0.6;
}

/* ==========================================================================
   REASONS / POR QUE COMPRAR CONOSCO
   ========================================================================== */
.why-us-section {
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reason-card {
    background-color: #FFFFFF;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-fast);
}

.reason-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.reason-check {
    width: 32px;
    height: 32px;
    background-color: #DCFCE7;
    color: #16A34A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.reason-text h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.reason-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   COMMUNITY WHATSAPP BANNER (BLUE HIGHLIGHT)
   ========================================================================== */
.community-banner-section {
    padding: 60px 0;
}

.community-card {
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 50%, #1D4ED8 100%);
    border-radius: 32px;
    padding: 70px 60px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
}

.community-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.community-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-title {
    color: #FFFFFF;
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.community-text {
    font-size: 1.2rem;
    color: #E0E7FF;
    line-height: 1.7;
    margin-bottom: 36px;
}

.community-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.c-feat {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    background-color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-blue);
    transform: translateY(-6px);
}

.testimonial-card.featured-testimonial {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-blue);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F6FF 100%);
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #DCFCE7;
    color: #15803D;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.verified-tag.tag-gold {
    background-color: #FEF3C7;
    color: #B45309;
}

.product-bought-tag {
    display: inline-block;
    background-color: var(--bg-subtle);
    border: 1px solid var(--border-light);
    color: var(--text-title);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 0.98rem;
    color: var(--text-body);
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 28px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.95rem;
    color: var(--text-title);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-title);
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 80px 0 0 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo .logo-main {
    color: #FFFFFF;
}

.footer-desc {
    margin: 20px 0 24px 0;
    line-height: 1.6;
    max-width: 440px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #E2E8F0;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-links p {
    margin-bottom: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.whatsapp-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: floatPulse 3s infinite;
}

.floating-whatsapp:hover .whatsapp-icon-circle {
    transform: scale(1.1);
    background-color: var(--whatsapp-green-hover);
}

.whatsapp-tooltip {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 1;
    transition: var(--transition-fast);
}

@keyframes floatPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   INSTAGRAM HEADER BUTTON
   ========================================================================== */
.btn-instagram-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-instagram-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    opacity: 0.92;
}

/* ==========================================================================
   FLOATING INSTAGRAM BUTTON
   ========================================================================== */
.floating-instagram {
    position: fixed;
    bottom: 102px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.instagram-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.4);
    transition: var(--transition-smooth);
    animation: instaPulse 3s infinite 1.5s;
}

.floating-instagram:hover .instagram-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(188, 24, 136, 0.55);
}

.instagram-tooltip {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 1;
    transition: var(--transition-fast);
}

@keyframes instaPulse {
    0% { box-shadow: 0 0 0 0 rgba(188, 24, 136, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(188, 24, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(188, 24, 136, 0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (ALL DEVICE BREAKPOINTS)
   ========================================================================== */

/* Animated Hamburger Icon for Mobile Toggle */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Fluid Typography Base */
.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.community-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
}

/* Laptops & Tablets (Max 1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 70px 0;
    }

    .hero-section {
        padding: 50px 0 70px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-trust-tags, .hero-actions {
        justify-content: center;
    }

    .hero-3d-wrapper {
        height: 440px;
    }

    .pillars-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .timeline-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Devices & Small Tablets (Max 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .top-bar {
        padding: 8px 0;
        font-size: 0.78rem;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .badge-divider {
        display: inline-block;
    }

    .header-container {
        height: 70px;
    }

    .logo-main {
        font-size: 1.8rem;
    }

    .logo-sub {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px 24px;
        gap: 28px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .hero-section {
        padding: 30px 0 60px 0;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }

    .hero-trust-tags {
        gap: 10px;
        margin-bottom: 28px;
    }

    .trust-tag {
        font-size: 0.82rem;
        padding: 6px 12px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .btn-hero {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
    }

    .hero-live-counter {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Hero 3D Badge Scaling on Mobile */
    .hero-3d-wrapper {
        height: 380px;
    }

    .badge-top-right {
        top: 10px;
        right: 0px;
        padding: 8px 12px;
    }

    .badge-bottom-left {
        bottom: 35px;
        left: 0px;
        padding: 8px 12px;
    }

    .badge-icon-box {
        font-size: 1.1rem;
    }

    .badge-info strong {
        font-size: 0.78rem;
    }

    .badge-info span {
        font-size: 0.68rem;
    }

    .badge-interactive {
        bottom: -32px;
        font-size: 0.75rem;
        padding: 6px 14px;
        white-space: nowrap;
    }

    .pillars-grid, .testimonials-grid, .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-card {
        padding: 30px 24px;
    }

    .community-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .community-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .community-text {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .community-features {
        gap: 10px;
        margin-bottom: 30px;
    }

    .c-feat {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .btn-community {
        width: 100%;
        padding: 16px 28px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 18px;
    }

    .floating-instagram {
        bottom: 92px;
        right: 18px;
    }

    .instagram-icon-circle,
    .whatsapp-icon-circle {
        width: 54px;
        height: 54px;
    }

    .instagram-tooltip,
    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Small Smart Phones (Max 480px) */
@media (max-width: 480px) {
    .badge-divider {
        display: none;
    }

    .top-badge {
        flex-direction: column;
        gap: 4px;
    }

    .top-bar-link {
        display: none;
    }

    .hero-3d-wrapper {
        height: 330px;
    }

    .badge-top-right, .badge-bottom-left {
        max-width: 85%;
    }

    .badge-top-right {
        top: 5px;
        right: -5px;
    }

    .badge-bottom-left {
        bottom: 28px;
        left: -5px;
    }

    .badge-interactive {
        bottom: -36px;
    }
}
