/* -------------------------------------------------------------
   CÓDIGO EMPRESA - PREMIUM LANDING STYLESHEET (V2)
   ------------------------------------------------------------- */

/* Reset & Base Variables */
:root {
    /* Color Palette */
    --bg-dark: #06040d;
    --bg-dark-card: rgba(255, 255, 255, 0.03);
    --bg-dark-hover: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(168, 85, 247, 0.35);
    
    --primary: #6366f1;       /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.45);
    --secondary: #a855f7;     /* Purple */
    --secondary-glow: rgba(168, 85, 247, 0.45);
    --accent: #ec4899;        /* Pink */
    --accent-glow: rgba(236, 72, 153, 0.45);
    
    --text-bright: #ffffff;
    --text-normal: #f1f5f9;
    --text-muted: #cbd5e1;
    --text-dark: #0f172a;
    
    --success: #10b981;       /* Emerald */
    --warning: #f59e0b;       /* Amber */
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --gradient-card-border: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    --gradient-dark: linear-gradient(180deg, #070512 0%, #0c0922 100%);
    
    /* Layout Variables */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --container-max-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--gradient-dark);
    color: var(--text-normal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-bright);
    font-weight: 650;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Mesh Neon Background Orbs */
.mesh-gradients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.2;
}

.orb-1 {
    top: -10%;
    left: 15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, rgba(99, 102, 241, 0) 70%);
    animation: floatingOrb 25s infinite alternate ease-in-out;
}

.orb-2 {
    bottom: -10%;
    right: 10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary) 0%, rgba(168, 85, 247, 0) 70%);
    animation: floatingOrb 30s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--accent) 0%, rgba(236, 72, 153, 0) 70%);
    opacity: 0.12;
}

@keyframes floatingOrb {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    100% { transform: translateY(60px) translateX(-40px) rotate(360deg); }
}

/* Glassmorphism Panel Utility */
.glass-panel {
    background: var(--bg-dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.d-none { display: none !important; }

/* Text Gradient Effect */
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.25);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--text-bright);
    border: none;
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--secondary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    color: var(--text-normal);
    padding: 12px 18px;
}

.btn-tertiary:hover {
    color: var(--text-bright);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 42px;
    font-size: 1.25rem;
    border-radius: 100px;
}

.btn-block {
    width: 100%;
}

/* Pulse Glowing Animation for CTA */
.pulse-glow {
    position: relative;
    overflow: hidden;
}

.pulse-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    transform: scale(0.5);
}

.pulse-glow:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

/* Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 4, 13, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(6, 4, 13, 0.88);
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom-color: rgba(168, 85, 247, 0.2);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--text-bright);
    text-transform: lowercase; /* Matches all-lowercase branding */
    transition: var(--transition-smooth);
}

.logo-text {
    font-weight: 500;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.logo-underscore {
    font-weight: 700;
    color: #ec4899;
    margin: 0 1px;
}

.logo-text .gradient-text {
    font-weight: 600;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
}

.logo:hover .logo-text .gradient-text {
    filter: brightness(1.15);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    border-color: rgba(236, 72, 153, 0.6);
}

.logo-icon i {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: var(--transition-smooth);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-normal);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.nav-cta-btn {
    padding: 9px 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-bright);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 170px;
    padding-bottom: 100px;
    position: relative;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.badge-container {
    margin-bottom: 24px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.promo-badge i {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 650;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero-headline-sub {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 650;
    color: var(--secondary);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

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

.highlight-price {
    font-family: var(--font-heading);
    color: var(--text-bright);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: 650;
}

.rotating-text {
    font-family: var(--font-heading);
    font-weight: 650;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    min-width: 125px;
    transition: opacity 0.3s ease;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.feature-item i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-warning { color: var(--warning); }
.icon-purple { color: var(--secondary); }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-actions i {
    width: 18px;
    height: 18px;
}

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

.stars {
    display: flex;
    gap: 4px;
    color: #eab308;
}

.fill-star {
    fill: #eab308;
    width: 16px;
    height: 16px;
}

/* Mockup Showcase Components */
.hero-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mockup-frame-desktop {
    width: 100%;
    max-width: 500px;
    background: #151130;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: floatingMockup 6s infinite alternate ease-in-out;
}

.mockup-header {
    height: 38px;
    background: #0b0918;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.mockup-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lock-icon {
    width: 10px;
    height: 10px;
}

.mockup-body {
    height: 280px;
    background: #090710;
    overflow-y: auto;
    padding: 16px;
}

/* Simulated Client Web */
.client-web-sim {
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.sim-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.sim-logo {
    font-weight: 800;
    font-size: 0.9rem;
}

.sim-btn {
    font-size: 0.7rem;
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: bold;
}

.sim-hero {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 12px;
}

.sim-hero h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #fff;
}

.sim-hero p {
    font-size: 0.65rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    padding: 0 10px;
}

.sim-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
}

.sim-hero-badge i {
    width: 8px;
    height: 8px;
}

.sim-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sim-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.sim-card-img {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.sim-card h4 {
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.sim-card p {
    font-size: 0.55rem;
    color: #94a3b8;
}

/* Mobile SEO Mockup Overlay */
.mockup-frame-mobile {
    position: absolute;
    bottom: -30px;
    right: 10px;
    width: 200px;
    height: 310px;
    background: #0f172a;
    border: 6px solid #334155;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    z-index: 10;
    animation: floatingMockupMobile 6s infinite alternate-reverse ease-in-out;
}

.mobile-speaker {
    width: 40px;
    height: 4px;
    background: #334155;
    margin: 8px auto 0;
    border-radius: 10px;
}

.mobile-screen {
    padding: 10px;
    height: calc(100% - 12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mobile-search-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 0.65rem;
    color: var(--text-normal);
    margin-bottom: 12px;
}

.mobile-search-bar i {
    width: 10px;
    height: 10px;
}

.mobile-maps-card {
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.maps-header {
    margin-bottom: 6px;
}

.maps-rank {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 2px 6px;
    border-radius: 4px;
}

.maps-body h4 {
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.maps-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.55rem;
    margin-bottom: 6px;
}

.maps-stars {
    color: #eab308;
}

.maps-address {
    font-size: 0.55rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.maps-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}

.maps-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.5rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    padding: 4px;
    border-radius: 6px;
    text-align: center;
}

.maps-action-btn i {
    width: 8px;
    height: 8px;
}

@keyframes floatingMockup {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

@keyframes floatingMockupMobile {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

/* Sections Global Structure */
section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 650;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.section-description.centered {
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section Styling */
.problem-section {
    padding: 50px;
    margin-bottom: 80px;
    border-color: rgba(236, 72, 153, 0.2);
}

.problem-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-body .highlight-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 650;
    color: var(--accent);
    margin-bottom: 16px;
}

.problem-body p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comparison-item {
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
}

.danger-box {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.15);
}

.danger-box h4 {
    color: #ef4444;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.success-box {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.success-box h4 {
    color: var(--success);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* Plan / Features Grid */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 24px;
}

.plan-icon i {
    width: 24px;
    height: 24px;
}

.plan-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--text-bright);
}

.plan-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pillar-sub-desc {
    font-weight: 600;
    color: var(--text-normal) !important;
    margin-bottom: 16px;
}

.pillar-checklist, .pillar-checklist-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
}

.pillar-checklist-points {
    grid-template-columns: 1fr;
    gap: 10px;
}

.pillar-checklist li, .pillar-checklist-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-normal);
}

.pillar-checklist li i, .pillar-checklist-points li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pillar-footer-note {
    font-size: 0.95rem;
    color: var(--accent);
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    width: 100%;
}

.seo-simple-box {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--border-radius-md);
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    width: 100%;
}

.seo-simple-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.seo-simple-box p {
    font-size: 0.88rem;
    color: var(--text-normal);
    line-height: 1.5;
}

.highlight-plan-card {
    border-color: rgba(168, 85, 247, 0.35);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    box-shadow: 0 16px 40px rgba(168, 85, 247, 0.12);
}

.highlight-plan-card .plan-icon {
    background: var(--gradient-hero);
    color: var(--text-bright);
    border: none;
    box-shadow: 0 4px 12px var(--secondary-glow);
}

/* Interactive ROI Section Layout */
.roi-section-wrapper {
    margin-top: 80px;
}

.roi-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    padding: 50px;
    align-items: center;
}

.roi-left h3 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.roi-left p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.roi-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roi-bullets span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.roi-bullets i {
    width: 18px;
    height: 18px;
}

.roi-calculator-mini {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-row label {
    font-size: 0.85rem;
    font-weight: 600;
}

.calc-val-row {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 16px;
    align-items: center;
}

.calc-val {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    text-align: center;
}

.calc-divider {
    height: 1px;
    background: var(--border-light);
    margin: 10px 0;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
}

.calc-res-box {
    padding: 16px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    text-align: center;
}

.res-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.res-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 650;
    color: var(--text-bright);
}

.highlight-purple {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.05);
}

.highlight-purple .res-num {
    color: var(--secondary);
    font-size: 1.8rem;
}

/* FREE BONUSES SECTION */
.bonuses-section {
    padding-top: 60px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-card {
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    border-color: rgba(234, 179, 8, 0.15); /* Gold card tint */
    transition: var(--transition-smooth);
}

.bonus-card:hover {
    border-color: rgba(234, 179, 8, 0.35);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.05);
    transform: translateY(-4px);
}

.bonus-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(234, 179, 8, 0.12);
    color: #eab308;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.bonus-tag.construction {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.bonus-card.construction-card {
    border-color: rgba(59, 130, 246, 0.15); /* Premium tech-blue card tint */
}

.bonus-card.construction-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.bonus-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(234, 179, 8, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    margin-bottom: 20px;
}

.bonus-card.construction-card .bonus-icon {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.bonus-icon i {
    width: 20px;
    height: 20px;
}

.bonus-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Process Section & Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-step-item {
    padding: 40px 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -24px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-bright);
}

.process-step-item h3 {
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: 16px;
}

.process-step-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.highlight-step {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.highlight-step .step-number {
    background: var(--gradient-hero);
    border: none;
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* Pricing / Closing CTA Section */
.pricing-cta-section {
    padding-top: 80px;
    padding-bottom: 100px;
}

.price-banner {
    padding: 60px 50px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    background: linear-gradient(135deg, rgba(11, 8, 28, 0.8) 0%, rgba(7, 5, 18, 0.95) 100%);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.16), 0 0 40px rgba(99, 102, 241, 0.08);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.price-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pricing-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: left;
}

.pricing-features-side {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 40px;
}

.pricing-features-side h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.pricing-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-normal);
}

.pricing-checklist-item i {
    color: var(--success);
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price-comparison-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 650;
    line-height: 1;
    margin: 4px 0;
}

.price-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--gradient-hero);
    padding: 6px 18px;
    border-radius: 50px;
    color: var(--text-bright);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.price-urgency-note {
    font-size: 0.82rem;
    color: var(--warning);
    margin-top: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08) translateY(-4px);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* FAQ Accordion Section */
.faqs-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-bright);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

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

.faq-answer p {
    padding: 0 8px 24px;
    font-size: 0.95rem;
    color: var(--text-normal);
}

/* Footer Styles */
.main-footer {
    background: #030208;
    border-top: 1px solid var(--border-light);
    padding-top: 80px;
    padding-bottom: 40px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

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

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-normal);
}

.footer-contact i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    margin-right: 8px;
    vertical-align: middle;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

/* Checkout Modal Styles */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 3, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 24px;
}

.checkout-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-modal {
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.checkout-modal-overlay.active .checkout-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-bright);
}

.modal-close i {
    width: 16px;
    height: 16px;
}

.checkout-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(168, 85, 247, 0.12);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.checkout-badge i {
    width: 14px;
    height: 14px;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Progress Stepper in Modal */
.checkout-modal .stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-modal .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.35;
    transition: opacity 0.3s ease;
    flex: 1;
}

.checkout-modal .step.active {
    opacity: 1;
}

.checkout-modal .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-normal);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.checkout-modal .step.active .step-num {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

.checkout-modal .step-lbl {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.checkout-modal .step.active .step-lbl {
    color: var(--text-bright);
}

.checkout-modal .step-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.checkout-modal .step-line.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.modal-footer .btn {
    flex: 1;
}

.modal-footer .btn-next-only {
    margin-left: auto;
    max-width: 200px;
}

.checkout-modal-step-content {
    animation: modalStepFade 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes modalStepFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.d-none {
    display: none !important;
}

/* Custom Summary Review Card */
.checkout-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}

.checkout-summary-card h5 {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    font-weight: 700;
}

.checkout-summary-card .summary-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.checkout-summary-card .summary-row span:first-child {
    color: var(--text-muted);
}

.checkout-summary-card .summary-row span:last-child {
    font-weight: 600;
    color: var(--text-normal);
}

/* Order Summary Box */
.order-summary-box {
    padding: 24px;
    margin-bottom: 28px;
    border-color: rgba(99, 102, 241, 0.15);
}

.order-summary-box h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-normal);
    margin-bottom: 10px;
}

.summary-price {
    color: var(--text-bright);
}

.summary-divider {
    height: 1px;
    background: var(--border-light);
    margin: 14px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
}

.total-amount {
    font-size: 1.4rem;
}

/* Checkout Form Styles */
.form-section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-normal);
}

.form-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    color: var(--text-bright);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.2);
}

/* Stripe-like card element */
.stripe-card-element {
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.card-icon-stripe {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.stripe-card-element input {
    background: transparent;
    border: none;
    color: var(--text-bright);
    font-family: var(--font-body);
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

.card-input-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stripe-card-element input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.submit-pay-btn i {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.4;
}

/* Processing View */
.processing-loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 40px auto 28px;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(168, 85, 247, 0.1);
    border-top: 3px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.lock-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    animation: pulse 1.5s infinite;
}

.lock-pulse i {
    width: 22px;
    height: 22px;
}

.processing-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.processing-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.processing-steps-sub {
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proc-sub-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.proc-sub-item.active {
    color: var(--text-bright);
    font-weight: 600;
}

.proc-sub-item.active i {
    color: var(--secondary);
}

.proc-sub-item i {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.8; }
}

/* Success View */
.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
}

.success-icon {
    width: 100%;
    height: 100%;
    color: var(--success);
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.success-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.success-details {
    max-width: 480px;
    margin: 0 auto 28px;
    padding: 16px 24px;
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.02);
}

.success-details-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.success-details-row:last-child {
    margin-bottom: 0;
}

.success-details-row span {
    color: var(--text-muted);
}

.success-details-row strong {
    color: var(--text-bright);
}

.digital-delivery-box {
    max-width: 580px;
    margin: 0 auto;
    text-align: left;
}

.digital-delivery-box h4 {
    font-size: 1.05rem;
    color: var(--text-bright);
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.digital-delivery-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.delivery-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.delivery-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
}

.delivery-btn i {
    width: 16px;
    height: 16px;
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN & MEDIA QUERIES (V2)
   ------------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

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

    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-mockup-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roi-inner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-step-item {
        padding-top: 30px;
    }

    .step-number {
        top: -24px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .nav-menu {
        display: none; /* Mobile menu toggled by JS */
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .problem-section {
        padding: 30px 20px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .roi-inner-grid {
        padding: 30px 20px;
    }

    .calc-val-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .price-banner {
        padding: 40px 24px;
    }

    .pricing-grid-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .pricing-features-side {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 32px;
    }

    .price-new {
        font-size: 4.5rem;
    }

    .checkout-modal {
        padding: 24px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .delivery-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-mockup-wrapper {
        display: none; /* Hide complex mockup on very small devices */
    }
}

/* ==========================================================================
   PORTFOLIO SHOWCASE: CÓMO QUEDARÍA TU PÁGINA
   ========================================================================== */
.agency-portfolio-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at -10% -10%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 110% 110%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.agency-portfolio-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.agency-portfolio-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.agency-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.agency-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.agency-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 12px;
}

.agency-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 650;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.04em;
}

.agency-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-hero);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.agency-description {
    color: var(--text-normal);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.agency-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.1);
}

/* Browser Mockup styling */
.browser-mockup {
    background: #151130;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: #0b0918;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #e74c3c; }
.browser-dots span:nth-child(2) { background: #f1c40f; }
.browser-dots span:nth-child(3) { background: #2ecc71; }

.browser-url {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px 12px;
    flex-grow: 1;
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-body {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #090710;
}

.browser-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.portfolio-card:hover .browser-screenshot {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 650;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.portfolio-info p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-normal);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.portfolio-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.portfolio-tags li {
    font-size: 11px;
    color: #e2e0e5;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-tags li i {
    color: var(--primary);
}

.portfolio-actions {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.btn-portfolio-demo {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    padding: 12px 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.btn-portfolio-demo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-portfolio-demo i {
    font-size: 10px;
}

.btn-portfolio-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.portfolio-card:hover .btn-portfolio-select {
    background: var(--gradient-hero);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.35);
}

/* Glowing Mesh Orbs */
.agency-orbs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.agency-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.18;
    mix-blend-mode: screen;
}

.agency-orb-indigo {
    top: -10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(99, 102, 241, 0) 70%);
    animation: floatOrb1 20s infinite alternate ease-in-out;
}

.agency-orb-purple {
    bottom: -10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, rgba(168, 85, 247, 0) 70%);
    animation: floatOrb2 25s infinite alternate-reverse ease-in-out;
}

.agency-orb-pink {
    top: 30%;
    left: 45%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(236, 72, 153, 0) 70%);
    opacity: 0.14;
    animation: floatOrb3 18s infinite alternate ease-in-out;
}

@keyframes floatOrb1 {
    0% { transform: translateY(0) translateX(0) scale(1); }
    100% { transform: translateY(40px) translateX(-30px) scale(1.15); }
}

@keyframes floatOrb2 {
    0% { transform: translateY(0) translateX(0) scale(1.1); }
    100% { transform: translateY(-50px) translateX(40px) scale(0.9); }
}

@keyframes floatOrb3 {
    0% { transform: translateY(0) translateX(0) scale(0.95); }
    100% { transform: translateY(30px) translateX(20px) scale(1.08); }
}

@media (max-width: 1024px) {
    .agency-portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .agency-portfolio-section {
        padding: 80px 0 !important;
    }
    .agency-title {
        font-size: 32px !important;
    }
    .portfolio-info {
        padding: 24px !important;
    }
    .portfolio-actions {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* -------------------------------------------------------------
   SECCIÓN COMPARACIÓN: NEGOCIO TRADICIONAL VS EN CÓDIGOEMPRESA
   ------------------------------------------------------------- */
.vs-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.vs-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vs-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.vs-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 650;
    letter-spacing: -0.5px;
}

.vs-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.vs-card {
    background: var(--bg-dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-smooth);
}

.vs-card-traditional::before {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.vs-card-modern::before {
    background: var(--gradient-hero);
}

.vs-card-traditional:hover {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.1);
    transform: translateY(-5px);
}

.vs-card-modern:hover {
    border-color: var(--border-glow);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.15);
    transform: translateY(-5px);
}

.vs-card-header {
    margin-bottom: 30px;
}

.vs-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.vs-card-badge-success {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.dot-red {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
}

.dot-green {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.vs-card h3 {
    font-size: 1.6rem;
    font-weight: 650;
    color: var(--text-bright);
}

.vs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vs-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vs-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1rem;
}

.ban-icon {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.check-icon {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.vs-text h4 {
    font-size: 1.1rem;
    font-weight: 650;
    color: var(--text-bright);
    margin-bottom: 4px;
}

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

/* Responsiveness for VS Section */
@media (max-width: 992px) {
    .vs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .vs-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .vs-section {
        padding: 60px 0;
    }
    .vs-card {
        padding: 30px 20px;
    }
    .vs-title {
        font-size: 2rem;
    }
}

/* ── Slot picker ──────────────────────────────────────────────────────────── */
.form-group--full { width: 100%; flex: 1 1 100%; }

#slots-wrapper { 
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.slots-status-msg {
    font-size: 13px;
    color: var(--text-muted, #888);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 20px;
}

.slots-group {
    margin-top: 14px;
}

.slots-group-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slots-group-title svg {
    width: 14px;
    height: 14px;
    color: var(--secondary, #ec4899);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.slot-btn {
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInSlot 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInSlot {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.slot-btn:hover {
    border-color: var(--secondary, #ec4899);
    color: #fff;
    background: rgba(236, 72, 153, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
}

.slot-btn.selected {
    background: linear-gradient(135deg, var(--primary, #7c3aed) 0%, var(--secondary, #ec4899) 100%);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.slots-empty-state {
    text-align: center;
    padding: 16px;
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.slots-empty-state svg {
    width: 24px;
    height: 24px;
    color: var(--secondary, #ec4899);
}

/* ── Modal con iframe de Google Calendar ─────────────────────────────────── */
.checkout-modal--iframe {
    display: flex;
    flex-direction: column;
    width: min(760px, 95vw);
    max-height: 90vh;
    padding: 0;
    overflow: hidden;
}

.modal-cal-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-cal-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.modal-cal-brand .logo-icon {
    width: 28px;
    height: 28px;
    background: var(--primary, #7c3aed);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.modal-cal-brand .logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.modal-cal-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.modal-cal-sub {
    font-size: 13px;
    color: var(--text-muted, #888);
    margin: 0;
}

.modal-cal-iframe-wrap {
    flex: 1;
    min-height: 480px;
    background: #fff;
    position: relative;
}

.cal-iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
    display: block;
}

.modal-cal-footer {
    padding: 14px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cal-footer-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted, #888);
    margin: 0;
}

.cal-footer-note svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}

@media (max-width: 600px) {
    .checkout-modal--iframe { width: 100vw; max-height: 100dvh; border-radius: 16px 16px 0 0; }
    .modal-cal-iframe-wrap { min-height: 400px; }
    .cal-iframe { min-height: 400px; }
    .modal-cal-footer { flex-direction: column; align-items: flex-start; }
}

/* --- PREMIUM SCROLL REVEAL ANIMATIONS (AESTHETIC UPGRADE) --- */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale-in {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-scale-in.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Entrance Delays (Cascade Effect) */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* --- NUEVAS SECCIONES PREMIUM DE CONVERSIÓN --- */

/* Sección de Dolor */
.dolor-section {
    padding: 100px 0;
    position: relative;
}

.dolor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dolor-card {
    background: rgba(255, 99, 132, 0.01);
    border: 1px solid rgba(255, 99, 132, 0.08);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.dolor-card:hover {
    border-color: rgba(255, 99, 132, 0.25);
    box-shadow: 0 0 25px rgba(255, 99, 132, 0.08);
    transform: translateY(-5px);
}

.dolor-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 99, 132, 0.08);
    color: #ff6384;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.dolor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-bright);
}

.dolor-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Sección de 72 Horas (Comparativa de Agencias) */
.speed-section {
    padding: 100px 0;
    position: relative;
}

.speed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .speed-grid {
        grid-template-columns: 1fr;
    }
}

.speed-card {
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.speed-card-slow {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.speed-card-fast {
    background: rgba(168, 85, 247, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.03);
}

.speed-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 10px;
}

.speed-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speed-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.speed-list li i {
    font-size: 16px;
    margin-top: 3px;
}

.speed-list .icon-red {
    color: #ff6384;
}

.speed-list .icon-green {
    color: #2ec866;
}

.speed-list .speed-item-title {
    font-weight: 700;
    color: var(--text-normal);
}

.speed-list p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Sección Personal (Mariana) */
.founder-section {
    padding: 100px 0;
    position: relative;
}

.founder-card {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
}

@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
}

.founder-img-wrap {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 1.8rem;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.founder-title {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
}

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

.founder-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.founder-badge-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--text-normal);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.founder-badge-item i {
    color: var(--secondary);
}

/* --- PREMIUM MOBILE SCREEN IN PORTFOLIO MOCKUPS --- */
.browser-body {
    position: relative;
    overflow: hidden;
}

.browser-mobile-screen {
    position: absolute;
    bottom: -15px;
    right: 15px;
    width: 24%;
    aspect-ratio: 9 / 18;
    background: #070512;
    border: 3px solid #1e1b4b;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(168, 85, 247, 0.15);
    overflow: hidden;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.browser-mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.browser-mockup:hover .browser-mobile-screen {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(168, 85, 247, 0.3);
}

@media (max-width: 576px) {
    .browser-mobile-screen {
        width: 28%;
        right: 10px;
        bottom: -10px;
        border-width: 2px;
        border-radius: 8px;
    }
}

/* --- VISUAL WHATSAPP CHAT IN PILOT AUTOMÁTICO --- */
.whatsapp-mockup {
    width: 100%;
    max-width: 320px;
    margin: 25px auto 10px;
    border-radius: 14px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.06);
    background: rgba(11, 8, 28, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    text-align: left;
    font-family: var(--font-body);
}

.wa-header {
    background: rgba(37, 211, 102, 0.08);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wa-avatar {
    width: 28px;
    height: 28px;
    background: #075e54;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.wa-status-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-bright);
}

.wa-status {
    font-size: 0.6rem;
    color: #25d366;
    font-weight: 500;
}

.wa-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: radial-gradient(circle at top, rgba(37, 211, 102, 0.02) 0%, transparent 80%);
}

.wa-msg {
    max-width: 82%;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.76rem;
    line-height: 1.35;
    position: relative;
}

.wa-msg-received {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-normal);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-msg-sent {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #fff;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-time {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    display: block;
    text-align: right;
    margin-top: 3px;
}



