/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores de fundo */
    --color-bg-primary: #0a0e17;
    --color-bg-secondary: #111827;
    --color-bg-tertiary: #ffffff;
    --color-bg-card: #1a2332;
    --color-bg-input: #0d1421;
    
    /* Cores de destaque (accent) */
    --color-accent-primary: #4A35F5;
    --color-accent-secondary: #7c3aed;
    --color-accent-gradient: linear-gradient(135deg, #6A5AF9 0%, #4A35F5 100%);
    
    /* Cores de texto */
    --color-text-primary: #ffffff;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    /* Cores de estado */
    --color-border: #2d3748;
    --color-error: #f43f5e;
    --color-success: #10b981;
    
    /* Efeitos e sombras */
    --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    
    /* Gradiente de texto */
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-bg-primary);
}

.app-container {
    min-height: 100vh;
    background: var(--color-bg-primary);
    position: relative;
}

.app-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: radial-gradient(circle at top, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.app-container::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: radial-gradient(circle at bottom, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

/* Header */
.header {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: contain;
    display: block;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-accent-primary);
    margin-bottom: 0.5rem;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-accent-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--color-accent-gradient);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--shadow-glow);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), 0 10px 25px rgba(74, 53, 245, 0.3);
    background: linear-gradient(135deg, #7A5FF9 0%, #5A3FF5 100%);
    color: #ffffff !important;
    border-color: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.btn-hero {
    background: var(--color-accent-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow), 0 10px 25px rgba(74, 53, 245, 0.3);
    animation: fadeInUp 0.8s ease-out 1s both, buttonGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-hero svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-hero::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-hero:hover::before {
    left: 100%;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: var(--shadow-glow), 0 10px 25px rgba(74, 53, 245, 0.3);
    }
    50% {
        box-shadow: var(--shadow-glow), 0 10px 35px rgba(74, 53, 245, 0.5);
    }
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(74, 53, 245, 0.4);
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    background: rgba(74, 53, 245, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-text-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.btn-hero-secondary span {
    position: relative;
    z-index: 1;
}

.btn-hero-secondary svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(74, 53, 245, 0.1);
    transition: left 0.5s ease;
}

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

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    box-shadow: 0 10px 25px rgba(74, 53, 245, 0.2);
}

.btn-hero-secondary:hover svg {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(148,163,184,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

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

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(74, 53, 245, 0.5);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 22s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 19s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-logo {
    margin: 0 auto 3rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

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

.hero-logo .logo-icon {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 20px rgba(74, 53, 245, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.hero-logo .logo-text {
    font-size: 1.75rem;
}

.hero-logo .logo-subtitle {
    font-size: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-accent-gradient);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1.2s both;
}

/* Crypto Tokens Slider */
.crypto-tokens-slider {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0 2.5rem;
    position: relative;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.crypto-tokens-track {
    display: flex;
    gap: 2rem;
    animation: scrollTokens 30s linear infinite;
    width: fit-content;
}

@keyframes scrollTokens {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.crypto-token {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    min-width: 140px;
    justify-content: center;
}

.crypto-token:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent-primary);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.token-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.token-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.token-icon img[src=""],
.token-icon img:not([src]) {
    opacity: 0;
}

.token-icon:has(img[src=""])::after,
.token-icon:has(img:not([src]))::after {
    content: '●';
    position: absolute;
    font-size: 1.2rem;
    color: var(--color-accent-primary);
}

.token-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-subdescription {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    color: var(--color-text-muted);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Divider */
.divider {
    height: 1px;
    margin: 4rem 0;
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(10, 14, 23, 0) 0%,
        rgba(26, 35, 50, 0.3) 20%,
        rgba(45, 55, 72, 0.4) 50%,
        rgba(26, 35, 50, 0.3) 80%,
        rgba(10, 14, 23, 0) 100%
    );
    border: none;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 30%, #ffffff 60%, #94a3b8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: subtleShimmer 4s ease-in-out infinite;
}

@keyframes subtleShimmer {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.15) 0%, rgba(74, 53, 245, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, rgba(0, 212, 170, 0.04) 50%, transparent 100%);
    border-radius: 50%;
    animation: floatBackground 15s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

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

.about .container {
    position: relative;
    z-index: 1;
}

.about-description-primary {
    font-size: 1.3rem;
    color: var(--color-accent-primary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
}

.about-description-primary p {
    margin-bottom: 1rem;
}

.about-description-primary strong {
    color: var(--color-accent-primary);
}

.about-description-primary .highlight-medium {
    font-weight: 500;
}

.about-description-primary .highlight-bold {
    font-weight: 700;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    text-align: left;
    display: inline-block;
}

.about-features-list li {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    line-height: 2;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-features-list li::before {
    content: '';
    position: absolute;
    left: 0.4375rem;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.875rem;
    border: solid var(--color-accent-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.about-features-list li:hover::before {
    transform: rotate(45deg) scale(1.2);
    border-color: var(--color-accent-secondary);
}

.about-features-list li strong {
    color: var(--color-accent-primary);
    font-weight: 600;
}

.about-description-secondary {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-description-secondary strong {
    color: var(--color-text-secondary);
    font-weight: 600;
}

.typewriter-text {
    display: inline-block;
    position: relative;
    color: var(--color-accent-primary);
    font-weight: 700;
}

.typewriter-content {
    display: inline-block;
    white-space: nowrap;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.about-feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-primary);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--color-accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow), 0 10px 30px rgba(74, 53, 245, 0.4);
}

.about-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.about-feature-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 22s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    position: relative;
}

.step-card {
    background: var(--color-bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.steps-grid.animate .step-card {
    animation: autoHover 8s ease-in-out infinite;
}

.steps-grid.animate .step-card:nth-child(1) {
    animation-delay: 0s;
}

.steps-grid.animate .step-card:nth-child(2) {
    animation-delay: 2s;
}

.steps-grid.animate .step-card:nth-child(3) {
    animation-delay: 4s;
}

.steps-grid.animate .step-card:nth-child(4) {
    animation-delay: 6s;
}

@keyframes autoHover {
    0%, 20%, 100% {
        transform: translateY(0);
        box-shadow: var(--shadow-card);
        border-color: var(--color-border);
    }
    10% {
        transform: translateY(-8px);
        box-shadow: var(--shadow-card), var(--shadow-glow);
        border-color: var(--color-accent-primary);
    }
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.steps-grid.animate .step-card::before {
    animation: autoHoverLine 8s ease-in-out infinite;
}

.steps-grid.animate .step-card:nth-child(1)::before {
    animation-delay: 0s;
}

.steps-grid.animate .step-card:nth-child(2)::before {
    animation-delay: 2s;
}

.steps-grid.animate .step-card:nth-child(3)::before {
    animation-delay: 4s;
}

.steps-grid.animate .step-card:nth-child(4)::before {
    animation-delay: 6s;
}

@keyframes autoHoverLine {
    0%, 20%, 100% {
        transform: scaleX(0);
    }
    10% {
        transform: scaleX(1);
    }
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    border-color: var(--color-accent-primary);
    animation: none;
}

.step-icon-wrapper {
    position: relative;
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 53, 245, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.3s ease;
}

.steps-grid.animate .step-number {
    animation: autoHoverNumber 8s ease-in-out infinite;
}

.steps-grid.animate .step-card:nth-child(1) .step-number {
    animation-delay: 0s;
}

.steps-grid.animate .step-card:nth-child(2) .step-number {
    animation-delay: 2s;
}

.steps-grid.animate .step-card:nth-child(3) .step-number {
    animation-delay: 4s;
}

.steps-grid.animate .step-card:nth-child(4) .step-number {
    animation-delay: 6s;
}

@keyframes autoHoverNumber {
    0%, 20%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: var(--shadow-glow);
    }
    10% {
        transform: translateX(-50%) scale(1.1);
        box-shadow: var(--shadow-glow), 0 0 30px rgba(74, 53, 245, 0.4);
    }
}

.steps-grid.animate .step-icon {
    animation: autoHoverIcon 8s ease-in-out infinite;
}

.steps-grid.animate .step-card:nth-child(1) .step-icon {
    animation-delay: 0s;
}

.steps-grid.animate .step-card:nth-child(2) .step-icon {
    animation-delay: 2s;
}

.steps-grid.animate .step-card:nth-child(3) .step-icon {
    animation-delay: 4s;
}

.steps-grid.animate .step-card:nth-child(4) .step-icon {
    animation-delay: 6s;
}

@keyframes autoHoverIcon {
    0%, 20%, 100% {
        transform: translateX(-50%) scale(1);
        background: rgba(74, 53, 245, 0.1);
    }
    10% {
        transform: translateX(-50%) scale(1.1);
        background: rgba(74, 53, 245, 0.2);
    }
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: var(--shadow-glow), 0 0 30px rgba(74, 53, 245, 0.4);
    animation: none;
}

.step-card:hover .step-icon {
    transform: translateX(-50%) scale(1.1);
    background: rgba(74, 53, 245, 0.2);
    animation: none;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.step-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.steps-footer {
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-accent-primary);
    font-weight: 600;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-bg-card);
    border-radius: 16px;
    border: 1px solid var(--color-accent-primary);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.steps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 53, 245, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Features Section */
.features {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}


.features::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.features::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-intro .highlight-purple {
    color: var(--color-accent-primary);
    font-weight: 600;
}

.features-carousel {
    width: 100%;
    overflow: hidden;
    margin: 4rem 0;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.features-carousel-track {
    display: flex;
    gap: 2rem;
    animation: scrollFeatures 40s linear infinite;
    width: fit-content;
}

@keyframes scrollFeatures {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    flex-shrink: 0;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent-gradient);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    border-color: var(--color-accent-primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow), 0 0 25px rgba(74, 53, 245, 0.4);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.features-footer {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-accent-primary);
    margin-top: 3rem;
    font-weight: 500;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

/* Security Section */
.security {
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.95) 0%, var(--color-bg-primary) 50%, rgba(10, 14, 23, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.security::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.security::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.security .container {
    position: relative;
    z-index: 1;
}


.security-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 4rem;
}

.security-intro strong {
    color: var(--color-accent-primary);
    font-weight: 600;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.security-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-bg-card);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.security-grid.animate .security-item {
    animation: autoHoverSecurity 8s ease-in-out infinite;
}

.security-grid.animate .security-item:nth-child(1) {
    animation-delay: 0s;
}

.security-grid.animate .security-item:nth-child(2) {
    animation-delay: 2s;
}

.security-grid.animate .security-item:nth-child(3) {
    animation-delay: 4s;
}

.security-grid.animate .security-item:nth-child(4) {
    animation-delay: 6s;
}

@keyframes autoHoverSecurity {
    0%, 20%, 100% {
        transform: translateY(0);
        box-shadow: var(--shadow-card);
        border-color: var(--color-border);
    }
    10% {
        transform: translateY(-8px);
        box-shadow: var(--shadow-card), var(--shadow-glow);
        border-color: var(--color-accent-primary);
    }
}

.security-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.security-grid.animate .security-item::before {
    animation: autoHoverLineSecurity 8s ease-in-out infinite;
}

.security-grid.animate .security-item:nth-child(1)::before {
    animation-delay: 0s;
}

.security-grid.animate .security-item:nth-child(2)::before {
    animation-delay: 2s;
}

.security-grid.animate .security-item:nth-child(3)::before {
    animation-delay: 4s;
}

.security-grid.animate .security-item:nth-child(4)::before {
    animation-delay: 6s;
}

@keyframes autoHoverLineSecurity {
    0%, 20%, 100% {
        transform: scaleX(0);
    }
    10% {
        transform: scaleX(1);
    }
}

.security-item:hover::before {
    transform: scaleX(1);
}

.security-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    border-color: var(--color-accent-primary);
    animation: none;
}

.security-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.security-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent-gradient);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.security-grid.animate .security-icon {
    animation: autoHoverIconSecurity 8s ease-in-out infinite;
}

.security-grid.animate .security-item:nth-child(1) .security-icon {
    animation-delay: 0s;
}

.security-grid.animate .security-item:nth-child(2) .security-icon {
    animation-delay: 2s;
}

.security-grid.animate .security-item:nth-child(3) .security-icon {
    animation-delay: 4s;
}

.security-grid.animate .security-item:nth-child(4) .security-icon {
    animation-delay: 6s;
}

@keyframes autoHoverIconSecurity {
    0%, 20%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-glow);
    }
    10% {
        transform: scale(1.1);
        box-shadow: var(--shadow-glow), 0 0 30px rgba(74, 53, 245, 0.4);
    }
}

.security-item:hover .security-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow), 0 0 30px rgba(74, 53, 245, 0.4);
    animation: none;
    transition: all 0.3s ease;
}

.security-item:hover .security-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow), 0 0 30px rgba(74, 53, 245, 0.4);
}

.security-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.security-item-text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.security-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--color-bg-card);
    border-radius: 16px;
    border: 1px solid var(--color-accent-primary);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-footer-icon {
    font-size: 2rem;
}

.security-footer-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent-primary);
    margin: 0;
}

/* Target Audience Section */
.target-audience {
    background: var(--color-bg-primary);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.audience-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    border-color: var(--color-accent-primary);
}

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

.audience-item p {
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 1rem;
}

/* Partners Section */
.partners {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, rgba(10, 14, 23, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.partners::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.partners::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.partners .container {
    position: relative;
    z-index: 1;
}

.partners-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    margin: 4rem 0;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-carousel-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollPartners 50s linear infinite;
    width: fit-content;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: var(--color-bg-card);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    border-color: var(--color-accent-primary);
}

.partner-logo-wrapper {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(74, 53, 245, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-wrapper {
    background: rgba(74, 53, 245, 0.1);
    transform: scale(1.05);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
    filter: brightness(1.1) contrast(1.05);
}

.partner-card:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

.partner-logo-fallback {
    display: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
    opacity: 0.7;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.partner-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.95) 0%, var(--color-bg-primary) 50%, rgba(10, 14, 23, 0.98) 100%);
    color: var(--color-text-primary);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 53, 245, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.cta .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 50%, var(--color-accent-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    line-height: 1.2;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.cta-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-hero {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    box-shadow: 0 0 60px rgba(74, 53, 245, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 60px rgba(74, 53, 245, 0.4);
    }
    50% {
        box-shadow: 0 0 80px rgba(74, 53, 245, 0.6), 0 0 120px rgba(74, 53, 245, 0.3);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    overflow-y: auto;
}

.modal.active {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(45, 55, 72, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(74, 53, 245, 0.2);
    border-color: var(--color-accent-primary);
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem;
}

.modal-content .privacy-container {
    padding: 0;
}

.modal-content .privacy-header {
    padding-top: 0;
    margin-bottom: 3rem;
}

.modal-content .back-link {
    display: none;
}

.modal-content .privacy-content {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.modal-content iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 20px;
}

/* Prevenir quebra de emails nos modais */
.modal-content a[href^="mailto:"],
.privacy-contact a[href^="mailto:"],
.contact-box a[href^="mailto:"] {
    word-break: keep-all;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .modal-content a[href^="mailto:"],
    .privacy-contact a[href^="mailto:"],
    .contact-box a[href^="mailto:"] {
        white-space: normal;
        word-break: break-all;
        overflow-wrap: anywhere;
        hyphens: auto;
    }
}

@media (max-width: 768px) {
    .modal.active {
        padding: 1rem;
    }

    .modal-container {
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}

/* Footer */
.footer {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        padding: 1rem 16px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--color-bg-card);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-card);
        padding: 2rem 1.5rem;
        gap: 0.75rem;
        border-top: 1px solid var(--color-border);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.875rem 1.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

    .nav-menu a:hover {
        background: rgba(74, 53, 245, 0.1);
        color: var(--color-accent-primary);
    }

    .nav-menu .btn-primary,
    .nav-menu .btn-secondary {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .nav-menu .btn-secondary {
        margin-top: 0.25rem;
    }

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        margin-right: -0.5rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0 4rem;
        display: flex;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .hero-logo {
        margin: 0 auto 1.75rem;
    }

    .hero-logo .logo-icon {
        width: 56px;
        height: 56px;
    }

    .hero-logo .logo-text {
        font-size: 1.35rem;
    }

    .hero-logo .logo-subtitle {
        font-size: 0.85rem;
    }

    .hero-logo::before {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-title::after {
        width: 50px;
    }

    .crypto-tokens-slider {
        margin: 1.25rem 0 1.75rem;
        padding: 0.75rem 0;
    }

    .crypto-tokens-track {
        gap: 1.25rem;
    }

    .crypto-token {
        padding: 0.5rem 0.875rem;
        min-width: 110px;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .token-icon {
        width: 26px;
        height: 26px;
    }

    .token-name {
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .hero-subdescription {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
    }

    .btn-hero,
    .btn-hero-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .about-description-primary {
        font-size: 1.1rem;
    }

    .about-description-primary p {
        font-size: 1rem;
    }

    .about-features-list {
        text-align: center;
    }

    .about-features-list li {
        font-size: 1rem;
        text-align: left;
        display: block;
        margin: 0 auto 0.75rem;
        max-width: 400px;
    }

    .about-description-secondary {
        font-size: 1rem;
    }

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

    .steps-footer {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .features-carousel {
        margin: 3rem 0;
    }

    .feature-item {
        min-width: 280px;
        padding: 1.5rem;
    }

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

    .security-footer {
        flex-direction: column;
        padding: 1.5rem;
    }

    .security-footer-text {
        font-size: 1.1rem;
    }

    .audience-grid,
    .partners-carousel {
        margin: 3rem 0;
    }

    .partner-card {
        min-width: 260px;
        max-width: 300px;
        padding: 1.75rem 1.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 5rem 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.2rem;
    }

    .cta .btn-hero {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .nav {
        padding: 0.875rem 16px;
    }

    .nav-menu {
        padding: 1.75rem 1.25rem;
        gap: 0.625rem;
    }

    .nav-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .nav-menu .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    .hero {
        padding: 2.5rem 0 3.5rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0;
    }

    .hero-logo {
        margin: 0 auto 1.5rem;
    }

    .hero-logo .logo-icon {
        width: 48px;
        height: 48px;
    }

    .hero-logo .logo-text {
        font-size: 1.2rem;
    }

    .hero-logo .logo-subtitle {
        font-size: 0.75rem;
    }

    .hero-logo::before {
        width: 80px;
        height: 80px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        padding: 0;
    }

    .hero-title::after {
        width: 40px;
        height: 2px;
    }

    .crypto-tokens-slider {
        margin: 1rem 0 1.5rem;
        padding: 0.5rem 0;
    }

    .crypto-tokens-track {
        gap: 1rem;
    }

    .crypto-token {
        padding: 0.45rem 0.7rem;
        min-width: 95px;
        gap: 0.4rem;
        border-radius: 8px;
    }

    .token-icon {
        width: 22px;
        height: 22px;
    }

    .token-name {
        font-size: 0.7rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.875rem;
        padding: 0;
    }

    .hero-subdescription {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn-hero,
    .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        gap: 0.5rem;
    }

    .btn-hero svg,
    .btn-hero-secondary svg {
        width: 18px;
        height: 18px;
    }

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

    .steps-footer {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .feature-item {
        min-width: 250px;
        padding: 1.25rem;
    }

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

    .security-footer {
        padding: 1.25rem;
    }

    .security-footer-text {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.hero-content,
.step-card,
.feature-item,
.security-item,
.audience-item,
.partner-card {
    animation: fadeInUp 0.6s ease-out;
}

