/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #F15A24;
    --primary-light: #FF7C47;
    --primary-dark: #D14A1A;
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --bg-card-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 40px rgba(241, 90, 36, 0.3);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(241, 90, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(241, 90, 36, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 120px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--glass-bg);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
    height: 40px;
    transition: var(--transition);
}

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

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    margin-left: 10px;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(241, 90, 36, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

#three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(241, 90, 36, 0.15) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    padding: 16px 24px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    padding: 12px;
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
}

.phone-screen {
    background: var(--bg-dark);
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.app-preview {
    padding: 20px;
    height: 100%;
}

.app-header {
    text-align: center;
    padding: 20px 0;
}

.app-logo {
    height: 30px;
}

.app-content {
    padding-top: 10px;
}

.app-welcome {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: var(--radius-md);
}

.app-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.app-card-info {
    display: flex;
    flex-direction: column;
}

.app-card-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-card-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-card:nth-child(1) {
    top: 10%;
    left: -40%;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: -30%;
}

.floating-card:nth-child(3) {
    bottom: 15%;
    left: -50%;
}

.floating-card i {
    color: var(--primary);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--bg-card);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    padding: 32px;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 90, 36, 0.3);
}

.problem-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 90, 36, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.1) 0%, rgba(241, 90, 36, 0.02) 100%);
    border-color: rgba(241, 90, 36, 0.2);
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-secondary);
}

/* ===== DIFFERENTIAL SECTION ===== */
.differential-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.diff-main {
    padding: 40px;
    position: sticky;
    top: 100px;
}

.ecosystem-diagram {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-center {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.eco-center img {
    height: 40px;
    margin-bottom: 5px;
}

.eco-center span {
    font-size: 0.75rem;
    font-weight: 600;
}

.eco-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateOrbit 30s linear infinite;
}

@keyframes rotateOrbit {
    to { transform: rotate(360deg); }
}

.eco-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 0.65rem;
    text-align: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(140px) rotate(calc(-1 * var(--angle)));
    animation: counterRotate 30s linear infinite;
}

@keyframes counterRotate {
    to { transform: translate(-50%, -50%) rotate(calc(var(--angle) - 360deg)) translateX(140px) rotate(calc(-1 * var(--angle) + 360deg)); }
}

.eco-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.diff-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(241, 90, 36, 0.3);
}

.feature-card.highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.15) 0%, rgba(241, 90, 36, 0.02) 100%);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 14px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(241, 90, 36, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--primary);
    font-size: 0.8rem;
}

.app-stores {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.store-badge:hover {
    border-color: var(--primary);
}

.store-badge i {
    font-size: 1.5rem;
}

.store-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

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

.store-badge strong {
    font-size: 0.9rem;
}

/* ===== TECHNOLOGY SECTION ===== */
.technology-section {
    background: var(--bg-card);
}

.tech-comparison {
    max-width: 800px;
    margin: 0 auto 80px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.comparison-header .comp-label {
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    margin-bottom: 12px;
    align-items: center;
    text-align: center;
}

.comp-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.comp-feature i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 24px;
}

.comp-others i.fa-times {
    color: #ff4757;
}

.comp-others i.fa-minus {
    color: #ffa502;
}

.comp-prime i.fa-check {
    color: #2ed573;
    font-size: 1.2rem;
}

/* Screen Showcase */
.screen-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.screen-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.screen-tab {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.screen-tab:hover {
    color: var(--text-primary);
}

.screen-tab.active {
    background: var(--gradient-primary);
    color: white;
}

.screen-display {
    padding: 30px;
    min-height: 400px;
}

.screen-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.screen-content.active {
    display: block;
}

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

/* Mock Dashboard */
.mock-dashboard {
    padding: 20px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mock-logo {
    width: 80px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.mock-nav {
    display: flex;
    gap: 15px;
}

.mock-nav span {
    width: 60px;
    height: 10px;
    background: var(--glass-bg);
    border-radius: var(--radius-sm);
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.mock-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.mock-stat i {
    font-size: 1.5rem;
    color: var(--primary);
}

.mock-stat-info {
    display: flex;
    flex-direction: column;
}

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

.mock-stat-info strong {
    font-size: 1.3rem;
    font-weight: 700;
}

.mock-chart {
    padding: 20px;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    gap: 20px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    animation: growBar 1s ease forwards;
}

@keyframes growBar {
    from { height: 0; }
}

/* Mock Socios */
.mock-socios {
    padding: 20px;
}

.mock-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.mock-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px 20px;
    align-items: center;
    font-size: 0.9rem;
}

.mock-row.header {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
}

.mock-row span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.status {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.status.active {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.status.warning {
    background: rgba(255, 165, 2, 0.2);
    color: #ffa502;
}

/* Mock Reportes */
.mock-reportes {
    padding: 20px;
}

.report-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.report-card {
    padding: 20px;
    text-align: center;
}

.report-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.report-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.report-card strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.report-chart {
    padding: 20px;
}

.report-chart svg {
    width: 100%;
    height: 100px;
}

/* Mock App */
.mock-app-preview {
    display: flex;
    justify-content: center;
}

.app-phone {
    width: 200px;
    padding: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.app-screen {
    background: var(--bg-dark);
    border-radius: 22px;
    padding: 20px;
    text-align: center;
}

.app-notch {
    width: 80px;
    height: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    margin: 0 auto 20px;
}

.app-mini-logo {
    height: 25px;
    margin-bottom: 15px;
}

.app-greeting {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-progress-ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
}

.app-progress-ring svg {
    transform: rotate(-90deg);
}

.app-progress-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    font-weight: 700;
}

.app-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FRANCHISE SECTION ===== */
.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.benefit-card {
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 90, 36, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Process Timeline */
.franchise-process {
    margin-bottom: 80px;
}

.process-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--glass-border);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 18%;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

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

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

.franchise-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.2) 0%, rgba(241, 90, 36, 0.05) 100%);
    border-color: rgba(241, 90, 36, 0.3);
}

.franchise-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.franchise-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Comparison Box */
.comparison-box {
    padding: 50px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.1) 0%, rgba(241, 90, 36, 0.02) 100%);
    border-color: rgba(241, 90, 36, 0.2);
}

.comparison-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.versus-col {
    padding: 30px;
    border-radius: var(--radius-lg);
}

.versus-col.franchise {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.versus-col.prime {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.versus-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.versus-col.franchise h4 {
    color: #ff4757;
}

.versus-col.prime h4 {
    color: #2ed573;
}

.versus-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.versus-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.versus-col.franchise li i {
    color: #ff4757;
}

.versus-col.prime li i {
    color: #2ed573;
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-card);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 24px;
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.2rem;
}

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

.author-info strong {
    font-size: 1rem;
}

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

.testimonial-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.t-stat {
    display: flex;
    flex-direction: column;
}

.t-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.t-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 24px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

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

.contact-item strong {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .differential-showcase {
        grid-template-columns: 1fr;
    }
    
    .diff-main {
        position: static;
    }
    
    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .cta-box,
    .franchise-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .mock-stats {
        grid-template-columns: 1fr;
    }
    
    .report-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.8rem;
    }
    
    .comp-feature span {
        display: none;
    }
    
    .process-step {
        width: 100%;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .screen-tabs {
        flex-wrap: wrap;
    }
    
    .screen-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}
