/* BUSINESSTRANSFER.LU 2026 - ANEDA STYLE + LUXEMBOURG COLORS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --red: #EA142C;
    --red-hover: #c91125;
    --blue: #00A3E0;
    --blue-hover: #0082b3;
    --white: #ffffff;
    --bg: #fafafa;
    --dark: #1a1a2e;
    --text: #464343;
    --text-light: #6b7280;
    --border: rgba(0,0,0,0.08);
    --gradient: linear-gradient(135deg, #B16CEA, var(--red), #FFA84B);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(234,20,44,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    overflow-x: hidden;
}
body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Scroll Performance Optimization */
section {
    will-change: auto;
    contain: layout style;
}
.section-card,
.aww-card,
.option-card,
.timeline-phase {
    transform: translateZ(0);
    backface-visibility: hidden;
}

::selection { background: var(--red); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--dark);
    line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { color: var(--text-light); }
a { color: inherit; text-decoration: none; transition: var(--transition); }

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

/* Native cursor */
.cursor-dot, .cursor-outline { display: none !important; }

/* Navigation */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.main-nav.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow);
}
.nav-container {
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem;
    display: flex; align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
}
.logo-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.25rem; color: white;
    transition: var(--transition);
}
.nav-logo:hover .logo-icon { transform: rotate(5deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-weight: 700; font-size: 1.1rem; color: var(--dark); }
.logo-subtitle {
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.15em; color: var(--text-light);
    text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem; font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(234,20,44,0.1) 0%, rgba(0,163,224,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 6px;
}
.nav-link:hover::before { opacity: 1; }
.nav-link:hover { color: var(--red); transform: translateY(-1px); }
.nav-link.active { color: var(--red); }
.nav-link.active::before { opacity: 1; }
.nav-link-highlight {
    background: linear-gradient(135deg, var(--red) 0%, #c41020 100%);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234,20,44,0.3);
}
.nav-link-highlight:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234,20,44,0.4);
}
.nav-link-highlight .nav-num {
    color: rgba(255,255,255,0.7);
    opacity: 1;
}
.nav-num {
    font-size: 0.6rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--blue);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover .nav-num {
    color: var(--red);
    opacity: 1;
    transform: translateY(-2px);
}
.nav-link.active .nav-num {
    color: var(--red);
    opacity: 1;
}
.nav-text {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover .nav-text {
    transform: translateX(2px);
}
.nav-dropdown { position: relative; }
.dropdown-arrow {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 0.1rem;
    opacity: 0.5;
}
.nav-link:hover .dropdown-arrow { opacity: 1; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-content {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.02);
}
.nav-dropdown:hover .dropdown-content {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-content a {
    display: block;
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.dropdown-content a:hover {
    background: linear-gradient(135deg, rgba(234,20,44,0.08) 0%, rgba(0,163,224,0.08) 100%);
    color: var(--red);
    transform: translateX(4px);
}
/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 1rem;
    background: rgba(0,0,0,0.03);
    padding: 0.25rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.05em;
}
.lang-btn:hover {
    color: var(--red);
    background: rgba(234,20,44,0.08);
}
.lang-btn.active {
    color: white;
    background: var(--red);
    box-shadow: 0 2px 8px rgba(234,20,44,0.3);
}
.lang-divider {
    display: none;
}

/* 🇱🇺 Luxembourg Flag - Easter Egg handled by JS */
.nav-flag {
    display: flex; gap: 3px; height: 25px;
    cursor: pointer;
    position: relative;
}
.flag-bar {
    width: 5px; height: 100%; border-radius: 3px;
    transition: all 0.08s ease;
    transform-origin: center;
}
.flag-bar.red { background: var(--red); }
.flag-bar.white { background: #ffffff; border: 1px solid #e0e0e0; border-left: none; border-right: none; }
.flag-bar.blue { background: var(--blue); }
.nav-flag.horizontal { flex-direction: column; width: 25px; height: auto; gap: 3px; }
.nav-flag.horizontal .flag-bar { width: 100%; height: 5px; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 0.5rem; cursor: pointer;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-progress {
    position: absolute; bottom: 0; left: 0;
    height: 2px; background: var(--gradient);
    width: 0%; transition: width 0.1s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, white 0%, var(--bg) 100%);
    position: relative; overflow: hidden;
}
.hero-background { position: absolute; inset: 0; z-index: 0; }
.grid-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}
.gradient-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}
.gradient-orb.orb-1 {
    width: 500px; height: 500px;
    background: var(--red);
    top: -150px; right: -100px;
}
.gradient-orb.orb-2 {
    width: 400px; height: 400px;
    background: var(--blue);
    bottom: -100px; left: -100px;
    animation-delay: -7s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}
#particlesCanvas { position: absolute; inset: 0; }
.hero-content {
    max-width: 800px;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}
.badge-pulse {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title { margin-bottom: 1.5rem; }
.hero-title .gradient-text-animated {
    background: linear-gradient(135deg, var(--red), var(--blue), var(--red));
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-description {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-stats {
    display: flex; gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item { text-align: left; }
.stat-value {
    font-size: 2.5rem; font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem; font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}
.stat-bar {
    width: 100%; height: 3px;
    background: var(--border);
    border-radius: 3px;
    margin-top: 0.5rem; overflow: hidden;
}
.stat-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    animation: fillBar 2s ease-out forwards;
    transform-origin: left;
}
@keyframes fillBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.stat-fill.blue { background: var(--blue); }
.stat-fill.red { background: var(--red); }
.stat-divider { display: none; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: inherit;
    font-size: 0.9rem; font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 15px rgba(234,20,44,0.3);
}
.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(234,20,44,0.4);
}
.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
}
.btn-icon { transition: var(--transition); }
.btn:hover .btn-icon { transform: translateX(3px); }
.btn-bg, .btn-text { position: relative; z-index: 1; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex; justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--red);
    border-radius: 3px;
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}
.section-bg { position: absolute; inset: 0; z-index: -1; }
.section-bg.dark { background: var(--dark); }
.floating-shape { display: none; }
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-number {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    color: var(--red);
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
    font-size: 1.1rem;
    max-width: 550px;
}
.section-header.centered .section-subtitle { margin: 0 auto; }

/* UI/UX Compact Section */
.section-uiux {
    padding: 6rem 0;
    background: linear-gradient(180deg,
        var(--bg) 0%,
        rgba(234,20,44,0.03) 30%,
        rgba(0,163,224,0.03) 70%,
        var(--bg) 100%
    );
    position: relative;
}

.section-uiux-compact {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(234,20,44,0.02), rgba(0,163,224,0.02));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.uiux-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.uiux-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.uiux-header .section-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    background: rgba(234,20,44,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}
.uiux-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}
.uiux-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.uiux-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    border: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.uiux-badge:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}
.uiux-badge .badge-icon {
    font-size: 1rem;
}

/* Feature Cards - UI/UX */
.uiux-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1200px) {
    .uiux-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .uiux-grid .feature-card { padding: 1.25rem; }
    .uiux-grid .feature-card h3 { font-size: 0.95rem; }
    .uiux-grid .feature-card p { font-size: 0.8rem; }
    .uiux-grid .feature-list { font-size: 0.75rem; }
}
@media (max-width: 900px) {
    .uiux-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}
.card-hover-effect { display: none; }
.feature-number {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 3rem; font-weight: 800;
    color: rgba(0,0,0,0.03);
}
.feature-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.feature-icon.icon-red { background: rgba(234,20,44,0.08); color: var(--red); }
.feature-icon.icon-blue { background: rgba(0,163,224,0.08); color: var(--blue); }
.feature-icon.icon-green { background: rgba(16,185,129,0.08); color: #10B981; }
.feature-icon.icon-purple { background: rgba(139,92,246,0.08); color: #8B5CF6; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.feature-card > p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.feature-list { list-style: none; }
.feature-list li {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.list-icon { color: var(--blue); font-weight: 600; }

/* Info Items - Clickable feature list */
.info-item {
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.info-item:hover {
    background: rgba(234,20,44,0.05);
    margin: 0 -0.5rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-radius: 6px;
}
.info-btn {
    margin-left: auto;
    color: var(--blue);
    font-size: 0.9rem;
    opacity: 0.6;
    transition: all 0.2s;
}
.info-item:hover .info-btn {
    opacity: 1;
    transform: scale(1.1);
}
.info-item.active {
    background: rgba(0,163,224,0.1);
    margin: 0 -0.5rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-radius: 6px;
}

/* Feature Info Panel */
.feature-info-panel {
    display: none;
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 350px;
    max-height: 80vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 2rem;
    z-index: 1000;
    overflow-y: auto;
    border: 1px solid var(--border);
    animation: slideInRight 0.3s ease;
}
.feature-info-panel.active {
    display: block;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateY(-50%) translateX(30px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.info-panel-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border: none;
    background: var(--light);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.2s;
}
.info-panel-close:hover {
    background: var(--red);
    color: white;
}
.feature-info-panel h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-right: 2rem;
    color: var(--dark);
}
.feature-info-panel .info-section {
    margin-bottom: 1.25rem;
}
.feature-info-panel .info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-info-panel .info-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}
.feature-info-panel .info-code {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.8rem;
    overflow-x: auto;
    margin-top: 0.5rem;
}

/* Accessibility Banner */
.accessibility-banner {
    display: flex; align-items: center; gap: 2rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.05), rgba(0,163,224,0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.banner-icon { font-size: 2.5rem; }
.banner-content { flex: 1; }
.banner-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.banner-content p { font-size: 0.9rem; }
.banner-badge {
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em;
}

/* Technology Section */
.section-technology { background: var(--dark); color: white; }
.section-technology .section-title,
.section-technology h3, .section-technology h4 { color: white; }
.section-technology .section-subtitle,
.section-technology p { color: rgba(255,255,255,0.7); }
.tech-grid-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
}
.tech-architecture {
    max-width: 650px;
    margin: 0 auto 4rem;
}
.arch-layer {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}
.arch-layer:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}
.arch-layer.featured {
    background: linear-gradient(135deg, rgba(234,20,44,0.1), rgba(0,163,224,0.1));
    border-color: var(--red);
}
.layer-label {
    display: flex; align-items: center; gap: 0.5rem;
    min-width: 110px;
}
.layer-number {
    font-size: 0.65rem; font-weight: 700;
    color: var(--red);
}
.layer-label > span:last-child {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.layer-content { display: flex; flex-wrap: wrap; gap: 0.5rem; flex: 1; }
.tech-badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.75rem; font-weight: 500;
    color: white;
    transition: var(--transition);
}
.tech-badge:hover { background: rgba(255,255,255,0.1); }
.tech-badge.badge-featured {
    background: rgba(234,20,44,0.2);
    border-color: var(--red);
}
.badge-dot {
    width: 5px; height: 5px;
    background: var(--blue);
    border-radius: 50%;
}
.badge-dot.pulse { background: var(--red); animation: pulse 2s infinite; }
.arch-connector {
    display: flex; flex-direction: column;
    align-items: center;
    padding: 0.75rem 0;
}
.connector-line {
    width: 2px; height: 25px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), var(--blue));
}
.connector-dot {
    width: 8px; height: 8px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,163,224,0.5);
}

/* Tech Highlights */
.tech-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.highlight-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.highlight-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
}
.highlight-icon { font-size: 2rem; margin-bottom: 1rem; }
.highlight-number {
    font-size: 2.5rem; font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.highlight-label {
    font-size: 0.7rem; font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.highlight-card p { font-size: 0.85rem; }

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.security-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}
.security-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.security-card:hover::before { transform: scaleX(1); }
.security-icon {
    width: 50px; height: 50px;
    background: rgba(234,20,44,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.security-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.security-card p { font-size: 0.9rem; line-height: 1.7; }
.certifications-banner {
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.03), rgba(0,163,224,0.03));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.cert-item {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 0.5rem;
}
.cert-badge {
    width: 60px; height: 60px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.7rem;
    color: var(--dark);
    transition: var(--transition);
}
.cert-item:hover .cert-badge {
    border-color: var(--red);
    transform: scale(1.1);
}
.cert-label {
    font-size: 0.7rem; font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Design Proposal Section */
.section-design { background: linear-gradient(180deg, var(--bg) 0%, white 50%, var(--bg) 100%); }
.design-tabs {
    display: flex; justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.design-tab {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.design-tab:hover { border-color: var(--red); color: var(--red); }
.design-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
}
.design-tab-icon { font-size: 1rem; }
.design-panel { display: none; }
.design-panel.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}
.browser-header {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca41; }
.browser-url {
    flex: 1;
    padding: 0.4rem 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
}
.browser-content { min-height: 400px; }

/* Mockup Homepage */
.mockup-homepage {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}
.mockup-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
}
.mockup-logo {
    display: flex; align-items: center; gap: 0.5rem;
}
.mockup-logo-icon {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 6px;
}
.mockup-logo-text {
    font-weight: 700; font-size: 0.9rem;
    color: var(--dark);
}
.mockup-nav-links {
    display: flex; gap: 1.5rem;
}
.mockup-nav-links span {
    font-size: 0.75rem;
    color: var(--text-light);
}
.mockup-hero {
    display: flex; align-items: center;
    padding: 3rem 2rem;
    gap: 2rem;
}
.mockup-hero-content { flex: 1; }
.mockup-hero h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}
.mockup-hero p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.mockup-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--red);
    color: white;
    border-radius: 6px;
    font-size: 0.75rem; font-weight: 600;
}
.mockup-hero-visual {
    width: 200px; height: 150px;
    background: linear-gradient(135deg, rgba(234,20,44,0.1), rgba(0,163,224,0.1));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
}
.mockup-chart {
    display: flex; align-items: flex-end;
    gap: 8px; height: 80px;
}
.mockup-bar {
    width: 20px;
    background: linear-gradient(180deg, var(--red), var(--blue));
    border-radius: 4px 4px 0 0;
    animation: barGrow 1.5s ease-out;
}
@keyframes barGrow { from { height: 0; } }
.mockup-features {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid var(--border);
}
.mockup-feature {
    text-align: center;
    padding: 1rem;
}
.mockup-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.mockup-feature span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Mockup Company Profile */
.mockup-profile {
    padding: 2rem;
}
.profile-header {
    display: flex; align-items: center; gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.profile-avatar {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 2rem; font-weight: 700;
}
.profile-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.profile-info p { font-size: 0.85rem; color: var(--text-light); }
.profile-stats {
    display: flex; gap: 2rem; margin-top: 0.75rem;
}
.profile-stat {
    font-size: 0.75rem;
    color: var(--text);
}
.profile-stat strong { color: var(--dark); }
.profile-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.profile-card {
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
}
.profile-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.profile-card p {
    font-size: 0.75rem;
    line-height: 1.6;
}
.profile-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(234,20,44,0.1);
    color: var(--red);
    border-radius: 4px;
    font-size: 0.65rem; font-weight: 600;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

/* Mockup Backoffice */
.mockup-backoffice {
    display: flex;
    min-height: 400px;
}
.backoffice-sidebar {
    width: 200px;
    background: var(--dark);
    padding: 1rem;
}
.sidebar-logo {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}
.sidebar-logo-icon {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 6px;
}
.sidebar-logo span {
    font-weight: 700; font-size: 0.8rem;
    color: white;
}
.sidebar-menu { list-style: none; }
.sidebar-menu li {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.sidebar-menu li:hover,
.sidebar-menu li.active {
    background: rgba(255,255,255,0.1);
    color: white;
}
.sidebar-menu li.active { color: var(--red); }
.backoffice-main {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg);
}
.backoffice-header {
    display: flex; justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.backoffice-header h3 {
    font-size: 1.1rem;
    color: var(--dark);
}
.header-actions { display: flex; gap: 0.5rem; }
.action-btn {
    padding: 0.4rem 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
}
.action-btn:hover { border-color: var(--red); }
.action-btn.primary {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

/* Interactive Demo Form */
.demo-form {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.7rem; font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.8rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,163,224,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-actions {
    display: flex; justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.form-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.75rem; font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.form-btn.secondary {
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
}
.form-btn.secondary:hover { border-color: var(--text); }
.form-btn.primary {
    background: var(--red);
    border: 1px solid var(--red);
    color: white;
}
.form-btn.primary:hover { background: var(--red-hover); }
.demo-notification {
    display: none;
    padding: 0.75rem 1rem;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 6px;
    color: #10B981;
    font-size: 0.8rem;
    margin-top: 1rem;
    align-items: center;
    gap: 0.5rem;
}
.demo-notification.show { display: flex; }

/* Design Features */
.design-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.design-feature {
    display: flex; gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.design-feature:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.design-feature-icon {
    width: 45px; height: 45px;
    background: rgba(234,20,44,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.design-feature h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.design-feature p { font-size: 0.8rem; line-height: 1.6; }

/* Pricing Section */
.section-pricing { background: white; }
.pricing-content { max-width: 900px; margin: 0 auto; }
.pricing-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.pricing-card {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: var(--shadow-hover);
}
.pricing-card.featured {
    background: var(--dark);
    border-color: var(--dark);
}
.pricing-card.featured h4,
.pricing-card.featured .pricing-desc { color: white; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.pricing-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.pricing-desc {
    font-size: 0.85rem;
    line-height: 1.6;
}
.timeline-section {
    margin-top: 3rem;
}
.timeline-header {
    text-align: center;
    margin-bottom: 2rem;
}
.timeline-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red), var(--blue));
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px; height: 16px;
    background: white;
    border: 3px solid var(--red);
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot { border-color: var(--blue); }
.timeline-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
}
.timeline-item:hover .timeline-content {
    border-color: var(--red);
    box-shadow: var(--shadow);
}
.timeline-phase {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--gradient);
    color: white;
    border-radius: 4px;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.timeline-content p {
    font-size: 0.85rem;
    line-height: 1.6;
}
.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Coming Soon Section */
.section-coming-soon {
    background: linear-gradient(135deg, var(--dark) 0%, #252545 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.coming-soon-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}
.coming-soon-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}
.badge-dot-pulse {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.section-coming-soon .section-title { color: white; }
.section-coming-soon .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}
.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cs-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.cs-feature span { font-size: 1.25rem; }

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
    color: white;
}
.footer-logo-text { font-weight: 700; font-size: 1.1rem; }
.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 280px;
}
.lux-colors {
    display: flex;
    gap: 6px;
    margin-top: 1.5rem;
}
.color-swatch {
    width: 30px; height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.red { background: var(--red); }
.color-swatch.white { background: #ccc; color: var(--dark); }
.color-swatch.blue { background: var(--blue); }
.footer-column h4 {
    font-size: 0.85rem;
    color: white;
    margin-bottom: 1.25rem;
}
.footer-column ul { list-style: none; }
.footer-column li {
    margin-bottom: 0.75rem;
}
.footer-column a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-column a:hover { color: var(--red); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.footer-legal a:hover { color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: white;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .nav-menu.active .nav-link { padding: 0.75rem 1rem; }
    .lang-switcher {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1.5rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .scroll-indicator { display: none; }
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .uiux-grid,
    .security-grid,
    .tech-highlights,
    .design-features { gap: 1rem; }
    .feature-card,
    .security-card,
    .highlight-card { padding: 1.5rem; }
    .accessibility-banner {
        flex-direction: column;
        text-align: center;
    }
    .tech-architecture { margin-bottom: 3rem; }
    .arch-layer {
        flex-direction: column;
        text-align: center;
    }
    .layer-content { justify-content: center; }
    .design-tabs { gap: 0.35rem; }
    .design-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    .mockup-backoffice { flex-direction: column; }
    .backoffice-sidebar {
        width: 100%;
        padding: 0.75rem;
    }
    .sidebar-menu {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
    }
    .sidebar-menu li { white-space: nowrap; }
    .form-row { grid-template-columns: 1fr; }
    .profile-grid { grid-template-columns: 1fr; }
    .mockup-hero { flex-direction: column; }
    .mockup-hero-visual { width: 100%; }
    .mockup-features { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-badge { font-size: 0.7rem; }
    .stat-value { font-size: 2rem; }
    .certifications-banner { gap: 1.5rem; }
    .pricing-overview { grid-template-columns: 1fr; }
    .timeline { padding-left: 1.5rem; }
    .timeline-item { padding-left: 1.5rem; }
    .coming-soon-features { flex-direction: column; gap: 1rem; }
}

/* ==========================================
   ADDITIONAL STYLES FOR EXISTING HTML
   ========================================== */

/* Container Fluid */
.container-fluid { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }

/* Tab Buttons (existing HTML uses .tab-btn) */
.tab-btn {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
}
.tab-number {
    font-size: 0.7rem; font-weight: 700;
    opacity: 0.7;
}
.tab-name { font-weight: 600; }

/* Design Content (existing HTML uses .design-content) */
.design-content { display: none; }
.design-content.active { display: block; animation: fadeIn 0.5s ease; }
.design-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Mockup Browser (existing HTML) */
.mockup-browser {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}
.mockup-browser.dark { background: var(--dark); border-color: rgba(255,255,255,0.1); }
.browser-bar {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-bottom: 1px solid var(--border);
}
.browser-bar.dark { background: #252545; border-color: rgba(255,255,255,0.1); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.browser-dots .dot.red { background: #ff5f57; }
.browser-dots .dot.yellow { background: #ffbd2e; }
.browser-dots .dot.green { background: #28ca41; }
.browser-url {
    flex: 1;
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
}
.browser-bar.dark .browser-url { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.url-icon { font-size: 0.7rem; }
.browser-actions { color: var(--text-light); cursor: pointer; }
.browser-bar.dark .browser-actions { color: rgba(255,255,255,0.5); }

/* Mockup Content Styles */
.mockup-content { padding: 1.5rem; min-height: 400px; }
.mockup-content.profile { padding: 1rem; }
.mockup-content.backoffice { display: flex; padding: 0; }

/* Homepage Mockup */
.mockup-hero {
    text-align: center;
    padding: 2rem;
}
.hero-badge-mock {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(234,20,44,0.1);
    border-radius: 50px;
    font-size: 0.7rem; font-weight: 600;
    color: var(--red);
    margin-bottom: 1rem;
}
.hero-title-mock {
    font-size: 1.5rem; font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.hero-title-mock .gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.search-bar-mock {
    display: flex; align-items: center; gap: 0.75rem;
    max-width: 350px; margin: 0 auto 1.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    box-shadow: var(--shadow);
}
.search-icon { font-size: 1rem; }
.search-text { font-size: 0.75rem; color: var(--text-light); }
.stats-row-mock {
    display: flex; justify-content: center; gap: 2rem;
}
.stat-mock { font-size: 0.75rem; color: var(--text); }
.stat-mock strong { color: var(--dark); font-weight: 700; }
.cards-section-mock {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
}
.card-mock {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.card-img {
    height: 60px;
    background: linear-gradient(135deg, rgba(234,20,44,0.1), rgba(0,163,224,0.1));
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.card-text {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 0.35rem;
}
.card-text.short { width: 60%; }

/* Profile Mockup */
.profile-header-mock {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}
.company-logo-mock {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 12px;
}
.company-info-mock { flex: 1; }
.company-name {
    height: 14px; width: 150px;
    background: var(--dark);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.company-meta {
    height: 10px; width: 100px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.company-tags { display: flex; gap: 0.35rem; }
.tag-mock {
    padding: 0.2rem 0.5rem;
    background: rgba(234,20,44,0.1);
    color: var(--red);
    border-radius: 4px;
    font-size: 0.6rem; font-weight: 600;
}
.action-buttons-mock { display: flex; gap: 0.5rem; }
.btn-mock {
    width: 80px; height: 32px;
    border-radius: 6px;
}
.btn-mock.primary { background: var(--red); }
.btn-mock.secondary { background: var(--border); }
.profile-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 1rem;
}
.stat-card-mock {
    text-align: center;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: 8px;
}
.stat-icon-mock { font-size: 1.25rem; margin-bottom: 0.25rem; }
.stat-label-mock {
    height: 8px; width: 60%;
    background: var(--border);
    border-radius: 4px;
    margin: 0 auto 0.35rem;
}
.stat-value-mock {
    height: 12px; width: 40%;
    background: var(--dark);
    border-radius: 4px;
    margin: 0 auto;
}
.profile-content-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
}
.content-block-mock {
    padding: 1rem;
    background: var(--bg);
    border-radius: 8px;
}
.block-title {
    height: 12px; width: 100px;
    background: var(--dark);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.block-text {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.block-text.short { width: 70%; }
.chart-mock {
    height: 80px;
    background: linear-gradient(135deg, rgba(234,20,44,0.1), rgba(0,163,224,0.1));
    border-radius: 6px;
}

/* Backoffice Mockup */
.sidebar-mock {
    width: 180px;
    background: #1a1a2e;
    padding: 1rem;
}
.sidebar-logo-mock {
    width: 100px; height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}
.sidebar-item-mock {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.35rem;
}
.sidebar-item-mock.active { background: rgba(234,20,44,0.2); }
.item-icon {
    width: 16px; height: 16px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}
.sidebar-item-mock.active .item-icon { background: var(--red); }
.item-text {
    height: 8px; width: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.sidebar-item-mock.active .item-text { background: rgba(255,255,255,0.8); }
.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1rem 0;
}
.main-panel-mock {
    flex: 1;
    padding: 1rem;
    background: #f8f9fa;
}
.panel-header-mock {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem;
}
.header-title {
    height: 16px; width: 150px;
    background: var(--dark);
    border-radius: 4px;
}
.header-actions { display: flex; gap: 0.5rem; }
.header-actions .action-btn {
    width: 60px; height: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.dashboard-widgets {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.widget-mock {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.widget-header {
    height: 8px; width: 50%;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.widget-value {
    height: 20px; width: 60%;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 4px;
}
.table-container-mock {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.table-header-mock {
    height: 36px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.table-row-mock {
    height: 40px;
    border-bottom: 1px solid var(--border);
}
.table-row-mock:last-child { border-bottom: none; }

/* Design Info */
.design-info { padding: 1rem 0; }
.design-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.info-item { display: flex; gap: 0.75rem; }
.info-icon {
    width: 40px; height: 40px;
    background: rgba(234,20,44,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}
.info-item p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* Interactive Demo */
.interactive-demo {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.03), rgba(0,163,224,0.03));
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.interactive-demo h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.demo-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.btn-demo {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}
.demo-result {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #10B981;
    display: none;
}
.demo-result.show { display: block; }

/* Security Section Additional */
.security-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.security-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(234,20,44,0.1);
    color: var(--red);
    border-radius: 4px;
    font-size: 0.65rem; font-weight: 700;
    margin-bottom: 0.75rem;
}
.security-badge.blue { background: rgba(0,163,224,0.1); color: var(--blue); }
.security-badge.green { background: rgba(16,185,129,0.1); color: #10B981; }
.security-badge.red { background: rgba(234,20,44,0.1); color: var(--red); }
.security-card ul {
    list-style: none;
    margin-top: 0.75rem;
}
.security-card li {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.5rem;
}
.security-card li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    font-size: 0.7rem;
}
.security-card li:last-child { border-bottom: none; }
.security-card.featured {
    background: linear-gradient(135deg, rgba(234,20,44,0.02), rgba(0,163,224,0.02));
    border-color: var(--red);
}
.card-glow { display: none; }
.security-certifications {
    display: flex; justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.security-certifications .cert-badge {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
}
.security-certifications .cert-icon {
    width: 50px; height: 50px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
    color: var(--blue);
}
.security-certifications .cert-badge:hover .cert-icon {
    border-color: var(--red);
    transform: scale(1.1);
}
.security-certifications .cert-badge span {
    font-size: 0.75rem; font-weight: 600;
    color: var(--text);
}

/* Certifications Row - Better Style */
.certifications-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.02), rgba(0,163,224,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--blue);
}
.cert-shield {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--blue), #0082b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cert-shield.red { background: linear-gradient(135deg, var(--red), #c91125); }
.cert-shield.blue { background: linear-gradient(135deg, var(--blue), #0082b3); }
.cert-shield.green { background: linear-gradient(135deg, #10B981, #059669); }
.cert-check {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}
.cert-info {
    display: flex;
    flex-direction: column;
}
.cert-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.cert-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}
@media (max-width: 768px) {
    .certifications-row {
        gap: 1rem;
        padding: 1rem;
    }
    .cert-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 200px;
    }
}

/* Pricing Section Additional */
.pricing-hero {
    position: relative;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark), #252545);
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    overflow: hidden;
}
.price-decoration {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.price-decoration.left { background: var(--red); top: -50px; left: -50px; }
.price-decoration.right { background: var(--blue); bottom: -50px; right: -50px; }
.price-content { position: relative; z-index: 1; }
.price-label {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.price-amount {
    font-size: 4rem; font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.price-amount .currency {
    font-size: 2rem;
    vertical-align: super;
    opacity: 0.8;
}
.price-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Timeline Container */
.timeline-container { position: relative; max-width: 700px; margin: 0 auto; }
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red), var(--blue));
    transform: translateX(-50%);
}
.timeline-phase {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}
.timeline-phase:nth-child(even) { flex-direction: row-reverse; }
.timeline-phase .phase-content {
    width: calc(50% - 30px);
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.timeline-phase:hover .phase-content {
    border-color: var(--red);
    box-shadow: var(--shadow);
}
.timeline-phase .phase-marker {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 16px; height: 16px;
    background: white;
    border: 3px solid var(--red);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-phase:nth-child(even) .phase-marker { border-color: var(--blue); }
.phase-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--gradient);
    color: white;
    border-radius: 4px;
    font-size: 0.65rem; font-weight: 700;
    margin-bottom: 0.5rem;
}
.phase-content h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}
.phase-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
}
.phase-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Form in HTML */
.form-group .required { color: var(--red); }

/* About Section (Coming Soon) */
.section-about {
    background: linear-gradient(135deg, var(--dark) 0%, #252545 100%);
    text-align: center;
}
.section-about .section-title { color: white; }
.section-about .section-subtitle { color: rgba(255,255,255,0.7); }

/* Responsive Updates */
@media (max-width: 1024px) {
    .design-container {
        grid-template-columns: 1fr;
    }
    .design-preview { order: 1; }
    .design-info { order: 2; }
    .info-grid { grid-template-columns: 1fr; }
    .timeline-line { left: 20px; }
    .timeline-phase,
    .timeline-phase:nth-child(even) { flex-direction: row; padding-left: 50px; }
    .timeline-phase .phase-content { width: 100%; }
    .timeline-phase .phase-marker { left: 20px; }
}

@media (max-width: 768px) {
    .container-fluid { padding: 0 1rem; }
    .design-tabs { flex-wrap: wrap; justify-content: center; }
    .tab-btn { padding: 0.6rem 1rem; font-size: 0.8rem; }
    .mockup-content { min-height: 300px; }
    .cards-section-mock { grid-template-columns: 1fr; }
    .profile-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-content-grid { grid-template-columns: 1fr; }
    .sidebar-mock { width: 100%; }
    .mockup-content.backoffice { flex-direction: column; }
    .dashboard-widgets { grid-template-columns: repeat(2, 1fr); }
    .price-amount { font-size: 3rem; }
}

/* ==========================================
   TIMELINE PHASES (ADDITIONAL)
   ========================================== */
.phase-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(234,20,44,0.3);
}
.marker-number {
    font-weight: 800;
    font-size: 1rem;
    color: white;
}
.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}
.phase-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}
.phase-timeline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
}
.phase-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
}
.phase-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.deliverable {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(0,163,224,0.1);
    color: var(--blue);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Pricing Includes */
.pricing-includes {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.03), rgba(0,163,224,0.03));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.pricing-includes h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.include-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.include-item:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}
.include-icon {
    font-size: 1.5rem;
}
.include-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

/* ==========================================
   COMING SOON SECTION
   ========================================== */
.coming-soon-container {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(37,37,69,0.95));
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
}
.coming-soon-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.soon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.soon-orb.orb-1 {
    width: 300px; height: 300px;
    background: var(--red);
    top: -100px; right: -100px;
}
.soon-orb.orb-2 {
    width: 250px; height: 250px;
    background: var(--blue);
    bottom: -100px; left: -100px;
}
.coming-soon-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.coming-soon-content .section-number {
    color: var(--red);
    margin-bottom: 1rem;
}
.soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.coming-soon-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}
.soon-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}
.soon-status {
    margin-bottom: 2rem;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(234,20,44,0.2);
    border: 1px solid rgba(234,20,44,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.soon-sections {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.soon-section {
    text-align: center;
}
.soon-section .section-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.soon-section h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}
.soon-section p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.soon-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}
.soon-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.soon-footer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ==========================================
   FOOTER (ADDITIONAL)
   ========================================== */
.footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.footer-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}
.footer-left { display: flex; flex-direction: column; gap: 1rem; }
.footer-left .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-left .logo-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.25rem;
    color: white;
}
.footer-left .logo-text {
    display: flex;
    flex-direction: column;
}
.footer-left .logo-text span:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}
.logo-year {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--blue);
}
.footer-org {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.footer-right {}
.footer-colors {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.footer-colors .color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: auto;
    height: auto;
    background: none;
}
.footer-colors .swatch {
    width: 40px; height: 40px;
    border-radius: 8px;
}
.footer-colors .swatch.red { background: var(--red); }
.footer-colors .swatch.blue { background: var(--blue); }
.footer-colors .color-swatch span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}
.footer-colors .color-swatch code {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-family: monospace;
}
.color-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}
.footer-bottom {
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}
.footer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-meta p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.footer-meta .divider {
    color: rgba(255,255,255,0.3);
}
.footer-meta a {
    color: var(--blue);
    transition: var(--transition);
}
.footer-meta a:hover { color: var(--red); }
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px; height: 45px;
    background: var(--red);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(234,20,44,0.3);
    z-index: 100;
    opacity: 0.9;
}
.back-to-top:hover {
    transform: translateY(-3px);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(234,20,44,0.4);
}

/* Responsive for additional sections */
@media (max-width: 1024px) {
    .phase-marker {
        left: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-left { align-items: center; }
    .footer-left .footer-logo { justify-content: center; }
    .soon-sections { gap: 1rem; }
    .soon-divider { width: 60px; height: 1px; }
    .includes-grid { grid-template-columns: 1fr 1fr; }
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px; height: 40px;
    }
}

@media (max-width: 480px) {
    .includes-grid { grid-template-columns: 1fr; }
    .coming-soon-content h2 { font-size: 2rem; }
}

/* ==========================================
   ABOUT ANEDA FULL SECTION
   ========================================== */
.section-about-full {
    background: linear-gradient(180deg, var(--bg) 0%, white 30%, var(--bg) 100%);
}
.section-about-full .section-title { color: var(--dark); }
.about-tagline {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--text) !important;
}
.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}
.about-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
.about-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}
.about-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}
.about-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
}
.trust-logos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.03), rgba(0,163,224,0.03));
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}
.trust-icon { font-size: 1.25rem; }
.trust-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Team Section */
.team-section {
    text-align: center;
    margin-bottom: 4rem;
}
.team-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.team-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-member {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}
.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.25rem;
}
.member-avatar.andrea { background: linear-gradient(135deg, #B16CEA, #FF5E69); }
.member-avatar.edmond { background: linear-gradient(135deg, var(--red), #FF8A5B); }
.member-avatar.cristian { background: linear-gradient(135deg, var(--blue), #00D4AA); }
.member-info h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.member-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.member-info p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--dark), #252545);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--red);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}
.about-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: var(--blue);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.about-cta h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
}
.about-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}
.cta-tagline {
    margin-top: 1.5rem !important;
    font-size: 1.1rem !important;
    color: white !important;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .about-card { padding: 1.5rem; }
    .about-cta { padding: 2rem; }
}

/* ==========================================
   DESIGN PROPOSAL - SPLIT VIEW
   ========================================== */
.design-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.split-mockup { position: relative; }
.mockup-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}
.mockup-label.dark {
    background: var(--dark);
    border-color: rgba(255,255,255,0.1);
    color: white;
}
.label-dot {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.split-info h3 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.split-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.feature-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.fld-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.fld-item:hover {
    border-color: var(--red);
    transform: translateX(5px);
}
.fld-icon {
    width: 45px; height: 45px;
    background: rgba(234,20,44,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.fld-content h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.fld-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}
.color-palette {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
}
.palette-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
}
.palette-colors {
    display: flex;
    gap: 0.5rem;
}
.pal-color {
    width: 30px; height: 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.pal-color:hover { transform: scale(1.15); }
.pal-color.red { background: var(--red); }
.pal-color.white { background: #ddd; border: 1px solid var(--border); }
.pal-color.blue { background: var(--blue); }

/* Portal Mockup - Homepage */
.portal-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    overflow: hidden;
    border: 1px solid var(--border);
}
.portal-mockup.profile-view { background: #f8f9fa; }
.portal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: white;
    border-bottom: 1px solid var(--border);
}
.portal-nav.mini {
    padding: 0.5rem 1rem;
    gap: 1rem;
}
.portal-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.portal-logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.7rem;
    color: white;
}
.portal-logo-icon.sm { width: 26px; height: 26px; font-size: 0.6rem; }
.portal-logo span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
}
.lux-dot { color: var(--red); }
.portal-nav-links {
    display: flex;
    gap: 0.25rem;
}
.portal-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
}
.portal-link:hover { background: var(--bg); color: var(--red); }
.portal-link.active { color: var(--red); background: rgba(234,20,44,0.05); }
.portal-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.portal-lang {
    font-size: 0.65rem;
    color: var(--text-light);
}
.portal-btn-login {
    padding: 0.4rem 0.75rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
}
.breadcrumb {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Portal Hero */
.portal-hero {
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}
.portal-hero-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(234,20,44,0.08);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 1rem;
}
.portal-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.portal-gradient {
    background: linear-gradient(135deg, var(--red), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.portal-hero-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Portal Search */
.portal-search {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    padding: 0.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem;
}
.search-ico { font-size: 0.9rem; opacity: 0.5; }
.search-input {
    flex: 1;
    border: none;
    font-size: 0.75rem;
    font-family: inherit;
    outline: none;
}
.search-select {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.7rem;
    font-family: inherit;
    background: var(--bg);
    cursor: pointer;
}
.search-btn {
    padding: 0.5rem 1rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
}

/* Portal Stats */
.portal-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.portal-stat { text-align: center; }
.stat-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}
.stat-lbl {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-sep {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* Portal Featured */
.portal-featured {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}
.portal-featured h3 {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 1rem;
}
.featured-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.featured-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    transition: var(--transition);
    position: relative;
}
.featured-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.fc-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: var(--red);
    color: white;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
}
.fc-badge.blue { background: var(--blue); }
.fc-sector {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}
.featured-card h4 {
    font-size: 0.8rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.featured-card p {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.fc-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
}

/* Profile View */
.profile-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-bottom: 1px solid var(--border);
}
.profile-main {
    display: flex;
    gap: 1rem;
}
.profile-logo {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}
.profile-badges {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}
.pbadge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
}
.pbadge.verified { background: rgba(16,185,129,0.1); color: #10B981; }
.pbadge.premium { background: rgba(234,20,44,0.1); color: var(--red); }
.profile-details h2 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.profile-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}
.profile-actions {
    display: flex;
    gap: 0.5rem;
}
.pa-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
}
.pa-btn.primary {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

/* Profile Metrics */
.profile-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
}
.metric-card {
    text-align: center;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: 8px;
}
.metric-icon { font-size: 1.25rem; }
.metric-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}
.metric-label {
    font-size: 0.6rem;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 0.25rem;
    padding: 0 1.5rem;
    background: white;
    border-bottom: 1px solid var(--border);
}
.ptab {
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.ptab.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

/* Profile Content Area */
.profile-content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
}
.pca-main {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}
.pca-main h4 {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.pca-main p {
    font-size: 0.75rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.pca-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.pca-tags span {
    padding: 0.2rem 0.5rem;
    background: rgba(0,163,224,0.1);
    color: var(--blue);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
}
.pca-sidebar {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}
.pca-sidebar h4 {
    font-size: 0.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.quick-facts {
    list-style: none;
}
.quick-facts li {
    padding: 0.35rem 0;
    font-size: 0.7rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.quick-facts li:last-child { border-bottom: none; }

/* Admin Mockup */
.admin-mockup {
    display: flex;
    background: #1a1a2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    min-height: 450px;
}
.admin-sidebar {
    width: 180px;
    background: #12122b;
    padding: 1rem;
}
.admin-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
}
.admin-logo-icon {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: white;
}
.admin-logo span {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}
.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.admin-nav-item:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}
.admin-nav-item.active {
    background: rgba(234,20,44,0.15);
    color: var(--red);
}
.nav-ico { font-size: 0.9rem; }
.admin-nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0.75rem 0;
}

/* Admin Main */
.admin-main {
    flex: 1;
    background: #f8f9fa;
    padding: 1.25rem;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.admin-title h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.15rem;
}
.admin-date {
    font-size: 0.7rem;
    color: var(--text-light);
}
.admin-actions {
    display: flex;
    gap: 0.5rem;
}
.admin-btn {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
}
.admin-btn.primary {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

/* Admin Widgets */
.admin-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.admin-widget {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.widget-icon {
    width: 35px; height: 35px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.widget-icon.blue { background: rgba(0,163,224,0.1); }
.widget-icon.green { background: rgba(16,185,129,0.1); }
.widget-icon.red { background: rgba(234,20,44,0.1); }
.widget-icon.purple { background: rgba(139,92,246,0.1); }
.widget-data {}
.widget-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}
.widget-label {
    font-size: 0.65rem;
    color: var(--text-light);
}
.widget-trend {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
}
.widget-trend.up { color: #10B981; }

/* Admin Table */
.admin-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.table-title {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}
.admin-table table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th,
.admin-table td {
    padding: 0.6rem 1rem;
    text-align: left;
    font-size: 0.7rem;
}
.admin-table th {
    background: var(--bg);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.admin-table td {
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.status-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
}
.status-badge.active { background: rgba(16,185,129,0.1); color: #10B981; }
.status-badge.pending { background: rgba(251,191,36,0.1); color: #F59E0B; }

/* Interactive Demo Compact */
.interactive-demo-compact {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.03), rgba(0,163,224,0.03));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}
.interactive-demo-compact h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 1rem;
}
.demo-form-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.demo-form-compact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0;
}
.demo-form-compact input,
.demo-form-compact select {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.75rem;
    transition: var(--transition);
}
.demo-form-compact input:focus,
.demo-form-compact select:focus {
    outline: none;
    border-color: var(--blue);
}
.demo-form-compact .form-full {
    grid-column: 1 / -1;
}
.demo-submit-btn {
    padding: 0.75rem 1.5rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}
.demo-submit-btn:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
}

/* Tab Icon */
.tab-icon { font-size: 1rem; }

/* Design Split Responsive */
@media (max-width: 1024px) {
    .design-split {
        grid-template-columns: 1fr;
    }
    .split-mockup { order: 1; }
    .split-info { order: 2; }
    .featured-cards { grid-template-columns: 1fr 1fr; }
    .admin-widgets { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .portal-nav { flex-wrap: wrap; gap: 0.5rem; }
    .portal-nav-links { display: none; }
    .portal-search { flex-direction: column; border-radius: var(--radius); }
    .search-btn { width: 100%; }
    .portal-stats { gap: 1rem; }
    .featured-cards { grid-template-columns: 1fr; }
    .profile-hero { flex-direction: column; gap: 1rem; }
    .profile-metrics { grid-template-columns: repeat(2, 1fr); }
    .profile-content-area { grid-template-columns: 1fr; }
    .admin-mockup { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .admin-nav { flex-direction: row; flex-wrap: wrap; }
    .admin-widgets { grid-template-columns: 1fr 1fr; }
}

/* ==========================================
   DESIGN PROPOSAL - AWWWARDS EDITION
   ========================================== */
.section-design-awwwards {
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #111118 50%, #0a0a0f 100%);
    padding: 8rem 0;
    overflow: hidden;
}

.section-design-awwwards .section-header {
    position: relative;
    z-index: 2;
}

.section-design-awwwards .section-number {
    color: var(--red);
}

.section-design-awwwards .section-title {
    color: white;
}

.section-design-awwwards .section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* Background Effects */
.design-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.design-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.design-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.design-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.design-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Device Showcase Grid */
.device-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

/* Device Card */
.device-card {
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    perspective: 1000px;
}

.device-card:hover {
    transform: translateY(-20px);
}

.device-card:hover .device-frame {
    transform: rotateX(5deg) rotateY(-5deg);
}

.device-card:hover .device-glow {
    opacity: 1;
    transform: scale(1.1);
}

.device-card:hover .screen-overlay {
    opacity: 1;
}

.device-card:hover .device-hover-ring {
    opacity: 1;
    transform: scale(1.05);
}

/* Device Glow */
.device-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(234,20,44,0.3) 0%, transparent 70%);
    border-radius: 30px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.device-glow.featured {
    background: radial-gradient(ellipse at center, rgba(0,163,224,0.4) 0%, transparent 70%);
}

.device-glow.dark {
    background: radial-gradient(ellipse at center, rgba(139,92,246,0.3) 0%, transparent 70%);
}

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(135deg, var(--blue), #0077b3);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0 0 8px 8px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,163,224,0.4);
}

/* Device Frame */
.device-frame {
    background: linear-gradient(145deg, #1a1a24, #252532);
    border-radius: 24px;
    padding: 12px;
    box-shadow:
        0 25px 50px -12px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.device-frame.dark {
    background: linear-gradient(145deg, #0f0f14, #1a1a24);
}

/* Device Notch */
.device-notch {
    width: 80px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 10px;
}

.device-notch.dark {
    background: #222;
}

/* Device Screen */
.device-screen {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.device-screen.dark {
    background: #1e293b;
}

/* Screen Content - Previews */
.screen-content {
    width: 100%;
    height: 100%;
    padding: 12px;
}

/* Homepage Preview */
.homepage-preview .preview-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.preview-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: 800;
}

.preview-logo.sm { width: 18px; height: 18px; font-size: 6px; }

.preview-links {
    display: flex;
    gap: 6px;
}

.preview-links span {
    width: 30px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

.preview-hero {
    text-align: center;
    padding: 15px 10px;
}

.preview-badge {
    width: 60px;
    height: 12px;
    background: rgba(234,20,44,0.1);
    border-radius: 6px;
    margin: 0 auto 8px;
}

.preview-title {
    width: 80%;
    height: 14px;
    background: linear-gradient(90deg, #1f2937, #374151);
    border-radius: 4px;
    margin: 0 auto 6px;
}

.preview-subtitle {
    width: 60%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin: 0 auto 10px;
}

.preview-search {
    width: 90%;
    height: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.preview-card {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 8px;
}

/* Profile Preview */
.profile-preview .preview-nav.mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.preview-breadcrumb {
    width: 60px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

.preview-profile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    margin-bottom: 8px;
}

.preview-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 800;
}

.preview-company-info {
    flex: 1;
}

.preview-badges {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.preview-badges span {
    width: 30px;
    height: 10px;
    border-radius: 5px;
}

.preview-badges .verified { background: rgba(16,185,129,0.2); }
.preview-badges .premium { background: rgba(234,20,44,0.2); }

.preview-company-name {
    width: 80px;
    height: 10px;
    background: #1f2937;
    border-radius: 3px;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.preview-metric {
    height: 35px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.preview-tabs {
    display: flex;
    gap: 6px;
}

.preview-tabs span {
    flex: 1;
    height: 20px;
    background: #f3f4f6;
    border-radius: 6px;
}

.preview-tabs span.active {
    background: var(--red);
}

/* Backoffice Preview */
.backoffice-preview {
    display: flex;
    gap: 8px;
    background: #1e293b;
}

.preview-sidebar {
    width: 50px;
    background: #0f172a;
    border-radius: 8px;
    padding: 8px 4px;
}

.preview-sidebar-logo {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 4px;
    margin: 0 auto 10px;
}

.preview-sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-sidebar-items span {
    height: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.preview-sidebar-items span.active {
    background: var(--blue);
}

.preview-main {
    flex: 1;
}

.preview-topbar {
    height: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-bottom: 8px;
}

.preview-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.preview-widget {
    height: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.preview-table {
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 6px;
}

.preview-table-row {
    height: 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    margin-bottom: 4px;
}

.preview-table-row:last-child { margin-bottom: 0; }

/* Screen Overlay */
.screen-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.screen-overlay.dark {
    background: rgba(0,0,0,0.8);
}

.play-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.device-card:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.play-icon svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.screen-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Device Hover Ring */
.device-hover-ring {
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    border: 2px solid var(--red);
    opacity: 0;
    transition: all 0.4s ease;
}

.device-hover-ring.dark {
    border-color: #8b5cf6;
}

/* Device Info */
.device-info {
    padding: 1.5rem 0.5rem 0;
    text-align: center;
}

.device-info.dark {
    color: white;
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.75rem;
    background: rgba(234,20,44,0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.device-badge.featured {
    background: rgba(0,163,224,0.1);
    color: var(--blue);
}

.device-badge.dark {
    background: rgba(139,92,246,0.1);
    color: #a78bfa;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.badge-dot.live {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.device-info h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.device-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.device-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.device-features span {
    padding: 0.3rem 0.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
}

.device-features.dark span {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.2);
}

/* Design Highlights */
.design-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(234,20,44,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-icon.lux {
    background: linear-gradient(135deg, rgba(234,20,44,0.2), rgba(0,163,224,0.2));
    font-size: 1.5rem;
}

.highlight-text strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.highlight-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.highlight-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ==========================================
   FULLSCREEN DEMO MODAL
   ========================================== */
.fullscreen-demo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fullscreen-demo-overlay.active {
    display: flex;
    opacity: 1;
}

.demo-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.demo-tabs {
    display: flex;
    gap: 0.5rem;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-tab:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    color: white;
}

.demo-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.demo-tab .tab-icon {
    font-size: 1rem;
}

.demo-close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-close:hover {
    background: rgba(234,20,44,0.2);
    border-color: var(--red);
    color: white;
}

.demo-close svg {
    width: 18px;
    height: 18px;
}

.demo-frame-container {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-iframe {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    background: white;
}

.demo-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0,0,0,0.9);
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.demo-loading.active {
    opacity: 1;
    pointer-events: auto;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive Design Showcase */
@media (max-width: 1200px) {
    .device-showcase {
        gap: 2rem;
    }

    .device-frame {
        padding: 10px;
    }
}

@media (max-width: 1024px) {
    .device-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .device-card.featured {
        order: -1;
    }

    .design-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .highlight-divider {
        width: 80%;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .section-design-awwwards {
        padding: 5rem 0;
    }

    .device-showcase {
        max-width: 100%;
        gap: 2rem;
    }

    .demo-controls {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .demo-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .demo-frame-container {
        padding: 0.5rem;
    }
}

/* ==========================================
   DESIGN PROPOSAL V2 - ANEDA/AWWWARDS STYLE
   ========================================== */
.section-design-v2 {
    position: relative;
    background: #fafafa;
    padding: 8rem 0;
    overflow: hidden;
}

.design-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    display: flex;
    opacity: 0.03;
    pointer-events: none;
}

.lux-stripe {
    flex: 1;
}

.lux-stripe.stripe-red { background: var(--red); }
.lux-stripe.stripe-white { background: #ccc; }
.lux-stripe.stripe-blue { background: var(--blue); }

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

/* Work Card */
.work-card {
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover {
    transform: translateY(-12px);
}

.work-card:hover .card-border-effect {
    opacity: 1;
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

.work-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
}

.work-card:hover .work-card-inner {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, var(--blue), #0077b3);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(0,163,224,0.4);
}

/* Card Border Effect */
.card-border-effect {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card-border-effect.featured {
    background: linear-gradient(135deg, var(--blue), #6366f1);
}

.card-border-effect.dark {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

/* Work Card Visual */
.work-card-visual {
    position: relative;
    background: #f5f5f7;
    padding: 1.5rem;
    padding-bottom: 1rem;
}

.work-card-visual.dark {
    background: #1e293b;
}

/* Work Preview - Browser Frame */
.work-preview {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.work-preview.backoffice-v2 {
    background: #0f172a;
}

.wp-browser {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: #f0f0f2;
    border-bottom: 1px solid #e5e5e7;
}

.wp-browser.dark {
    background: #1e293b;
    border-color: rgba(255,255,255,0.1);
}

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

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    padding: 0.35rem 0.75rem;
    background: white;
    border-radius: 6px;
    font-size: 0.65rem;
    color: #666;
    font-family: monospace;
}

.wp-browser.dark .browser-url {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* WP Content */
.wp-content {
    padding: 1rem;
    min-height: 180px;
}

/* Homepage V2 Preview */
.wp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.wp-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
}

.logo-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text em {
    color: var(--red);
    font-style: normal;
}

.wp-menu {
    width: 60px;
    height: 8px;
    background: #eee;
    border-radius: 4px;
}

.wp-hero {
    text-align: center;
    padding: 0.5rem 0;
}

.hero-flag {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 0.75rem;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.hero-title strong {
    background: linear-gradient(135deg, var(--red), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    max-width: 200px;
    margin: 0 auto;
}

.search-icon { font-size: 0.75rem; }
.search-placeholder {
    flex: 1;
    font-size: 0.6rem;
    color: #999;
}

.search-btn {
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 4px;
}

.wp-cards {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mini-card {
    flex: 1;
    height: 35px;
    border-radius: 6px;
}

.mini-card.c1 { background: linear-gradient(135deg, #fee2e2, #fecaca); }
.mini-card.c2 { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }
.mini-card.c3 { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }

/* Profile V2 Preview */
.wp-content.profile {
    padding: 0.75rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 0.75rem;
}

.profile-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
}

.profile-info {
    flex: 1;
}

.profile-badges {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.badge-verified {
    background: #10b981;
    color: white;
    font-size: 0.5rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge-premium {
    background: var(--red);
    color: white;
    font-size: 0.5rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.profile-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
}

.profile-location {
    font-size: 0.55rem;
    color: #666;
}

.profile-metrics {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pm-item {
    flex: 1;
    background: #f9fafb;
    border-radius: 6px;
    padding: 0.5rem;
    text-align: center;
}

.pm-value {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
}

.pm-label {
    font-size: 0.5rem;
    color: #666;
}

.profile-cta {
    display: flex;
    gap: 0.5rem;
}

.cta-secondary {
    flex: 1;
    padding: 0.4rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.55rem;
    text-align: center;
}

.cta-primary {
    flex: 1;
    padding: 0.4rem;
    background: var(--red);
    color: white;
    border-radius: 6px;
    font-size: 0.55rem;
    text-align: center;
}

/* Admin/Backoffice V2 Preview */
.wp-content.admin {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    min-height: 160px;
}

.admin-sidebar {
    width: 45px;
    background: #0f172a;
    border-radius: 8px;
    padding: 0.5rem;
}

.sidebar-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.5rem;
    font-weight: 800;
    margin: 0 auto 0.75rem;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-menu span {
    height: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.sidebar-menu span.active {
    background: var(--blue);
}

.admin-main {
    flex: 1;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.topbar-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
}

.topbar-btn {
    font-size: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: var(--blue);
    color: white;
    border-radius: 4px;
}

.admin-stats {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.stat-box {
    flex: 1;
    padding: 0.4rem;
    border-radius: 6px;
    text-align: center;
}

.stat-box.s1 { background: rgba(59,130,246,0.2); }
.stat-box.s2 { background: rgba(16,185,129,0.2); }
.stat-box.s3 { background: rgba(234,20,44,0.2); }

.stat-box span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.stat-box small {
    font-size: 0.45rem;
    color: rgba(255,255,255,0.6);
}

.admin-table {
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 0.35rem;
}

.table-row {
    height: 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    margin-bottom: 0.25rem;
}

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

/* Work Card Overlay */
.work-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.work-card-overlay.dark {
    background: rgba(0,0,0,0.85);
}

.overlay-content {
    text-align: center;
    color: white;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
}

.work-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--red);
    margin-left: 3px;
}

.overlay-content span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Work Card Info */
.work-card-info {
    padding: 1.5rem;
}

.work-card-info.dark {
    background: #1e293b;
    color: white;
}

.work-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.work-tag {
    padding: 0.3rem 0.75rem;
    background: rgba(234,20,44,0.1);
    color: var(--red);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
}

.work-tag.blue {
    background: rgba(0,163,224,0.1);
    color: var(--blue);
}

.work-tag.purple {
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
}

.work-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #666;
}

.work-card-info.dark .work-status {
    color: rgba(255,255,255,0.6);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.work-card-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.work-card-info.dark h3 {
    color: white;
}

.work-card-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.work-card-info.dark p {
    color: rgba(255,255,255,0.6);
}

.work-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.work-tech span {
    padding: 0.3rem 0.6rem;
    background: #f3f4f6;
    color: #666;
    font-size: 0.7rem;
    border-radius: 4px;
}

.work-tech.dark span {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Luxembourg Colors Bar */
.lux-colors-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.lcb-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lcb-swatch {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lcb-swatch.red { background: var(--red); }
.lcb-swatch.white { background: #eee; border: 1px solid #ddd; }
.lcb-swatch.blue { background: var(--blue); }

.lcb-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
}

.lcb-info code {
    font-size: 0.75rem;
    color: #666;
    font-family: monospace;
}

.lcb-divider {
    width: 1px;
    height: 30px;
    background: #eee;
}

.lcb-flag {
    font-size: 2rem;
    margin-left: 1rem;
}

/* Work Grid Responsive */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .work-card.featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-design-v2 {
        padding: 5rem 0;
    }

    .work-grid {
        max-width: 100%;
    }

    .lux-colors-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .lcb-divider {
        display: none;
    }
}

/* ==========================================
   PRICING V2 - TABLE STYLE
   ========================================== */
.section-pricing-v2 {
    background: white;
    padding: 8rem 0;
}

/* Pricing Table */
.pricing-table-wrapper {
    max-width: 900px;
    margin: 3rem auto;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.pt-header {
    display: grid;
    grid-template-columns: 1fr 2fr 120px;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--dark);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pt-row {
    display: grid;
    grid-template-columns: 1fr 2fr 120px;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: all 0.3s ease;
}

.pt-row:hover:not(.total) {
    background: #fafafa;
}

.pt-row.total {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-bottom: none;
}

.pt-col.section-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.section-badge.red { background: var(--red); }
.section-badge.blue { background: var(--blue); }
.section-badge.green { background: #10b981; }
.section-badge.purple { background: #8b5cf6; }

.pt-col.section-col span {
    font-weight: 600;
    color: var(--dark);
}

.pt-col.desc-col p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.pt-col.price-col {
    text-align: right;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.total-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.total-desc {
    font-size: 0.8rem !important;
    color: #888 !important;
}

.price-total {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline Bar */
.timeline-bar {
    max-width: 900px;
    margin: 3rem auto;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.tb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tb-title {
    font-weight: 600;
    color: var(--dark);
}

.tb-duration {
    font-size: 0.85rem;
    color: #666;
    padding: 0.3rem 0.75rem;
    background: #f5f5f5;
    border-radius: 50px;
}

.tb-phases {
    display: flex;
    gap: 6px;
    border-radius: 12px;
    overflow: hidden;
}

.tb-phase {
    position: relative;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.phase-fill {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    border-radius: 8px;
}

.phase-fill.red { background: var(--red); }
.phase-fill.blue { background: var(--blue); }
.phase-fill.green { background: #10b981; }
.phase-fill.purple { background: #8b5cf6; }
.phase-fill.orange { background: #f59e0b; }


.tb-phase-section {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
}

.tb-phase-section:last-of-type {
    margin-bottom: 0;
}

.tb-phase-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.tb-phase-label .phase-icon {
    font-size: 1.25rem;
}

.tb-phase-label .phase-duration {
    margin-left: auto;
    padding: 0.35rem 0.85rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.tb-phases.single .tb-phase {
    border-radius: 10px;
}

.tb-phases.single .tb-phase::before {
    display: none;
}

.phase-emoji {
    position: relative;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.phase-label {
    position: relative;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.phase-weeks {
    position: relative;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    background: rgba(255,255,255,0.9);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Phase Details */
.phase-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phase-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #eee;
}

.phase-detail-item.warning {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #92400e;
}

.detail-icon {
    font-size: 0.9rem;
}

/* Phase Details Grid */
.phase-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.phase-detail-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
    font-size: 0.75rem;
    color: #666;
}

.phase-detail-card strong {
    font-size: 0.7rem;
    color: var(--dark);
}

.phase-detail-card.red { border-left: 3px solid var(--red); }
.phase-detail-card.blue { border-left: 3px solid var(--blue); }
.phase-detail-card.green { border-left: 3px solid #10b981; }
.phase-detail-card.purple { border-left: 3px solid #8b5cf6; }

/* Timeline Dependencies */
.timeline-dependencies {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border: 1px solid #fcd34d;
    border-radius: 10px;
}

.dep-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.75rem;
}

.dep-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.dep-items span {
    font-size: 0.8rem;
    color: #78350f;
    background: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid #fcd34d;
}

@media (max-width: 768px) {
    .phase-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dep-items {
        flex-direction: column;
    }
}

.timeline-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 500;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,163,224,0.08) 0%, rgba(0,163,224,0.03) 100%);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    position: relative;
    animation: pulse-note 3s ease-in-out infinite;
}

.timeline-note::before {
    content: 'ℹ️';
    margin-right: 0.5rem;
}

@keyframes pulse-note {
    0%, 100% {
        border-left-color: var(--blue);
        background: linear-gradient(135deg, rgba(0,163,224,0.08) 0%, rgba(0,163,224,0.03) 100%);
    }
    50% {
        border-left-color: #0080b3;
        background: linear-gradient(135deg, rgba(0,163,224,0.15) 0%, rgba(0,163,224,0.06) 100%);
    }
}

/* Included Grid */
.included-grid {
    max-width: 900px;
    margin: 0 auto;
}

.included-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.included-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.included-item svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.included-item span {
    font-size: 0.85rem;
    color: #666;
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .section-pricing-v2 {
        padding: 5rem 0;
    }

    .pt-header,
    .pt-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: left;
    }

    .pt-header .price-col,
    .pt-col.price-col {
        text-align: left;
    }

    .tb-phases {
        flex-direction: column;
    }

    .tb-phase {
        height: auto;
        padding: 0.75rem;
    }

    .included-items {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ANEDA TOP BAR
   ========================================== */
.aneda-topbar {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.aneda-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aneda-logo-link {
    display: block;
}

.aneda-logo-img {
    height: 24px;
    width: auto;
}

.aneda-tagline {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.05em;
}

.main-nav.has-topbar {
    top: 41px;
}

body {
    padding-top: 41px;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.partners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.bt-logo-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bt-mark {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
}

.bt-text {
    display: flex;
    flex-direction: column;
}

.bt-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.bt-title .lux-red {
    color: var(--red);
}

.bt-subtitle {
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.partners-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

.partners-text {
    text-align: right;
}

.partners-text span {
    display: block;
    font-size: 0.75rem;
    color: #888;
}

.partners-text strong {
    font-size: 0.9rem;
    color: var(--dark);
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.partner-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    font-size: 0.7rem;
    color: #888;
}

@media (max-width: 768px) {
    .partners-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .partners-divider {
        width: 60px;
        height: 1px;
    }
    .partners-text {
        text-align: center;
    }
    .partners-logos {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .aneda-topbar-inner {
        flex-direction: column;
        gap: 0.25rem;
    }
    .aneda-tagline {
        font-size: 0.65rem;
    }
}

/* ==========================================
   SECURITY V2 - EXTENDED
   ========================================== */
.section-security-v2 {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, white 50%, #f8fafc 100%);
    padding: 8rem 0;
    overflow: hidden;
}

.security-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.security-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.security-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(234,20,44,0.03) 0%, transparent 60%);
}

.security-architecture {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 3rem 0 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.arch-layer {
    flex: 1;
    max-width: 280px;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.arch-layer:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.arch-layer.frontend { border-top: 3px solid var(--blue); }
.arch-layer.api { border-top: 3px solid var(--red); }
.arch-layer.database { border-top: 3px solid #10b981; }

.layer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.layer-icon { font-size: 1.25rem; }
.layer-title { font-weight: 600; color: var(--dark); }

.layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.layer-items span {
    padding: 0.3rem 0.6rem;
    background: white;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #666;
}

.arch-connector {
    width: 40px;
    color: #ddd;
}

.arch-connector svg {
    width: 100%;
    height: 60px;
}

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

.sec-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.sec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--red);
}

.sec-card.featured {
    background: linear-gradient(135deg, #fafafa, white);
    border: 2px solid var(--red);
}

.sec-card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.4rem 1rem;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
}

.sec-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sec-card-icon svg { width: 28px; height: 28px; }
.sec-card-icon.red { background: rgba(234,20,44,0.1); color: var(--red); }
.sec-card-icon.blue { background: rgba(0,163,224,0.1); color: var(--blue); }
.sec-card-icon.green { background: rgba(16,185,129,0.1); color: #10b981; }
.sec-card-icon.purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }

.sec-card-content h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.sec-card-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.sec-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.sec-features li {
    font-size: 0.8rem;
    color: #555;
    padding-left: 1.25rem;
    position: relative;
}

.sec-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.sec-card-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
}

.sec-card-action svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.sec-card:hover .sec-card-action svg {
    transform: translateX(5px);
}

.certifications-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cert-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(16,185,129,0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg { width: 22px; height: 22px; }
.cert-icon.blue { background: rgba(0,163,224,0.1); color: var(--blue); }
.cert-icon.red { background: rgba(234,20,44,0.1); color: var(--red); }
.cert-icon.green { background: rgba(16,185,129,0.1); color: #10b981; }

.cert-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.cert-text span {
    font-size: 0.75rem;
    color: #888;
}

/* Security Popup */
.security-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: auto !important;
}

.security-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.security-popup {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    max-width: 95vw;
    width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 3rem;
    animation: popupSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: auto !important;
}

.popup-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.popup-content-grid .popup-section {
    margin-bottom: 0;
    height: fit-content;
}

.popup-tech-section {
    grid-column: 1 / -1;
}

.security-popup * {
    cursor: auto !important;
}

/* Neutral scrollbar for popup instead of red */
.security-popup::-webkit-scrollbar {
    width: 6px;
}
.security-popup::-webkit-scrollbar-track {
    background: transparent;
}
.security-popup::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
.security-popup::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@keyframes popupSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.08);
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.popup-close:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: scale(1.05);
}
.popup-close svg { width: 18px; height: 18px; }

.popup-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.popup-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-icon.red {
    background: linear-gradient(135deg, rgba(234,20,44,0.15) 0%, rgba(234,20,44,0.08) 100%);
    box-shadow: 0 4px 12px rgba(234,20,44,0.15);
}
.popup-icon.blue {
    background: linear-gradient(135deg, rgba(0,163,224,0.15) 0%, rgba(0,163,224,0.08) 100%);
    box-shadow: 0 4px 12px rgba(0,163,224,0.15);
}
.popup-icon.green {
    background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0.08) 100%);
    box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}
.popup-icon.purple {
    background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(139,92,246,0.08) 100%);
    box-shadow: 0 4px 12px rgba(139,92,246,0.15);
}

.popup-title h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.popup-title p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}

.popup-section {
    margin-bottom: 1.75rem;
    background: #f8fafc;
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}

.popup-section h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-section ul { list-style: none; padding: 0; margin: 0; }

.popup-section li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.popup-section li:last-child { border-bottom: none; padding-bottom: 0; }

.popup-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.popup-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.popup-tech-stack span {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-tech-stack span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .security-architecture { flex-direction: column; gap: 1rem; }
    .arch-connector { transform: rotate(90deg); width: 60px; }
    .arch-layer { max-width: 100%; }
    .security-cards-grid { grid-template-columns: 1fr; }
    .popup-content-grid { grid-template-columns: 1fr; }
    .security-popup { width: 95vw; padding: 2rem; }
}

@media (max-width: 768px) {
    .section-security-v2 { padding: 5rem 0; }
    .certifications-bar { flex-wrap: wrap; gap: 1.5rem; }
    .sec-features { grid-template-columns: 1fr; }
    .security-popup { padding: 1.5rem; max-height: 95vh; }
    .popup-content-grid { gap: 1rem; }
}

/* ========================================
   FUNCTIONAL SCOPE SECTION
   ======================================== */

.section-functional-scope {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    overflow: hidden;
}

.scope-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.scope-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,163,224,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,163,224,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Scope Section Titles */
.scope-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.scope-icon {
    font-size: 1.75rem;
}

.phase-tag {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    background: rgba(0,163,224,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

/* Target Audiences */
.scope-audiences {
    margin-bottom: 4rem;
}

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

.audience-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.audience-card.sellers::before { background: var(--red); }
.audience-card.buyers::before { background: var(--blue); }
.audience-card.intermediaries::before { background: #8b5cf6; }

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audience-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.audience-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.audience-card ul {
    list-style: none;
}

.audience-card li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.audience-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
}

/* Core Modules */
.scope-modules {
    margin-bottom: 4rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.module-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.module-card.main {
    grid-row: span 2;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.module-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.module-badge.red { background: rgba(234,20,44,0.1); color: var(--red); }
.module-badge.blue { background: rgba(0,163,224,0.1); color: var(--blue); }
.module-badge.purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.module-badge.green { background: rgba(16,185,129,0.1); color: #10b981; }

.module-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.module-features ul {
    list-style: none;
}

.module-features li {
    font-size: 0.8rem;
    color: var(--text);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-group {
    margin-bottom: 1.25rem;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.fg-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px dashed var(--border);
}

.lang-flags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lang-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    background: #f5f5f5;
    border-radius: 4px;
}

/* Confidentiality System */
.scope-confidentiality {
    margin-bottom: 4rem;
}

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

.conf-level {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.conf-level:hover {
    transform: translateY(-5px);
}

.conf-level.level-1 { border-color: rgba(16,185,129,0.3); }
.conf-level.level-2 { border-color: rgba(0,163,224,0.3); }
.conf-level.level-3 { border-color: rgba(234,20,44,0.3); }

.level-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.level-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
}

.level-1 .level-badge { background: rgba(16,185,129,0.1); color: #10b981; }
.level-2 .level-badge { background: rgba(0,163,224,0.1); color: var(--blue); }
.level-3 .level-badge { background: rgba(234,20,44,0.1); color: var(--red); }

.level-header h4 {
    font-size: 1.1rem;
}

.conf-level > p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.conf-level ul {
    list-style: none;
}

.conf-level li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.conf-level li:last-child { border-bottom: none; }

.conf-level li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.level-1 li::before { color: #10b981; }
.level-2 li::before { color: var(--blue); }
.level-3 li::before { color: var(--red); }

/* Optional Features */
.scope-optional {
    margin-bottom: 4rem;
}

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

.optional-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 2px dashed var(--border);
    display: flex;
    gap: 1.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.optional-card::before {
    content: 'OPTION';
    position: absolute;
    top: 1rem;
    right: -2rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: white;
    background: var(--blue);
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
}

.optional-card[data-option="hosting"]::before {
    background: #8b5cf6;
    content: 'PARTNER';
}

.optional-card[data-option="migration"]::before {
    background: #f59e0b;
    content: 'TBD';
}

.optional-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
}

.optional-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.optional-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.optional-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.optional-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.status-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
}

.status-tag.option { background: rgba(0,163,224,0.1); color: var(--blue); }
.status-tag.partner { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.status-tag.estimate { background: rgba(245,158,11,0.1); color: #f59e0b; }

.status-note {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

/* Technical Requirements */
.scope-requirements {
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.req-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.req-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.req-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.req-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.req-card p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Budget Note */
.scope-budget-note {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4a 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: white;
}

.budget-note-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.budget-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.budget-content {
    flex: 1;
}

.budget-content h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.budget-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.budget-content strong {
    color: #10b981;
}

.budget-badge {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(16,185,129,0.5);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    text-align: center;
}

.budget-amount {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #10b981;
}

.budget-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive - Functional Scope */
@media (max-width: 1200px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .module-card.main {
        grid-row: auto;
        grid-column: span 2;
    }
    .requirements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-functional-scope {
        padding: 5rem 0;
    }
    .audience-grid,
    .confidentiality-levels,
    .optional-grid {
        grid-template-columns: 1fr;
    }
    .modules-grid {
        grid-template-columns: 1fr;
    }
    .module-card.main {
        grid-column: auto;
    }
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .budget-note-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* ========================================
   SECTION 01: PROJECT & PARTNERS
   ======================================== */

.section-project {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.project-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.project-logo {
    display: inline-block;
}

.bt-logo-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.bt-mark {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red) 0%, #c91125 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.bt-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bt-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.bt-title .lux-red {
    color: var(--red);
}

.bt-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Institutional Partners */
.institutional-partners {
    text-align: center;
}

.partners-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.partners-logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.partner-card .partner-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
}

.partner-card .partner-name {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   SECTION 05: SCOPE CHECKLIST
   ======================================== */

.section-scope-checklist {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    position: relative;
}

/* Legend */
.checklist-legend {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.checklist-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.legend-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.legend-item.included .legend-icon {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.legend-item.optional .legend-icon {
    background: rgba(0,163,224,0.1);
    color: var(--blue);
}

.legend-item.partner .legend-icon {
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.checklist-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.checklist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.checklist-icon {
    font-size: 1.5rem;
}

.checklist-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items .check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-items li.included .check {
    background: rgba(16,185,129,0.15);
    color: #10b981;
}

.checklist-items li.optional .check {
    background: rgba(0,163,224,0.15);
    color: var(--blue);
}

.checklist-items li.partner .check {
    background: rgba(139,92,246,0.15);
    color: #8b5cf6;
}

/* Options Section */
.options-section {
    margin-bottom: 3rem;
}

.options-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.option-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px dashed var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateY(0) translateZ(0);
}

.option-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.option-status {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    white-space: nowrap;
}

.option-status.optional {
    background: var(--blue);
    color: white;
}

.option-status.partner {
    background: #8b5cf6;
    color: white;
}

.option-status.tbd {
    background: #f59e0b;
    color: white;
}

.option-icon {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.option-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.option-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.option-note {
    font-size: 0.65rem;
    color: var(--text-light);
    font-style: italic;
}

/* Budget Summary */
.budget-summary {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4a 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.budget-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.budget-left, .budget-right {
    text-align: center;
}

.budget-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.budget-max {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
}

.budget-vs {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.4);
}

.budget-value {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.budget-check {
    width: 50px;
    height: 50px;
    background: rgba(16,185,129,0.2);
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive - Scope Checklist */
@media (max-width: 1024px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-scope-checklist {
        padding: 5rem 0;
    }
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    .options-grid {
        grid-template-columns: 1fr;
    }
    .checklist-legend {
        gap: 1.5rem;
    }
    .budget-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .budget-vs {
        transform: rotate(90deg);
    }
    .partners-logos-grid {
        gap: 1.5rem;
    }
}

/* ========================================
   TECHNOLOGY SECTION - ARCHITECTURE
   ======================================== */

.tech-architecture {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 4rem;
}

.arch-layer {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 500px;
    transition: var(--transition);
}

.arch-layer:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: scale(1.02);
}

.arch-layer.featured {
    background: linear-gradient(135deg, rgba(234,20,44,0.15) 0%, rgba(0,163,224,0.15) 100%);
    border-color: var(--red);
}

.layer-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.layer-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
    background: rgba(234,20,44,0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.layer-label span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.layer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.tech-badge:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.tech-badge.badge-featured {
    background: linear-gradient(135deg, var(--red), var(--blue));
    border: none;
    color: white;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.badge-dot.pulse {
    animation: pulse 2s infinite;
}

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

.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40px;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(234,20,44,0.5), rgba(0,163,224,0.5));
}

.connector-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid var(--dark);
}

/* Tech Highlights */
.tech-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.highlight-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive - Technology */
@media (max-width: 768px) {
    .tech-highlights {
        grid-template-columns: 1fr;
    }
    .arch-layer {
        max-width: 100%;
    }
}

/* ========================================
   HERO SECTION - IMPACT DESIGN
   ======================================== */

.hero-impact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0d0d1a 100%);
}

.hero-impact .hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(234,20,44,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(0,163,224,0.1) 0%, transparent 40%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--red);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--blue);
    bottom: 20%;
    right: 15%;
    animation-delay: -3s;
}

.glow-3 {
    width: 200px;
    height: 200px;
    background: #8b5cf6;
    top: 50%;
    right: 30%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Flag Accent */
.hero-flag-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
}

.flag-stripe {
    flex: 1;
}

.flag-stripe.red { background: var(--red); }
.flag-stripe.white { background: white; }
.flag-stripe.blue { background: var(--blue); }

/* Hero Content */
.hero-content-impact {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

/* Top Label */
.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.label-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

/* Main Title */
.hero-title-xl {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: white;
    letter-spacing: -0.03em;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-dot {
    -webkit-text-fill-color: var(--red);
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: white;
    font-weight: 600;
}

/* Key Numbers */
.hero-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.number-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.number-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.hero-number-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn svg {
    width: 20px;
    height: 20px;
}

.hero-btn.primary {
    background: var(--red);
    color: white;
    border: 2px solid var(--red);
}

.hero-btn.primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234,20,44,0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-btn.secondary:hover {
    border-color: white;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

.hero-scroll span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Bottom Fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-impact {
        padding-top: 100px;
    }
    .hero-numbers {
        gap: 1rem;
    }
    .hero-number-divider {
        display: none;
    }
    .number-value {
        font-size: 1.5rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   SECURITY SECTION - CLEAN LAYOUT
   ======================================== */

.section-security-clean {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    position: relative;
}

.section-security-clean .section-header {
    position: relative;
    z-index: 2;
}

.section-security-clean .section-title {
    color: var(--dark);
}

.section-security-clean .section-subtitle {
    color: var(--text-light);
}

.security-bg-clean {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sec-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 0%, rgba(234,20,44,0.05) 0%, transparent 50%);
}

/* Main Security Grid */
.security-main-grid {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 2rem;
    align-items: start;
}

/* Left: Standards */
.sec-standards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sec-standard-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sec-standard-card.nc3 {
    border-color: rgba(234,20,44,0.2);
}

.sec-standard-card.nc3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
}

.standard-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--red);
    background: rgba(234,20,44,0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.standard-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.sec-standard-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sec-standard-card > p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.sec-standard-card ul {
    list-style: none;
    text-align: left;
}

.sec-standard-card li {
    font-size: 0.8rem;
    color: var(--text);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.sec-standard-card li:last-child {
    border-bottom: none;
}

.sec-standard-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 0.7rem;
}

/* Mini Badges */
.sec-badges-row {
    display: flex;
    gap: 0.5rem;
}

.sec-mini-badge {
    flex: 1;
    background: white;
    border-radius: var(--radius);
    padding: 0.75rem 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.sec-mini-badge .badge-icon {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sec-mini-badge span:last-child {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Center: Architecture */
.sec-architecture-vertical {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.arch-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.arch-hint {
    font-size: 0.75rem;
    color: var(--blue);
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.arch-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.arch-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.arch-item:hover {
    background: white;
    border-color: var(--red);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.arch-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.arch-info {
    flex: 1;
}

.arch-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.arch-info span {
    font-size: 0.7rem;
    color: var(--text-light);
}

.arch-arrow {
    color: var(--text-light);
    transition: var(--transition);
}

.arch-item:hover .arch-arrow {
    color: var(--red);
    transform: translateX(3px);
}

.arch-connector-v {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--red), var(--blue));
    margin: 0 auto;
    opacity: 0.3;
}

/* Right: Features List */
.sec-features-list {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.sec-features-list h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--red);
}

.sec-feature-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.feature-check {
    width: 22px;
    height: 22px;
    background: rgba(16,185,129,0.1);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.1rem;
}

.feature-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Responsive Security */
@media (max-width: 1024px) {
    .security-main-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sec-standards {
        grid-column: span 2;
        flex-direction: row;
    }
    .sec-standard-card {
        flex: 1;
    }
    .sec-badges-row {
        flex: 1;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-security-clean {
        padding: 5rem 0;
    }
    .security-main-grid {
        grid-template-columns: 1fr;
    }
    .sec-standards {
        grid-column: auto;
        flex-direction: column;
    }
    .sec-badges-row {
        flex-direction: row;
    }
}

/* ========================================
   DESIGN PROPOSAL - AWWWARDS STYLE
   ======================================== */

.section-design-awwwards {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: #0a0a0f;
    color: white;
}

.design-aww-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.aww-gradient-1 {
    position: absolute;
    top: -50%;
    left: -25%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(234,20,44,0.15) 0%, transparent 60%);
    animation: awwFloat 20s ease-in-out infinite;
}

.aww-gradient-2 {
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(0,163,224,0.1) 0%, transparent 60%);
    animation: awwFloat 25s ease-in-out infinite reverse;
}

@keyframes awwFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 30px) rotate(5deg); }
}

.aww-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.section-design-awwwards .section-title,
.section-design-awwwards .section-subtitle,
.section-design-awwwards .section-number {
    color: white;
}

.section-design-awwwards .section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* Awwwards Showcase Grid */
.aww-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Awwwards Card Base */
.aww-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.aww-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.aww-card-glow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234,20,44,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.aww-card-glow.blue {
    background: radial-gradient(circle, rgba(0,163,224,0.3) 0%, transparent 70%);
}

.aww-card-glow.purple {
    background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
}

.aww-card:hover .aww-card-glow {
    opacity: 1;
}

.aww-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.aww-card-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
    transition: border-color 0.3s;
}

.aww-card:hover .aww-card-border {
    border-color: var(--red);
}

.aww-card:hover .aww-card-border.blue {
    border-color: var(--blue);
}

.aww-card:hover .aww-card-border.purple {
    border-color: #8b5cf6;
}

.aww-card:hover .aww-card-border.green {
    border-color: #10b981;
}

/* Small Cards */
.aww-card-small {
    min-height: 280px;
}

.aww-card-small .aww-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aww-device-mini {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.mini-screen {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    padding: 0.75rem;
    min-height: 100px;
}

.mini-ui {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-header {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mini-cards {
    display: flex;
    gap: 0.5rem;
}

.mini-stat {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 0.5rem;
    text-align: center;
    font-size: 1rem;
}

.mini-list {
    height: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}

.mini-logo {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.mini-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mini-input {
    height: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
}

.mini-btn {
    height: 24px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 4px;
    margin-top: 0.25rem;
}

.mini-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mini-q {
    height: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.mini-q.active {
    height: 32px;
    background: rgba(0,163,224,0.2);
}

.mini-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mini-article {
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.aww-card-info.compact {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aww-card-info.compact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.aww-card-info.compact p {
    font-size: 0.8rem;
    margin-bottom: auto;
    line-height: 1.4;
}

.aww-card-info.compact .aww-cta {
    margin-top: 1rem;
}

/* Homepage Card - Large */
.aww-card-homepage {
    grid-column: span 2;
}

/* Featured Badge */
.aww-featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue), #0082b3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.aww-featured-badge svg {
    width: 14px;
    height: 14px;
}

/* Device Frames */
.aww-device {
    position: relative;
    margin-bottom: 2rem;
}

.device-frame {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
}

.device-frame.dark {
    background: #0d0d1a;
}

.device-notch {
    width: 120px;
    height: 24px;
    background: #0a0a0f;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.device-screen {
    background: #f5f5f5;
    margin: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.device-frame.dark .device-screen {
    background: #12121a;
}

.device-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
}

.device-stand {
    width: 100px;
    height: 60px;
    background: linear-gradient(180deg, #2a2a3a, #1a1a2e);
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
    position: relative;
}

.device-stand::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 10px;
    background: #1a1a2e;
    border-radius: 50%;
}

/* Screen UI - Homepage */
.screen-ui {
    padding: 1rem;
    min-height: 250px;
}

.homepage-ui .ui-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo span {
    width: 28px;
    height: 28px;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
}

.nav-links span {
    width: 40px;
    height: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.nav-cta {
    width: 50px;
    height: 22px;
    background: var(--red);
    border-radius: 4px;
}

.ui-hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-badge-sm {
    display: inline-block;
    font-size: 0.5rem;
    background: rgba(234,20,44,0.1);
    color: var(--red);
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.hero-text {
    margin-bottom: 0.75rem;
}

.hero-text span {
    display: block;
    font-size: 0.6rem;
    color: #666;
}

.hero-text strong {
    display: block;
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 0.4rem 0.5rem;
    max-width: 250px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-icon-sm {
    width: 16px;
    height: 16px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.search-text {
    flex: 1;
    font-size: 0.55rem;
    color: #999;
}

.search-btn-sm {
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
}

.ui-stats {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-pill {
    background: rgba(0,0,0,0.03);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: 0.5rem;
    color: #666;
}

.stat-pill strong {
    color: #1a1a2e;
    margin-right: 0.25rem;
}

.ui-cards-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.mini-card-aww {
    width: 70px;
    height: 50px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Screen UI - Profile */
.profile-ui {
    background: white;
}

.profile-header-ui {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.company-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue), #0082b3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.verified-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #10b981;
    color: white;
    font-size: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.company-info strong {
    display: block;
    font-size: 0.75rem;
    color: #1a1a2e;
}

.company-info span {
    font-size: 0.55rem;
    color: #999;
}

.profile-metrics-ui {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.metric span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}

.metric small {
    font-size: 0.5rem;
    color: #999;
}

.profile-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.profile-tabs span {
    font-size: 0.55rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    color: #999;
}

.profile-tabs span.active {
    background: var(--blue);
    color: white;
}

.profile-content-ui {
    margin-bottom: 1rem;
}

.content-block {
    height: 30px;
    background: rgba(0,0,0,0.03);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.content-block.small {
    width: 60%;
    height: 20px;
}

.profile-actions {
    display: flex;
    gap: 0.5rem;
}

.profile-actions span {
    flex: 1;
    text-align: center;
    padding: 0.4rem;
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid rgba(0,0,0,0.1);
    color: #666;
}

.btn-primary {
    background: var(--red);
    color: white;
}

/* Screen UI - Admin */
.admin-ui {
    display: flex;
    background: #12121a;
    min-height: 200px;
}

.admin-sidebar-ui {
    width: 50px;
    background: #0a0a0f;
    padding: 0.75rem 0.5rem;
}

.sidebar-logo-ui {
    width: 30px;
    height: 30px;
    background: var(--red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 auto 1rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav span {
    width: 30px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 0 auto;
}

.sidebar-nav span.active {
    background: var(--red);
}

.admin-main-ui {
    flex: 1;
    padding: 0.75rem;
}

.admin-header-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.admin-header-ui .title {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.add-btn {
    font-size: 0.5rem;
    background: var(--red);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.admin-kpis {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.kpi {
    flex: 1;
    padding: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
}

.kpi strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
}

.kpi.red strong { color: var(--red); }
.kpi.blue strong { color: var(--blue); }
.kpi.green strong { color: #10b981; }

.kpi span {
    font-size: 0.45rem;
    color: rgba(255,255,255,0.5);
}

.admin-chart {
    height: 40px;
    background: linear-gradient(90deg, 
        rgba(234,20,44,0.2) 0%, 
        rgba(0,163,224,0.2) 50%, 
        rgba(16,185,129,0.2) 100%);
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.admin-table-ui {
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 0.5rem;
}

.table-header {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-bottom: 0.3rem;
}

.table-row-ui {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    margin-bottom: 0.2rem;
}

/* Card Info */
.aww-card-info {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.aww-card-info.dark {
    color: white;
}

.aww-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tag-dot.red { background: var(--red); }
.tag-dot.blue { background: var(--blue); }
.tag-dot.purple { background: #8b5cf6; }

.aww-card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.aww-card-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.aww-tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.aww-tech-stack span {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
}

.aww-tech-stack.dark span {
    background: rgba(255,255,255,0.05);
}

.aww-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

.aww-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.aww-card:hover .aww-cta svg {
    transform: translateX(5px);
}

/* Luxembourg Accent Bar */
.lux-accent-bar {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 3rem;
}

.lux-bar {
    flex: 1;
}

.lux-bar.red { background: var(--red); }
.lux-bar.white { background: white; }
.lux-bar.blue { background: var(--blue); }

/* Responsive - Awwwards */
@media (max-width: 1200px) {
    .aww-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    .aww-card-homepage {
        grid-column: span 2;
    }
    .aww-card-small {
        min-height: 250px;
    }
}

@media (max-width: 1024px) {
    .aww-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .aww-card-homepage,
    .aww-card-profile,
    .aww-card-backoffice,
    .aww-card-dashboard {
        grid-column: span 2;
    }
    .aww-card-small {
        grid-column: span 1;
        min-height: 220px;
    }
    .security-popup {
        width: 95vw;
        max-height: 90vh;
    }
    .popup-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-design-awwwards {
        padding: 5rem 0;
    }
    .aww-showcase {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .aww-card-homepage,
    .aww-card-profile,
    .aww-card-backoffice,
    .aww-card-dashboard,
    .aww-card-small {
        grid-column: span 1;
    }
    .aww-card-content {
        padding: 1.5rem;
    }
    .aww-card-info h3 {
        font-size: 1.25rem;
    }
    .aww-card-small {
        min-height: 200px;
    }
    .aww-card-small .aww-card-content {
        padding: 1rem;
    }
    .mini-screen {
        min-height: 80px;
        padding: 0.5rem;
    }
    /* Timeline responsive */
    .timeline-phase {
        padding: 1rem;
    }
    .phase-emoji {
        font-size: 1.5rem;
    }
    .phase-details-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .phase-detail-card {
        padding: 0.6rem;
    }
    .timeline-dependencies {
        padding: 0.75rem 1rem;
    }
    .dep-items {
        flex-direction: column;
        gap: 0.4rem;
    }
    .dep-items span {
        font-size: 0.75rem;
        text-align: center;
    }
    /* Security popup mobile */
    .security-popup {
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        margin: 0;
    }
    .security-popup-inner {
        padding: 1.5rem;
    }
    .popup-header h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .aww-showcase {
        gap: 1rem;
    }
    .aww-card {
        border-radius: 16px;
    }
    .aww-card-small {
        min-height: 180px;
    }
    .aww-device-mini {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .aww-card-info h3 {
        font-size: 1.1rem;
    }
    .aww-card-info p {
        font-size: 0.8rem;
    }
    .aww-tech-stack {
        flex-wrap: wrap;
    }
    .aww-tech-stack span {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    /* Phase details mobile */
    .phase-detail-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }
    .detail-icon {
        font-size: 0.8rem;
    }
    .timeline-note {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   MOCKUP MODE TOGGLE (Dark/Light)
   ======================================== */
.mockup-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.mode-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.mode-switch {
    display: flex;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.mode-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-btn svg {
    width: 16px;
    height: 16px;
}

.mode-btn:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

.mode-btn.active {
    background: var(--red);
    color: white;
    box-shadow: 0 2px 8px rgba(234,20,44,0.3);
}

.mode-btn.active[data-mode="light"] {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Light Mode Mockups */
.aww-showcase.light-mode .aww-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-color: rgba(0,0,0,0.08);
}

.aww-showcase.light-mode .aww-card-glow {
    opacity: 0.3;
}

.aww-showcase.light-mode .device-screen {
    background: #ffffff;
}

.aww-showcase.light-mode .screen-ui {
    background: #ffffff;
}

.aww-showcase.light-mode .aww-card-info h3 {
    color: var(--dark);
}

.aww-showcase.light-mode .aww-card-info p {
    color: #6b7280;
}

.aww-showcase.light-mode .aww-tag {
    background: rgba(0,0,0,0.05);
    color: #4b5563;
}

.aww-showcase.light-mode .aww-tech-stack span {
    background: rgba(0,0,0,0.05);
    color: #6b7280;
}

.aww-showcase.light-mode .aww-cta {
    color: var(--red);
}

.aww-showcase.light-mode .aww-card-border {
    background: linear-gradient(135deg, var(--red), var(--blue));
    opacity: 0.3;
}

.aww-showcase.light-mode .aww-card:hover .aww-card-border {
    opacity: 0.6;
}

/* Light mode for homepage UI preview */
.aww-showcase.light-mode .homepage-ui {
    background: #ffffff;
}

.aww-showcase.light-mode .ui-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.aww-showcase.light-mode .ui-hero {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.aww-showcase.light-mode .hero-text span,
.aww-showcase.light-mode .hero-text strong {
    color: var(--dark);
}

.aww-showcase.light-mode .hero-search-bar {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.aww-showcase.light-mode .stat-pill {
    background: #f3f4f6;
    color: var(--dark);
}

.aww-showcase.light-mode .mini-card-aww {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

/* Light mode for profile UI */
.aww-showcase.light-mode .profile-ui {
    background: #ffffff;
}

.aww-showcase.light-mode .profile-header-ui {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.aww-showcase.light-mode .company-info strong,
.aww-showcase.light-mode .company-info span {
    color: var(--dark);
}

.aww-showcase.light-mode .profile-metrics-ui .metric span {
    color: var(--dark);
}

.aww-showcase.light-mode .profile-tabs {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.aww-showcase.light-mode .profile-tabs span {
    color: #6b7280;
}

.aww-showcase.light-mode .profile-tabs span.active {
    color: var(--dark);
    background: #ffffff;
}

.aww-showcase.light-mode .content-block {
    background: #f3f4f6;
}

/* Light mode for admin UI */
.aww-showcase.light-mode .admin-ui {
    background: #f9fafb;
}

.aww-showcase.light-mode .admin-sidebar-ui {
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
}

.aww-showcase.light-mode .sidebar-logo-ui {
    color: var(--red);
}

.aww-showcase.light-mode .admin-main-ui {
    background: #f9fafb;
}

.aww-showcase.light-mode .admin-header-ui .title {
    color: var(--dark);
}

.aww-showcase.light-mode .admin-kpis .kpi {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.aww-showcase.light-mode .admin-kpis .kpi strong {
    color: var(--dark);
}

.aww-showcase.light-mode .admin-chart {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.aww-showcase.light-mode .admin-table-ui {
    background: #ffffff;
}

.aww-showcase.light-mode .table-header {
    background: #f3f4f6;
}

.aww-showcase.light-mode .table-row-ui {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* Dark card override in light mode */
.aww-showcase.light-mode .aww-card.dark {
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
}

.aww-showcase.light-mode .aww-card.dark .aww-card-info h3,
.aww-showcase.light-mode .aww-card.dark .aww-card-info p,
.aww-showcase.light-mode .aww-card.dark .aww-tag,
.aww-showcase.light-mode .aww-card.dark .aww-cta {
    color: rgba(255,255,255,0.9);
}

/* ========================================
   ACCESSIBILITY PARTNER SECTION
   ======================================== */
.accessibility-partner-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0,163,224,0.03) 0%, rgba(234,20,44,0.03) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.partner-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.partner-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.partner-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.partner-section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
}

.partner-card-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.partner-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-logo-placeholder {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.partner-logo-img {
    width: 100%;
    max-width: 200px;
}

.partner-logo-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.placeholder-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
}

.placeholder-note {
    font-size: 0.75rem;
    color: #d1d5db;
}

.partner-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.partner-tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.partner-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text);
}

.credential-icon {
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.partner-case-study {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0,163,224,0.05) 0%, rgba(234,20,44,0.05) 100%);
    border-left: 3px solid var(--blue);
}

.case-study-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--blue);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.partner-case-study h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.case-study-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-study-placeholder {
    padding: 1.25rem;
    background: rgba(255,255,255,0.7);
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    text-align: center;
}

.case-study-placeholder span {
    font-size: 0.8rem;
    color: #9ca3af;
    font-style: italic;
}

@media (max-width: 768px) {
    .partner-card-highlight {
        grid-template-columns: 1fr;
    }
    
    .partner-case-study {
        border-left: none;
        border-top: 3px solid var(--blue);
    }
    
    .mockup-mode-toggle {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Demo Theme Toggle */
.demo-theme-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 4px;
}

.theme-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-btn:hover {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.05);
}

.theme-btn.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.theme-btn.active[data-theme="light"] {
    background: rgba(255,255,255,0.95);
    color: #111;
}

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

/* Updated demo-tabs without emoji */
.demo-tab svg {
    flex-shrink: 0;
}

.demo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.demo-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 4px;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-tab:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

.demo-tab.active {
    background: white;
    color: #111;
}

.demo-close {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-close:hover {
    background: rgba(234,20,44,0.2);
    border-color: rgba(234,20,44,0.3);
    color: #EA142C;
}

.demo-close svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   TECHNOLOGY FLOW SECTION - COMPREHENSIVE
   ======================================== */
.section-technology-flow {
    position: relative;
    padding: 5rem 0;
    background: #0f0f23;
    overflow: hidden;
}

.section-technology-flow .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-technology-flow .section-title {
    color: white;
}

.section-technology-flow .section-subtitle {
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Tech Flow Diagram */
.tech-flow-diagram {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.flow-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.flow-legend {
    display: flex;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.frontend { background: var(--blue); }
.legend-dot.cms { background: var(--red); }
.legend-dot.database { background: #10b981; }
.legend-dot.services { background: #8b5cf6; }

/* Flow Container */
.flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Flow Nodes */
.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.flow-user {
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 50px;
}

.node-icon {
    font-size: 2rem;
}

.node-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Flow Arrows */
.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.3);
    margin: 1rem 0;
    gap: 0.5rem;
}

.flow-arrow svg {
    width: 24px;
    height: 50px;
}

.arrow-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flow-arrow-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    margin: 1.5rem 0;
}

.flow-arrow-vertical svg {
    width: 24px;
    height: 40px;
}

.arrow-label-v {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
}

.flow-arrow-horizontal-split {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.split-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}

/* Flow Layers */
.flow-layer {
    width: 100%;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.flow-layer:hover {
    transform: translateY(-2px);
}

.flow-frontend {
    background: linear-gradient(135deg, rgba(0,163,224,0.1) 0%, rgba(0,163,224,0.05) 100%);
    border: 1px solid rgba(0,163,224,0.3);
}

.flow-cms {
    background: linear-gradient(135deg, rgba(234,20,44,0.15) 0%, rgba(234,20,44,0.05) 100%);
    border: 1px solid rgba(234,20,44,0.4);
}

.flow-database {
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(16,185,129,0.05) 100%);
    border: 1px solid rgba(16,185,129,0.3);
}

.flow-services {
    background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(139,92,246,0.05) 100%);
    border: 1px solid rgba(139,92,246,0.3);
}

.layer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.layer-icon {
    font-size: 1.5rem;
}

.layer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.layer-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(255,255,255,0.2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.flow-frontend .layer-description {
    border-left-color: var(--blue);
}

.flow-cms .layer-description {
    border-left-color: var(--red);
}

.flow-database .layer-description {
    border-left-color: #10b981;
}

.layer-badge {
    margin-left: auto;
    padding: 0.35rem 0.75rem;
    background: rgba(234,20,44,0.2);
    border: 1px solid rgba(234,20,44,0.4);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff6b7a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tech Cards Row */
.tech-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* Tech Card Detailed */
.tech-card-detailed {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.tech-card-detailed:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.tech-card-detailed.featured {
    background: linear-gradient(135deg, rgba(234,20,44,0.1) 0%, rgba(0,163,224,0.1) 100%);
    border-color: var(--red);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tech-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    padding: 4px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
}

.tech-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    color: white;
}

.tech-logo-icon.nextjs { background: #000; }
.tech-logo-icon.react { background: #61DAFB; color: #20232a; font-size: 1.4rem; }
.tech-logo-icon.typescript { background: #3178C6; font-size: 0.85rem; }
.tech-logo-icon.tailwind { background: #06B6D4; font-size: 1.2rem; }
.tech-logo-icon.postgresql { background: #336791; font-size: 1.3rem; }
.tech-logo-icon.drizzle { background: #C5F74F; color: #1a1a1a; }
.tech-logo-icon.redis { background: #DC382D; font-size: 1.2rem; }
.tech-logo-icon.search { background: #8B5CF6; font-size: 1.2rem; }
.tech-logo-icon.email { background: #F59E0B; font-size: 1.2rem; }
.tech-logo-icon.storage { background: #10B981; font-size: 1.2rem; }

.tech-logo-placeholder {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

.tech-logo-text {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.tech-name {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.tech-badge-new {
    margin-left: auto;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(135deg, var(--red), var(--blue));
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.tech-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-what,
.tech-why,
.tech-how {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
}

.tech-what strong,
.tech-why strong,
.tech-how strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

.tech-how code {
    display: inline-block;
    background: rgba(0,0,0,0.3);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem;
    color: #4ade80;
}

/* CDC Stack Summary */
.cdc-stack-summary {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(234,20,44,0.05) 0%, rgba(0,163,224,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
}

.cdc-summary-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cdc-summary-icon {
    font-size: 1.5rem;
}

.cdc-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.cdc-summary-badge {
    margin-left: auto;
    padding: 0.35rem 0.75rem;
    background: rgba(234,20,44,0.2);
    border: 1px solid rgba(234,20,44,0.4);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff6b7a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cdc-summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cdc-summary-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cdc-summary-text p {
    margin-bottom: 1rem;
}

.cdc-summary-text p:last-child {
    margin-bottom: 0;
}

.cdc-requirements-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cdc-req-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
}

.cdc-req-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.cdc-req-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.cdc-req-text strong {
    color: white;
    font-weight: 600;
}

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

    .cdc-summary-header {
        flex-wrap: wrap;
    }

    .cdc-summary-badge {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Tech Benefits Grid */
.tech-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.benefit-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

/* Tech Benefits Responsive */
@media (max-width: 1200px) {
    .tech-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .benefit-card {
        padding: 1rem;
    }
    .benefit-icon {
        font-size: 1.5rem;
    }
    .benefit-number {
        font-size: 1.5rem;
    }
    .benefit-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .benefit-content {
        text-align: center;
    }
}

/* Section Color Flow Transitions */
.section {
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.section-technology-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
    z-index: 1;
}

.section-technology-flow::after {
    background: linear-gradient(180deg, transparent 0%, #0f0f23 100%);
}

/* Responsive Tech Flow */
@media (max-width: 1200px) {
    .tech-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .section-technology-flow {
        padding: 4rem 0;
    }

    .tech-flow-diagram {
        padding: 1.5rem;
    }

    .flow-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .flow-legend {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-cards-row {
        grid-template-columns: 1fr;
    }

    .tech-benefits-grid {
        grid-template-columns: 1fr;
    }

    .flow-layer {
        padding: 1.25rem;
    }

    .container-wide {
        padding: 0 1rem;
    }
}

/* ========================================
   SECTION SPACING & FLOW
   ======================================== */

/* Section spacing */
.section {
    margin-top: 0;
}

/* Subtle section backgrounds */
#functional-scope {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(234,20,44,0.02) 50%, var(--bg) 100%);
}

#design {
    background: linear-gradient(180deg,
        var(--bg) 0%,
        white 20%,
        white 80%,
        var(--bg) 100%
    );
}

#pricing {
    background: linear-gradient(180deg,
        var(--bg) 0%,
        rgba(0,163,224,0.03) 50%,
        var(--bg) 100%
    );
}

#about {
    background: linear-gradient(180deg,
        var(--bg) 0%,
        rgba(234,20,44,0.02) 30%,
        rgba(0,163,224,0.02) 70%,
        var(--bg) 100%
    );
}

/* Flow connector placeholder */
.section-flow-connector {
    display: none;
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,163,224,0.5);
}
