/* =========================================
   MAVIELO - Artistic Presentation Styles
   ========================================= */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --cyan: #06b6d4;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --orange: #f97316;
    --yellow: #eab308;
    --red: #ef4444;
    --dark: #0a0a0f;
    --darker: #050508;
    --card: #1a1a24;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
}

html {
    scroll-behavior: smooth;
}

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

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #111827 50%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-svg {
    width: 120px;
    height: 120px;
    animation: loader-rotate 3s linear infinite;
}

.loader-circle {
    fill: none;
    stroke: rgba(34, 197, 94, 0.2);
    stroke-width: 2;
}

.loader-leaf {
    transform-origin: 50px 50px;
    animation: leaf-spin 2s ease-in-out infinite;
}

.loader-leaf.leaf-2 {
    animation-delay: 0.3s;
    transform: rotate(120deg);
    transform-origin: 50px 50px;
}

.loader-leaf.leaf-3 {
    animation-delay: 0.6s;
    transform: rotate(240deg);
    transform-origin: 50px 50px;
}

@keyframes loader-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes leaf-spin {
    0%, 100% { opacity: 0.4; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(120deg) scale(1.1); }
}

.loader-text {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: all 0.3s ease;
}

.nav.scrolled {
    height: 70px;
    background: rgba(5, 5, 8, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-brand span {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link.active {
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.nav-toggle {
    display: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark) 0%, #0f172a 50%, var(--dark) 100%);
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.wave {
    fill: var(--dark);
    opacity: 0.3;
}

.wave-1 {
    animation: wave-move 8s ease-in-out infinite;
}

.wave-2 {
    animation: wave-move 6s ease-in-out infinite reverse;
    opacity: 0.2;
}

@keyframes wave-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.hero-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-art {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.float-circle {
    animation: float-circle 6s ease-in-out infinite;
}

.float-circle.c1 { animation-delay: 0s; }
.float-circle.c2 { animation-delay: 2s; }
.float-circle.c3 { animation-delay: 4s; }

@keyframes float-circle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

.leaf-group {
    animation: leaf-float 5s ease-in-out infinite;
}

.art-leaf {
    animation: leaf-pulse 3s ease-in-out infinite;
}

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

@keyframes leaf-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.connect-line {
    stroke-dashoffset: 1000;
    animation: draw-line 3s ease-in-out infinite;
}

@keyframes draw-line {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 500; }
    100% { stroke-dashoffset: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 0.8s ease;
}

.eyebrow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 900;
    letter-spacing: -5px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.title-line {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letter-appear 0.5s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.15s; }
.title-line:nth-child(3) { animation-delay: 0.2s; }
.title-line:nth-child(4) { animation-delay: 0.25s; }
.title-line:nth-child(5) { animation-delay: 0.3s; }
.title-line:nth-child(6) { animation-delay: 0.35s; }
.title-line:nth-child(7) { animation-delay: 0.4s; }

@keyframes letter-appear {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-subtitle em {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.highlight-text {
    display: inline-block;
    position: relative;
    color: var(--text);
    font-weight: 600;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    opacity: 0.3;
    border-radius: 3px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge svg {
    width: 60px;
    height: 60px;
}

.badge-circle {
    stroke-dasharray: 175;
    stroke-dashoffset: 175;
    animation: circle-draw 1.5s ease forwards;
}

@keyframes circle-draw {
    to { stroke-dashoffset: 0; }
}

.badge span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
    animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.4);
}

.hero-cta svg {
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1.2s both;
}

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

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

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

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

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: linear-gradient(180deg, var(--dark) 0%, #0f172a 50%, var(--dark) 100%);
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    top: 10%;
    left: -10%;
    opacity: 0.15;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    bottom: 10%;
    right: -5%;
    opacity: 0.1;
    animation: orb-float 10s ease-in-out infinite reverse;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-number {
    display: inline-block;
    margin-bottom: 25px;
}

.section-number svg {
    width: 80px;
    height: 80px;
}

.number-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: draw-circle 1s ease forwards;
}

@keyframes draw-circle {
    to { stroke-dashoffset: 0; }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Canvas Section */
.canvas-art {
    position: relative;
}

.canvas-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.connector {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: connector-draw 2s ease forwards;
}

@keyframes connector-draw {
    to { stroke-dashoffset: 0; }
}

.canvas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
}

.canvas-item {
    background: var(--card);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.canvas-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.canvas-item.partners::before { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.canvas-item.activities::before { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.canvas-item.value::before { background: linear-gradient(90deg, var(--primary), var(--cyan)); }
.canvas-item.relationship::before { background: linear-gradient(90deg, var(--pink), var(--red)); }
.canvas-item.segments::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.canvas-item.resources::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.canvas-item.channels::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.canvas-item.costs::before { background: linear-gradient(90deg, var(--red), var(--pink)); }
.canvas-item.revenue::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }

.canvas-item.partners { grid-column: 1; grid-row: 1 / 3; }
.canvas-item.activities { grid-column: 2; grid-row: 1; }
.canvas-item.resources { grid-column: 2; grid-row: 2; }
.canvas-item.value { grid-column: 3; grid-row: 1 / 3; }
.canvas-item.relationship { grid-column: 4; grid-row: 1; }
.canvas-item.channels { grid-column: 4; grid-row: 2; }
.canvas-item.segments { grid-column: 5; grid-row: 1 / 3; }
.canvas-item.costs { grid-column: 1 / 3; grid-row: 3; }
.canvas-item.revenue { grid-column: 3 / 6; grid-row: 3; }

.canvas-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.item-icon {
    margin-bottom: 15px;
}

.item-icon svg {
    width: 60px;
    height: 60px;
}

.canvas-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.canvas-item ul {
    list-style: none;
}

.canvas-item li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.canvas-item li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.value-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
}

.value-card strong {
    display: block;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 5px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-secondary);
}

.segment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.tag.free {
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--primary);
}

.tag.paid {
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--purple);
}

.cost-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cost-cloud span {
    font-size: 12px;
    padding: 8px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    color: var(--text-secondary);
}

.revenue-flow {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.flow-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.flow-item span:last-child {
    font-size: 11px;
    color: var(--text-muted);
}

.flow-arrow {
    flex-shrink: 0;
}

.flow-arrow svg {
    width: 40px;
    height: 20px;
}

/* Journey Section */
/* ==================== SEXY CANVAS ==================== */

/* Promise Card */
.sexy-promise {
    position: relative;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sexy-promise .promise-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.sexy-promise .promise-card {
    position: relative;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.sexy-promise .promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.sexy-promise h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
}

.sexy-promise p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sexy-promise p strong {
    color: white;
    font-weight: 600;
}

/* Canvas Grid */
.sexy-canvas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Headers */
.canvas-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 8px;
}

.canvas-header .header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.canvas-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.canvas-header span {
    font-size: 13px;
    color: var(--text-muted);
}

.user-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.user-header .header-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.company-header {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.company-header .header-icon {
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    color: white;
}

/* Canvas Stage Cards */
.canvas-stage {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.canvas-stage:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
}

.canvas-stage .stage-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.canvas-stage .stage-number {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.canvas-stage .stage-title h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.canvas-stage .stage-subtitle {
    font-size: 11px;
    opacity: 0.6;
}

.canvas-stage .stage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.canvas-stage .stage-list li {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.canvas-stage .stage-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.canvas-stage .stage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Stage Colors - Pain */
.stage-pain .stage-number {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.stage-pain .stage-title h4 {
    color: #f87171;
}

.stage-pain .stage-list li::before {
    background: #ef4444;
}

.stage-pain:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

/* Stage Colors - Desire */
.stage-desire .stage-number {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.stage-desire .stage-title h4 {
    color: #a78bfa;
}

.stage-desire .stage-list li::before {
    background: #8b5cf6;
}

.stage-desire:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

/* Stage Colors - Mechanics */
.stage-mechanics .stage-number {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.stage-mechanics .stage-title h4 {
    color: #4ade80;
}

.stage-mechanics .stage-list li::before {
    background: #22c55e;
}

.stage-mechanics:hover {
    border-color: rgba(34, 197, 94, 0.3);
}

/* Stage Colors - Rewards */
.stage-rewards .stage-number {
    background: rgba(234, 179, 8, 0.2);
    color: #facc15;
}

.stage-rewards .stage-title h4 {
    color: #facc15;
}

.stage-rewards .stage-list li::before {
    background: #eab308;
}

.stage-rewards:hover {
    border-color: rgba(234, 179, 8, 0.3);
}

/* Stage Colors - WOW */
.stage-wow .stage-number {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
}

.stage-wow .stage-title h4 {
    color: #fb923c;
}

.stage-wow .stage-list li::before {
    background: #f97316;
}

.stage-wow:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

/* Flow Indicator */
.canvas-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding: 24px;
    background: rgba(15, 15, 20, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.flow-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.flow-step p {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flow-step[data-color="red"] span { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.flow-step[data-color="purple"] span { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.flow-step[data-color="green"] span { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.flow-step[data-color="yellow"] span { background: rgba(234, 179, 8, 0.2); color: #facc15; }
.flow-step[data-color="orange"] span { background: rgba(249, 115, 22, 0.2); color: #fb923c; }

.flow-arrow {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    position: relative;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .sexy-canvas {
        grid-template-columns: 1fr;
    }

    .canvas-flow {
        flex-wrap: wrap;
        gap: 16px;
    }

    .flow-arrow {
        display: none;
    }

    .sexy-promise .promise-card {
        padding: 24px;
    }

    .sexy-promise p {
        font-size: 15px;
    }
}

/* Promise Center */
.journey-center {
    position: sticky;
    top: 100px;
}

.promise-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promise-ring {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ring-outer {
    stroke-dasharray: 565;
    stroke-dashoffset: 565;
    animation: ring-draw 2s ease forwards, ring-rotate 20s linear infinite;
    transform-origin: center;
}

.ring-inner {
    animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ring-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.promise-content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4);
    position: relative;
    z-index: 1;
}

.promise-icon {
    margin-bottom: 10px;
}

.promise-icon svg {
    width: 40px;
    height: 40px;
}

.promise-content h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.promise-content p {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.promise-content strong {
    color: white;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    pointer-events: none;
    opacity: 0.5;
}

.line-pulse {
    stroke-dasharray: 200;
    animation: line-draw 3s ease-in-out infinite;
}

@keyframes line-draw {
    0%, 100% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
}

/* WOW Moments */
.wow-moments {
    margin-top: 60px;
    text-align: center;
}

.wow-moments h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--yellow);
}

.wow-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wow-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.wow-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 191, 36, 0.3);
}

.wow-card svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.wow-card span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Architecture Section */
.architecture-visual {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

.pyramid-art {
    position: sticky;
    top: 100px;
}

.pyramid-svg {
    width: 100%;
    max-width: 400px;
    margin-bottom: 25px;
}

.pyramid-level {
    transition: all 0.4s ease;
    cursor: pointer;
}

.pyramid-level:hover {
    filter: brightness(1.2);
    transform: translateY(-5px);
}

.pyramid-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.green { background: var(--primary); }
.dot.yellow { background: var(--yellow); }
.dot.red { background: var(--red); }

.desire-pillars h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pillars-visual {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
    padding: 20px;
    background: var(--card);
    border-radius: 16px;
}

.pillar {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pillar-bar {
    width: 100%;
    height: var(--height);
    background: var(--color);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    animation: pillar-grow 1s ease forwards;
    transform-origin: bottom;
}

@keyframes pillar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.pillar-bar:hover {
    filter: brightness(1.2);
}

.pillar-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Loops */
.loops-visual {
    margin-top: 60px;
}

.loops-visual h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.loops-svg {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.loop-group circle {
    animation: loop-dash 3s linear infinite;
    transform-origin: center;
}

@keyframes loop-dash {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.principle-art {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-mark {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.principle-art p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.principle-art strong {
    color: var(--primary);
}

/* Vision Section */
.product-layers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.layer {
    text-align: center;
}

.layer-visual {
    margin-bottom: 20px;
}

.layer-visual svg {
    width: 150px;
    height: 150px;
}

.layer-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color);
}

.layer-connector {
    flex-shrink: 0;
}

.layer-connector svg {
    width: 100px;
    height: 50px;
}

/* Modules */
.modules-art h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.modules-wheel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wheel-svg {
    width: 100%;
    max-width: 500px;
}

.module-node {
    transition: all 0.3s ease;
    cursor: pointer;
}

.module-node:hover {
    transform: scale(1.1);
}

.modules-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mod-tag {
    font-size: 12px;
    padding: 8px 16px;
    background: var(--bg);
    border-radius: 20px;
    color: white;
}

/* Plan Section */
.plan-visual {
    max-width: 1000px;
    margin: 0 auto;
}

.plan-intro-art {
    margin-bottom: 50px;
    text-align: center;
}

.intro-svg {
    width: 100%;
    max-width: 600px;
}

.plan-features-art {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(34, 197, 94, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(34, 197, 94, 0.3);
}

.card-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-visual {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-cards-art {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.pricing-illustration {
    width: 100%;
    height: 150px;
    display: block;
}

.pricing-card.setup {
    background: linear-gradient(135deg, var(--card), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.2);
}

.pricing-card.monthly {
    background: linear-gradient(135deg, var(--card), rgba(34, 197, 94, 0.1));
    border-color: rgba(34, 197, 94, 0.2);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 5px;
}

.pricing-type {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-card ul {
    list-style: none;
    padding: 0 25px 20px;
}

.pricing-card li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.pricing-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pricing-card.setup li::before { background: var(--purple); }
.pricing-card.monthly li::before { background: var(--primary); }

.pricing-benefit {
    margin: 0 25px 25px;
    padding: 15px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.pricing-benefit.highlight {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--primary);
}

/* Difference */
.difference-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.diff-side {
    padding: 30px;
    border-radius: 20px;
    border: 2px solid;
}

.diff-side.negative {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
}

.diff-side.positive {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.diff-side svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.diff-side h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.diff-side.negative h4 { color: var(--red); }
.diff-side.positive h4 { color: var(--primary); }

.diff-side ul {
    list-style: none;
}

.diff-side.negative li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.diff-side.negative li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.diff-side.positive p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.diff-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 12px;
}

.diff-badge svg {
    width: 30px;
    height: 30px;
    margin: 0;
}

.diff-badge strong {
    color: var(--primary);
    font-size: 14px;
}

/* Closing */
.closing-art {
    position: relative;
    padding: 50px;
    text-align: center;
}

.closing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.closing-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.closing-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.closing-text strong {
    color: var(--primary);
}

.closing-text em {
    color: var(--cyan);
    font-style: normal;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 60px 0 40px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-date {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Back to Top */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4);
    z-index: 900;
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.5);
}

.back-top svg {
    width: 24px;
    height: 24px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1200px) {
    .canvas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .canvas-item.partners,
    .canvas-item.activities,
    .canvas-item.resources,
    .canvas-item.value,
    .canvas-item.relationship,
    .canvas-item.channels,
    .canvas-item.segments,
    .canvas-item.costs,
    .canvas-item.revenue {
        grid-column: auto;
        grid-row: auto;
    }

    .journey-visual {
        grid-template-columns: 1fr;
    }

    .journey-center {
        order: -1;
        position: relative;
        top: 0;
    }

    .architecture-visual {
        grid-template-columns: 1fr;
    }

    .pyramid-art {
        position: relative;
        top: 0;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 100px;
    }

    .section-title {
        font-size: 42px;
    }

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

    .product-layers {
        flex-direction: column;
    }

    .layer-connector {
        transform: rotate(90deg);
    }

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

    .pricing-cards-art,
    .difference-visual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 30px;
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 70px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 20px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .canvas-grid,
    .plan-features-art {
        grid-template-columns: 1fr;
    }

    .pillars-visual {
        flex-wrap: wrap;
    }

    .pillar {
        flex: 0 0 calc(33% - 10px);
    }

    .wow-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 50px;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .promise-content {
        width: 150px;
        height: 150px;
    }

    .promise-ring {
        width: 170px;
        height: 170px;
    }

    .pillar {
        flex: 0 0 calc(50% - 8px);
    }
}

/* ==================== MODULE CARDS ==================== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.module-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    pointer-events: none;
}

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

.module-card .card-content {
    position: relative;
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    transition: all 0.4s ease;
}

.module-card:hover .card-content {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.module-card .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
}

.module-card.featured .card-badge {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.module-card .card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.module-card .card-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.module-card .card-icon span {
    position: absolute;
    font-size: 20px;
    font-weight: 800;
    color: white;
    z-index: 1;
}

.module-card .card-icon svg {
    position: absolute;
    width: 28px;
    height: 28px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    color: white;
}

.module-card:hover .card-icon span {
    opacity: 0;
    transform: scale(0.8);
}

.module-card:hover .card-icon svg {
    opacity: 1;
    transform: scale(1);
}

.module-card .card-title-wrap {
    flex: 1;
    min-width: 0;
}

.module-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    line-height: 1.3;
}

.module-card .card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.module-card:hover .card-tag {
    background: rgba(255, 255, 255, 0.12);
}

.module-card .card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-card .card-list li {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    transition: all 0.3s ease;
}

.module-card .card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.module-card:hover .card-list li {
    color: rgba(255, 255, 255, 0.8);
}

.module-card .card-list .list-code {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.module-card .card-list li em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Card Colors */
.module-card[data-color="blue"] .card-glow { box-shadow: 0 0 60px rgba(59, 130, 246, 0.3); }
.module-card[data-color="blue"] .card-icon { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.module-card[data-color="blue"] .list-code { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.module-card[data-color="blue"]:hover .card-content { border-color: rgba(59, 130, 246, 0.3); }

.module-card[data-color="green"] .card-glow { box-shadow: 0 0 60px rgba(34, 197, 94, 0.3); }
.module-card[data-color="green"] .card-icon { background: linear-gradient(135deg, #22c55e, #4ade80); }
.module-card[data-color="green"] .list-code { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.module-card[data-color="green"]:hover .card-content { border-color: rgba(34, 197, 94, 0.3); }

.module-card[data-color="purple"] .card-glow { box-shadow: 0 0 60px rgba(139, 92, 246, 0.3); }
.module-card[data-color="purple"] .card-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.module-card[data-color="purple"] .list-code { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.module-card[data-color="purple"]:hover .card-content { border-color: rgba(139, 92, 246, 0.3); }

.module-card[data-color="pink"] .card-glow { box-shadow: 0 0 60px rgba(236, 72, 153, 0.3); }
.module-card[data-color="pink"] .card-icon { background: linear-gradient(135deg, #ec4899, #f472b6); }
.module-card[data-color="pink"] .list-code { background: rgba(236, 72, 153, 0.2); color: #f472b6; }
.module-card[data-color="pink"]:hover .card-content { border-color: rgba(236, 72, 153, 0.3); }

.module-card[data-color="cyan"] .card-glow { box-shadow: 0 0 60px rgba(6, 182, 212, 0.3); }
.module-card[data-color="cyan"] .card-icon { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.module-card[data-color="cyan"] .list-code { background: rgba(6, 182, 212, 0.2); color: #22d3ee; }
.module-card[data-color="cyan"]:hover .card-content { border-color: rgba(6, 182, 212, 0.3); }

.module-card[data-color="orange"] .card-glow { box-shadow: 0 0 60px rgba(249, 115, 22, 0.3); }
.module-card[data-color="orange"] .card-icon { background: linear-gradient(135deg, #f97316, #fb923c); }
.module-card[data-color="orange"] .list-code { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.module-card[data-color="orange"]:hover .card-content { border-color: rgba(249, 115, 22, 0.3); }

.module-card[data-color="yellow"] .card-glow { box-shadow: 0 0 60px rgba(234, 179, 8, 0.3); }
.module-card[data-color="yellow"] .card-icon { background: linear-gradient(135deg, #eab308, #facc15); }
.module-card[data-color="yellow"] .list-code { background: rgba(234, 179, 8, 0.2); color: #facc15; }
.module-card[data-color="yellow"]:hover .card-content { border-color: rgba(234, 179, 8, 0.3); }

.module-card[data-color="red"] .card-glow { box-shadow: 0 0 60px rgba(239, 68, 68, 0.3); }
.module-card[data-color="red"] .card-icon { background: linear-gradient(135deg, #ef4444, #f87171); }
.module-card[data-color="red"] .list-code { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.module-card[data-color="red"]:hover .card-content { border-color: rgba(239, 68, 68, 0.3); }

.module-card[data-color="gray"] .card-glow { box-shadow: 0 0 60px rgba(107, 114, 128, 0.3); }
.module-card[data-color="gray"] .card-icon { background: linear-gradient(135deg, #6b7280, #9ca3af); }
.module-card[data-color="gray"] .list-code { background: rgba(107, 114, 128, 0.2); color: #9ca3af; }
.module-card[data-color="gray"]:hover .card-content { border-color: rgba(107, 114, 128, 0.3); }

/* Featured Card */
.module-card.featured .card-content {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(15, 15, 20, 0.9));
}

.module-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #22c55e);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .module-card .card-content {
        padding: 20px;
    }

    .module-card .card-icon {
        width: 48px;
        height: 48px;
    }

    .module-card .card-title {
        font-size: 15px;
    }
}

/* Frontend Button */
.btn-frontend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-frontend:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.4);
}

.btn-frontend:active {
    transform: translateY(0) scale(0.98);
}

/* Frontend Modal */
.frontend-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.frontend-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(6, 182, 212, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    height: calc(100% - 70px);
    background: white;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Print */
@media print {
    .nav,
    .loader,
    .back-top,
    .cursor,
    .cursor-follower,
    #particleCanvas {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}

/* ==================== NEW SEXY CANVAS STYLES ==================== */

.sexy-canvas-section {
    --neon-blue: #00f2ff;
    --neon-green: #00ff88;
    --neon-purple: #bc13fe;
    --gold: #ffd700;
    background: linear-gradient(180deg, #050505 0%, #0a0f14 50%, #050505 100%);
}

.sexy-canvas-section .section-bg {
    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 242, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(46, 255, 125, 0.08) 0%, transparent 50%);
}

.sexy-title {
    background: linear-gradient(90deg, #fff, var(--neon-green), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.sexy-subtitle {
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Sexy Canvas Container - 3 Column Layout */
.sexy-canvas-container {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* Linha conectora de fundo */
.sexy-canvas-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 0;
}

/* Colunas */
.sexy-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Headers das Colunas */
.sexy-column-header {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.sexy-column-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.7;
}

.sexy-column-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.sexy-column-header h2 span {
    display: block;
    font-size: 0.7em;
    opacity: 0.7;
    margin-top: 5px;
    font-weight: 400;
}

/* Estilo Azul (Usuario) */
.style-blue .sexy-column-header {
    color: var(--neon-blue);
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05) 0%, rgba(0,0,0,0.4) 100%);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.05) inset;
}

.style-blue .sexy-section-box {
    border-left: 2px solid rgba(0, 242, 255, 0.3);
}

.style-blue .sexy-icon-wrapper i {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.6));
}

/* Estilo Verde (Empresa) */
.style-green .sexy-column-header {
    color: var(--neon-green);
    background: linear-gradient(180deg, rgba(46, 255, 125, 0.05) 0%, rgba(0,0,0,0.4) 100%);
    box-shadow: 0 0 30px rgba(46, 255, 125, 0.05) inset;
}

.style-green .sexy-section-box {
    border-right: 2px solid rgba(46, 255, 125, 0.3);
}

.style-green .sexy-icon-wrapper i {
    color: var(--neon-green);
    filter: drop-shadow(0 0 5px rgba(46, 255, 125, 0.6));
}

/* Caixas de Secao */
.sexy-section-box {
    background: rgba(20, 20, 35, 0.4);
    padding: 20px 15px;
    border-radius: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.sexy-section-box:hover {
    transform: translateY(-2px);
    background: rgba(30, 30, 50, 0.5);
}

.sexy-section-box.gold-accent {
    border-top-color: rgba(255, 215, 0, 0.2);
}

.sexy-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.sexy-section-title.gold {
    color: var(--gold);
}

/* Grid de Icones */
.sexy-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.sexy-items-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sexy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sexy-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.sexy-item:hover .sexy-icon-wrapper {
    background: rgba(255,255,255,0.08);
    transform: scale(1.1);
}

.sexy-icon-wrapper i {
    font-size: 1.2rem;
}

.sexy-icon-wrapper.gold i {
    color: var(--gold) !important;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)) !important;
}

.sexy-item p {
    font-size: 0.65rem;
    line-height: 1.3;
    color: #a0a0b0;
    font-weight: 500;
    margin: 0;
}

/* Coluna do Meio (A Ponte) */
.sexy-middle-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    min-height: 400px;
}

/* Efeito de laser central */
.sexy-laser-beam {
    position: absolute;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--neon-green), white, var(--neon-green), transparent);
    box-shadow: 0 0 25px var(--neon-green);
    z-index: 0;
    opacity: 0.8;
    animation: laser-pulse 3s ease-in-out infinite;
}

@keyframes laser-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.sexy-promise-box {
    position: relative;
    z-index: 1;
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    max-width: 100%;
}

/* Borda brilhante animada na caixa central */
.sexy-promise-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--neon-green), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    animation: border-glow 4s linear infinite;
}

@keyframes border-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sexy-promise-box h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: white;
    font-weight: 800;
    letter-spacing: 2px;
}

.sexy-promise-box h3 {
    font-size: 0.9rem;
    color: var(--neon-green);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sexy-promise-box p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.sexy-promise-box p strong {
    color: white;
}

/* Responsividade do Sexy Canvas */
@media (max-width: 1100px) {
    .sexy-canvas-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sexy-middle-column {
        order: -1;
        padding: 20px 0;
        min-height: auto;
    }

    .sexy-laser-beam {
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        right: 0;
        bottom: auto;
        background: linear-gradient(to right, transparent, var(--neon-green), white, var(--neon-green), transparent);
    }

    .sexy-section-box {
        border: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px) {
    .sexy-items-grid,
    .sexy-items-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sexy-promise-box {
        padding: 20px 15px;
    }

    .sexy-promise-box h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .sexy-column-header h2 {
        font-size: 1rem;
    }

    .sexy-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .sexy-icon-wrapper i {
        font-size: 1rem;
    }

    .sexy-item p {
        font-size: 0.6rem;
    }
}

/* =========================================
   Section Images - Subtle Glow
   ========================================= */

.section-image {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    /* Glow suave sem cortar */
    box-shadow:
        0 0 50px rgba(34, 197, 94, 0.1),
        0 0 100px rgba(6, 182, 212, 0.06),
        0 20px 40px -15px rgba(0, 0, 0, 0.35);
    /* Borda sutil brilhante */
    border: 1px solid rgba(34, 197, 94, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image img:hover {
    transform: scale(1.005);
    box-shadow:
        0 0 70px rgba(34, 197, 94, 0.15),
        0 0 120px rgba(6, 182, 212, 0.1),
        0 25px 50px -15px rgba(0, 0, 0, 0.45);
}

/* Responsivo */
@media (max-width: 768px) {
    .section-image img {
        border-radius: 12px;
    }
}
