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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.nav-logo i {
    font-size: 28px;
    color: #667eea;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.crypto-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.crypto-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.crypto-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.crypto-particle:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 4s;
}

.crypto-particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 1s;
}

.crypto-particle:nth-child(5) {
    top: 70%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.section-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 24px;
    display: inline-block;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: #667eea;
    font-size: 14px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

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

.about-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(102, 126, 234, 0.1);
}

.about-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #667eea;
    font-size: 1.25rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.about-stat:hover .stat-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-stat .stat-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.about-stat .stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.about-img-placeholder i {
    font-size: 6rem;
    color: #667eea;
}

/* Market Insights Card */
.market-insights-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(102, 126, 234, 0.1);
}

.market-insights-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    animation: insightGradient 3s ease-in-out infinite;
}

.market-insights-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 12px 32px rgba(102, 126, 234, 0.2);
}

.insights-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insights-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #667eea;
    font-size: 1.25rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.market-insights-card:hover .insights-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.insights-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.insights-content {
    margin-bottom: 25px;
}

.insight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.insight-item:hover {
    background: rgba(102, 126, 234, 0.05);
    margin: 0 -15px;
    padding: 12px 15px;
    border-radius: 8px;
}

.insight-label {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.insight-label i {
    margin-right: 8px;
    color: #667eea;
    font-size: 0.8rem;
    width: 16px;
}

.insight-value {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-chart {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.chart-header span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.chart-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    height: 100px;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bar-fill {
    width: 100%;
    max-width: 24px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 4px 4px 0 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: barGrow 1.5s ease-out;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.bar-fill::after {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.bar-label {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
}

.insights-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.trust-item i {
    color: #4ade80;
    font-size: 1rem;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
}

/* Animations */
@keyframes insightGradient {
    0%, 100% {
        background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    }
    50% {
        background: linear-gradient(90deg, #764ba2, #667eea, #764ba2);
    }
}

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

@keyframes barGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.contact-icon {
    font-size: 2rem;
    color: #667eea;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

.contact-details h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    color: #667eea;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #667eea;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        backdrop-filter: blur(20px);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .service-card.featured {
        transform: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-img-placeholder {
        width: 300px;
        height: 300px;
    }

    .about-img-placeholder i {
        font-size: 4rem;
    }

    .market-insights-card {
        max-width: 350px;
        padding: 20px;
    }

    .insights-header h3 {
        font-size: 1.3rem;
    }

    .trust-indicators {
        gap: 8px;
    }

    .trust-item {
        padding: 8px;
    }

    .trust-item span {
        font-size: 0.65rem;
    }

    .chart-bars {
        gap: 8px;
        height: 80px;
    }

    .bar-fill {
        max-width: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

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

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding-left: 30px;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #667eea;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* Service Hero Styles */
.service-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.service-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-feature i {
    color: #667eea;
    font-size: 16px;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

/* Service Page Specific Visuals */
.listing-visualization,
.trading-visualization,
.token-creation-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 450px;
    width: 100%;
}

.exchange-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.exchange-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.exchange-logo i {
    font-size: 2rem;
    color: #667eea;
}

.exchange-logo span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.listing-arrow,
.process-arrow {
    text-align: center;
    margin: 20px 0;
}

.listing-arrow i,
.process-arrow i {
    font-size: 2rem;
    color: #667eea;
    animation: bounce 2s infinite;
}

.your-token,
.your-token-result {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 16px;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.your-token i,
.your-token-result i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}

.your-token span,
.your-token-result span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.token-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.token-features .feature {
    background: rgba(102, 126, 234, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

/* Trading Visualization */
.trading-chart {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

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

.token-pair {
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.price-change {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.price-change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.chart-area {
    height: 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 8px;
    margin-bottom: 12px;
}

.price-line {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    animation: pulse 2s infinite;
}

.volume-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: end;
    gap: 5px;
    padding: 10px;
}

.volume-bar {
    flex: 1;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 2px;
    animation: volumeAnimation 3s infinite;
}

.volume-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.volume-bar:nth-child(2) { height: 35px; animation-delay: 0.5s; }
.volume-bar:nth-child(3) { height: 25px; animation-delay: 1s; }
.volume-bar:nth-child(4) { height: 40px; animation-delay: 1.5s; }
.volume-bar:nth-child(5) { height: 30px; animation-delay: 2s; }

.order-book {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
}

.order-book-header {
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    font-size: 14px;
}

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

.order {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.buy-order {
    background: rgba(34, 197, 94, 0.1);
    border-left: 3px solid #22c55e;
}

.sell-order {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
}

.buy-order .price {
    color: #22c55e;
}

.sell-order .price {
    color: #ef4444;
}

.order .amount {
    color: rgba(255, 255, 255, 0.8);
}

/* Token Creation Visual */
.blockchain-network {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.blockchain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blockchain:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.blockchain i {
    font-size: 1.5rem;
    color: #667eea;
}

.blockchain span {
    color: white;
    font-weight: 600;
    font-size: 12px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Roadmap Container */
.roadmap-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.roadmap-path {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.roadmap-svg {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.road-line {
    stroke-dasharray: 10, 5;
    animation: roadDash 20s linear infinite;
}

.road-line-active {
    stroke-dasharray: 20, 10;
    animation: roadFlow 15s linear infinite;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.6));
}

.roadmap-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 600px;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: roadmapStepReveal 0.8s ease-out forwards;
}

.roadmap-step:nth-child(1) { animation-delay: 0.2s; }
.roadmap-step:nth-child(2) { animation-delay: 0.4s; }
.roadmap-step:nth-child(3) { animation-delay: 0.6s; }
.roadmap-step:nth-child(4) { animation-delay: 0.8s; }
.roadmap-step:nth-child(5) { animation-delay: 1.0s; }

.roadmap-step[data-step="1"] { margin-top: 0; }
.roadmap-step[data-step="2"] { margin-top: -80px; }
.roadmap-step[data-step="3"] { margin-top: 0; }
.roadmap-step[data-step="4"] { margin-top: -80px; }
.roadmap-step[data-step="5"] { margin-top: 0; }

.step-marker {
    position: relative;
    margin-bottom: 30px;
    z-index: 3;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-pulse {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    animation: stepPulse 2s ease-in-out infinite;
}

.roadmap-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(102, 126, 234, 0.6),
        0 0 0 6px rgba(255, 255, 255, 0.15);
}

.step-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 30px 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 280px;
    width: 100%;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

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

.roadmap-step:hover .step-content {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(102, 126, 234, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #667eea;
    font-size: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.step-content h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-tag {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.25);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
    transform: scale(1.02);
}

/* Roadmap Animations */
@keyframes roadDash {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -100;
    }
}

@keyframes roadFlow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -150;
    }
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes roadmapStepReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Roadmap Responsiveness */
@media (max-width: 1024px) {
    .roadmap-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        min-height: 800px;
    }
    
    .roadmap-step[data-step="1"] { margin-top: 0; }
    .roadmap-step[data-step="2"] { margin-top: -60px; }
    .roadmap-step[data-step="3"] { margin-top: 0; }
    .roadmap-step[data-step="4"] { margin-top: -60px; grid-column: 1; }
    .roadmap-step[data-step="5"] { margin-top: 0; grid-column: 2; }
    
    .roadmap-svg {
        height: 800px;
    }
    
    .road-line, .road-line-active {
        d: path("M 50 300 Q 150 200 250 300 T 450 300 Q 550 400 650 300 T 850 300");
    }
}

@media (max-width: 768px) {
    .roadmap-container {
        padding: 40px 0;
    }
    
    .roadmap-path {
        display: none;
    }
    
    .roadmap-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .roadmap-step[data-step="1"],
    .roadmap-step[data-step="2"],
    .roadmap-step[data-step="3"],
    .roadmap-step[data-step="4"],
    .roadmap-step[data-step="5"] {
        margin-top: 0;
        grid-column: 1;
    }
    
    .step-content {
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Legacy Process Timeline Styles (fallback) */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.step-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.step-content li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes volumeAnimation {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(10, 10, 10, 0.95);
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 10px 0 0 0;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .service-hero-visual {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .trading-visualization {
        max-width: 100%;
        padding: 20px 15px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-features {
        justify-content: center;
    }

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

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .exchange-logos,
    .blockchain-network {
        grid-template-columns: 1fr;
    }
    
    .chart-area {
        height: 70px;
    }
    
    .order {
        font-size: 11px;
        padding: 5px 8px;
    }

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

/* Enhanced Content Typography & Display */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* Enhanced Text Content Layouts */
.content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(26, 26, 46, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(22, 33, 62, 0.8) 100%);
}

.content-section:nth-child(even) {
    background: linear-gradient(180deg, 
        rgba(22, 33, 62, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 50%, 
        rgba(10, 10, 10, 0.8) 100%);
}

/* Beautiful Card Grid System */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.content-card:hover::before {
    transform: translateX(0);
}

.content-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.25);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(102, 126, 234, 0.15);
}

.content-card h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.content-card li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.content-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Enhanced Typography Classes */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-highlight {
    position: relative;
    display: inline;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0.3;
    border-radius: 2px;
}

.text-large {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    font-weight: 500;
}

.text-small {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Enhanced Feature Lists */
.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.feature-item-enhanced:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

.feature-icon-enhanced {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Section Backgrounds */
.token-types,
.development-process,
.blockchain-support,
.security-features,
.key-benefits,
.how-it-works,
.exchange-partners,
.technology-stack,
.performance-metrics {
    padding: 100px 0;
    position: relative;
}

.token-types {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.development-process {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.blockchain-support {
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.security-features {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.key-benefits {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.how-it-works {
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.exchange-partners {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.technology-stack {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.performance-metrics {
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.pricing-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 100px 0;
}

.contact-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    padding: 100px 0;
}

/* Enhanced Token Types Grid */
.token-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.token-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.token-type-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.token-type-card:hover::after {
    opacity: 1;
}

.token-type-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(102, 126, 234, 0.2);
}

.token-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #667eea;
    font-size: 2rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.token-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.token-type-card > p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.token-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.token-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.token-features li:hover {
    background: rgba(102, 126, 234, 0.1);
    border-left-color: #764ba2;
}

/* Enhanced Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.08) 0%, 
        rgba(118, 75, 162, 0.08) 100%);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 12px 36px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features i {
    color: #667eea;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

/* Enhanced Blockchain Grid */
.blockchain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blockchain-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blockchain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.blockchain-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(102, 126, 234, 0.15);
}

.blockchain-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #667eea;
    font-size: 2rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.blockchain-card:hover .blockchain-logo {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
    border-color: rgba(102, 126, 234, 0.4);
}

.blockchain-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.blockchain-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.blockchain-features .feature {
    background: rgba(102, 126, 234, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Featured Partnership - Cetoex */
.featured-partnership {
    margin: 4rem 0;
    position: relative;
}

.featured-partner-card {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.15) 0%, 
        rgba(118, 75, 162, 0.15) 50%,
        rgba(102, 126, 234, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #ff6b6b 50%, 
        #764ba2 75%, 
        #667eea 100%);
    animation: featuredGradientMove 3s ease-in-out infinite;
}

.featured-partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(102, 126, 234, 0.2);
}

.featured-partner-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.featured-partner-badge i {
    color: #ff6b6b;
}

.featured-partner-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
}

.featured-partner-logo {
    text-align: center;
}

.partner-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #667eea;
    font-size: 3rem;
    border: 3px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.partner-icon-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: iconShine 3s ease-in-out infinite;
}

.featured-partner-logo h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    font-weight: 500;
}

.featured-partner-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

.benefit-item i {
    color: #667eea;
    font-size: 1.125rem;
}

.benefit-item span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.partnership-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.stat-item-mini {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.stat-number-mini {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label-mini {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-partner-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Enhanced Exchange Partners Grid */
.partners-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.partner-tier-enhanced {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-tier-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tier-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-tier-enhanced:hover::before {
    opacity: 1;
}

.partner-tier-enhanced:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 2px solid;
}

.tier-badge.tier-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    --tier-color: #ffd700;
}

.tier-badge.tier-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(169, 169, 169, 0.2));
    color: #c0c0c0;
    border-color: rgba(192, 192, 192, 0.3);
    --tier-color: #c0c0c0;
}

.tier-badge.tier-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(184, 115, 51, 0.2));
    color: #cd7f32;
    border-color: rgba(205, 127, 50, 0.3);
    --tier-color: #cd7f32;
}

.tier-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.tier-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.partner-logos-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-logo-enhanced {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.partner-logo-enhanced:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(8px);
}

.partner-logo-enhanced.more-partners {
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.partner-logo-enhanced.more-partners:hover {
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(102, 126, 234, 0.05);
}

.partner-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.25rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.partner-name {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.partner-detail {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
}

.partner-stats-mini {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Partnership Benefits Section */
.partnership-benefits-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.partnership-benefits-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card-small {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-small:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.benefit-card-small i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.benefit-card-small h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-card-small p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Featured Partnership Animations */
@keyframes featuredGradientMove {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

@keyframes iconShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) translateY(200%) rotate(45deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-partner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .partnership-benefits {
        grid-template-columns: 1fr;
    }
    
    .partnership-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partners-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid-small {
        grid-template-columns: 1fr;
    }
    
    .partner-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .featured-partner-logo h3 {
        font-size: 2rem;
    }
}

/* Enhanced Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.security-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #667eea;
    font-size: 2rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.security-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.security-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Enhanced Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #667eea;
    font-size: 2rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.tech-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Enhanced Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.metric-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #667eea;
    font-size: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Enhanced Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Contact Benefits */
.contact-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-benefits li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-benefits i {
    color: #667eea;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

/* Responsive Text Improvements */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .token-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .feature-list {
        gap: 0.75rem;
    }
    
    .feature-item-enhanced {
        padding: 0.75rem;
    }
    
    .token-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .blockchain-grid,
    .security-grid,
    .tech-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* Enhanced Hero Section Animations */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    color: rgba(102, 126, 234, 0.3);
    animation: floatCoin 8s ease-in-out infinite;
}

.floating-coin:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-coin:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-coin:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.trading-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    animation: tradingLine 6s linear infinite;
}

.trading-line:nth-child(4) {
    top: 20%;
    width: 300px;
    left: -300px;
    animation-delay: 0s;
}

.trading-line:nth-child(5) {
    top: 60%;
    width: 250px;
    right: -250px;
    animation-delay: 2s;
}

.trading-line:nth-child(6) {
    bottom: 30%;
    width: 200px;
    left: -200px;
    animation-delay: 4s;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.2);
    animation: rotateShape 20s linear infinite;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    bottom: 15%;
    right: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 5s;
}

.shape-3 {
    top: 40%;
    left: 5%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation-delay: 10s;
}

.shape-4 {
    bottom: 40%;
    right: 5%;
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 15s;
}

/* Enhanced Statistics */
.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

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

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(102, 126, 234, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #667eea;
    font-size: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    counter-reset: statCounter;
}

.stat-label {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Professional Achievements Section */
.achievements {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

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

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.achievement-card:hover::after {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(102, 126, 234, 0.2);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #667eea;
    font-size: 2.5rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
    border-color: rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
}

.achievement-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievement-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Technology Showcase Section */
.technology-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.tech-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tech-showcase-card:hover::before {
    transform: translateX(0);
}

.tech-showcase-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(102, 126, 234, 0.2);
}

.tech-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #667eea;
    font-size: 3rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.tech-showcase-card:hover .tech-icon-large {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
    border-color: rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
}

.tech-showcase-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.tech-showcase-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tech-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.tech-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(102, 126, 234, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-mark {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.author-info h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.author-rating {
    display: flex;
    gap: 0.25rem;
}

.author-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Advanced Animations */
@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.7;
    }
}

@keyframes tradingLine {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 300px));
        opacity: 0;
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

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

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

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

/* Roadmap Interactive States */
.roadmap-step.step-active .step-number {
    transform: scale(1.15);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.8),
        0 0 0 8px rgba(255, 255, 255, 0.2);
}

.roadmap-step.step-focused {
    transform: scale(1.05);
    z-index: 10;
}

.roadmap-step.step-focused .step-content {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(102, 126, 234, 0.3);
}

.roadmap-step.step-revealed .step-icon {
    animation: stepIconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.roadmap-step.step-in-view {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-step.step-completed .step-number {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 
        0 8px 25px rgba(40, 167, 69, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.1);
}

.roadmap-step.step-completed .step-number::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
}

.roadmap-step.step-completed .step-number {
    font-size: 0; /* Hide the number when showing checkmark */
}

/* Roadmap Accessibility Enhancements */
.roadmap-step:focus-within {
    outline: 3px solid rgba(102, 126, 234, 0.6);
    outline-offset: 4px;
    border-radius: 24px;
}

.roadmap-step[tabindex]:focus {
    outline: 3px solid rgba(102, 126, 234, 0.6);
    outline-offset: 4px;
}

/* Progressive Enhancement for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .roadmap-step,
    .step-number,
    .step-icon,
    .feature-tag {
        animation: none !important;
        transition: none !important;
    }
    
    .road-line,
    .road-line-active {
        animation: none !important;
    }
    
    .step-pulse {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .roadmap-step .step-content {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .step-number {
        border: 3px solid white;
    }
    
    .feature-tag {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.5);
    }
}

/* Additional Roadmap Animations */
@keyframes stepIconBounce {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(-90deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes roadmapGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.9));
    }
}

/* Roadmap Print Styles */
@media print {
    .roadmap-path {
        display: none;
    }
    
    .roadmap-steps {
        display: block;
    }
    
    .roadmap-step {
        display: block;
        margin-bottom: 2rem;
        page-break-inside: avoid;
    }
    
    .step-marker {
        float: left;
        margin-right: 1rem;
    }
    
    .step-content {
        background: white;
        border: 2px solid #333;
        color: #333;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .achievements-grid,
    .tech-showcase-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-coin,
    .trading-line,
    .geometric-shapes {
        display: none;
    }
    
    .tech-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Mobile roadmap interactions */
    .roadmap-step.step-active {
        transform: none;
    }
    
    .roadmap-step.step-focused {
        transform: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Telegram Contact Styles */
.instant-contact-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    margin-bottom: 25px;
}

.telegram-contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.telegram-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.4);
    color: white;
}

.telegram-contact-btn::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;
}

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

.telegram-contact-btn i {
    font-size: 24px;
    color: white;
}

.telegram-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.telegram-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.telegram-handle {
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

.instant-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Telegram link in contact details */
.telegram-link {
    color: #0088cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    color: #229ED9;
    text-decoration: underline;
}

/* Contact item with telegram styling */
.contact-item.telegram-contact {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(34, 158, 217, 0.1));
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item.telegram-contact:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(34, 158, 217, 0.15));
    border-color: rgba(0, 136, 204, 0.3);
    transform: translateY(-2px);
}

.contact-item.telegram-contact .contact-icon {
    background: linear-gradient(135deg, #0088cc, #229ED9);
}

.contact-item.telegram-contact .contact-icon i {
    color: white;
}

/* Instant badge in contact sections for index page */
.contact-item .instant-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Mobile responsiveness for telegram contact */
@media (max-width: 768px) {
    .telegram-contact-btn {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 15px;
    }
    
    .telegram-info {
        align-items: center;
    }
    
    .instant-badge {
        align-self: center;
    }
    
    .instant-contact-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .telegram-contact-btn .telegram-handle {
        font-size: 16px;
    }
}

/* Legal Pages Styles - Modern Design */

/* Legal Hero Section */
.legal-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.legal-hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, #667eea 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #764ba2 0%, transparent 50%);
    background-size: 100px 100px;
    animation: float 6s ease-in-out infinite;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: #667eea;
}

.breadcrumb-separator {
    color: #64748b;
    font-size: 12px;
}

.breadcrumb-current {
    color: #e2e8f0;
    font-weight: 500;
}

.legal-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.legal-meta-item i {
    color: #667eea;
}

/* Legal Main Layout */
.legal-main {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    min-height: 80vh;
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.toc-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.toc-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-title i {
    color: #667eea;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    color: #94a3b8;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-left-color: #667eea;
    transform: translateX(5px);
}

/* Legal Content */
.legal-content-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-section-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.section-icon i {
    font-size: 24px;
    color: white;
}

.section-title-group {
    flex: 1;
}

.section-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 400;
}

.section-content {
    color: #cbd5e1;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 20px;
}

/* Subsections */
.subsection {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.subsection-title {
    color: #e2e8f0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subsection-title i {
    color: #667eea;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-list li i {
    color: #10b981;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-list li i.fa-times {
    color: #ef4444;
}

/* Info Boxes */
.highlight-box, .info-box, .warning-box {
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid;
}

.highlight-box {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-box {
    background: rgba(6, 182, 212, 0.1);
    border-left-color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

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

.highlight-box i {
    color: #3b82f6;
    font-size: 20px;
    margin-top: 2px;
}

.info-box i {
    color: #06b6d4;
    font-size: 20px;
    margin-top: 2px;
}

.warning-box i {
    color: #ef4444;
    font-size: 20px;
    margin-top: 2px;
}

/* Grids */
.purposes-grid, .security-grid, .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.purpose-card, .security-item, .right-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.purpose-card:hover, .security-item:hover, .right-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.purpose-card i, .security-item i, .right-item i {
    font-size: 30px;
    color: #667eea;
    margin-bottom: 15px;
}

.purpose-card h4, .security-item h4, .right-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.purpose-card p, .security-item p, .right-item p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.service-card i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 20px;
}

.service-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #94a3b8;
    margin: 0;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.requirement-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.requirement-item i {
    font-size: 30px;
    color: #10b981;
    margin-bottom: 15px;
}

.requirement-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.requirement-item p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Risks Grid */
.risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.risk-item {
    background: rgba(239, 68, 68, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.risk-item:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: translateY(-3px);
}

.risk-item i {
    font-size: 30px;
    color: #ef4444;
    margin-bottom: 15px;
}

.risk-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.risk-item p {
    color: #fca5a5;
    font-size: 14px;
    margin: 0;
}

/* Fees Grid */
.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.fee-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.fee-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.fee-item i {
    font-size: 30px;
    color: #f59e0b;
    margin-bottom: 15px;
}

.fee-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.fee-item p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-card {
    background: rgba(102, 126, 234, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 30px;
    color: #667eea;
    margin-bottom: 15px;
}

.contact-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: #a5b4fc;
    font-size: 14px;
    margin: 0;
}

/* Company Info Card */
.company-info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.company-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.company-detail:last-child {
    margin-bottom: 0;
}

.company-detail i {
    color: #667eea;
    font-size: 18px;
    width: 20px;
}

/* Dispute Process */
.dispute-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.dispute-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.step-content p {
    color: #94a3b8;
    margin: 0;
}

/* Notification Methods */
.notification-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.notification-method {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.notification-method:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.notification-method i {
    font-size: 30px;
    color: #06b6d4;
    margin-bottom: 15px;
}

.notification-method h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.notification-method p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 25px;
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
}

.compliance-badge i {
    font-size: 16px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .legal-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-toc {
        position: static;
        order: 2;
    }
    
    .legal-content-new {
        order: 1;
    }
    
    .toc-card {
        padding: 20px;
    }
    
    .legal-section-card {
        padding: 25px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .purposes-grid, .security-grid, .rights-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .risks-grid, .fees-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-cards, .notification-methods {
        grid-template-columns: 1fr;
    }
    
    .dispute-process {
        gap: 15px;
    }
    
    .dispute-step {
        padding: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 80px 0 40px;
    }
    
    .legal-hero-title {
        font-size: 2rem;
    }
    
    .legal-hero-subtitle {
        font-size: 1rem;
    }
    
    .legal-main {
        padding: 40px 0;
    }
    
    .legal-section-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .subsection {
        padding: 20px;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 5px;
    }
}

/* ================================
   REDESIGNED SERVICES SECTION
   ================================ */

/* Services Section Main Container */
.services-new {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

/* Background Effects */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite alternate;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes particlesFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-10px, -10px) rotate(2deg); }
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-description-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Container - Row Layout */
.services-container-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Service Cards */
.service-card-new {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card-new:hover::before {
    opacity: 1;
}

.service-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(102, 126, 234, 0.1);
}

/* Featured Service Styling */
.featured-service {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.featured-service::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 1;
}

/* Glow Effect */
.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card-new:hover .service-card-glow {
    opacity: 1;
}

/* Featured Label */
.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-label i {
    font-size: 10px;
}

/* Service Header */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon-new {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.service-icon-new i {
    font-size: 2.5rem;
    color: #667eea;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-new:hover .icon-bg {
    opacity: 0.2;
}

.service-card-new:hover .service-icon-new i {
    color: white;
    transform: scale(1.1);
}

.service-badge {
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    color: #667eea;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-number {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 700;
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 2;
}

.service-title-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.featured-service .service-title-new {
    font-size: 2.2rem;
}

.service-description-new {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.featured-service .service-description-new {
    font-size: 1.1rem;
}

/* Features */
.service-features-new {
    margin-bottom: 30px;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.feature-item-new i {
    width: 20px;
    color: #667eea;
    font-size: 14px;
}

.feature-item-new span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.feature-item-new:hover {
    transform: translateX(5px);
}

.feature-item-new:hover span {
    color: white;
}

/* Pricing */
.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.price-value {
    color: #667eea;
    font-size: 2rem;
    font-weight: 800;
}

.featured-service .price-value {
    font-size: 2.5rem;
}

.price-period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Service Buttons */
.service-btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-btn-new.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.service-btn-new.primary:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
}

.service-btn-new i {
    transition: transform 0.3s ease;
}

.service-btn-new:hover i {
    transform: translateX(4px);
}

/* Additional Services CTA */
.additional-services {
    margin-top: 80px;
}

.services-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-new {
        padding: 80px 0;
    }
    
    .section-header-new {
        margin-bottom: 60px;
    }
    
    .section-title-new {
        font-size: 2.5rem;
    }
    
    .service-card-new {
        padding: 30px 20px;
    }
    
    .service-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-new i {
        font-size: 1.8rem;
    }
    
    .featured-service .service-title-new {
        font-size: 1.8rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .featured-service .price-value {
        font-size: 1.8rem;
    }
    
    .services-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title-new {
        font-size: 2rem;
    }
    
    .service-card-new {
        padding: 25px 15px;
    }
}

/* ================================
   REDESIGNED CONTACT SECTION
   ================================ */

/* Contact Section Main Container */
.contact-new {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a0a 50%, #1a1a2e 100%);
    overflow: hidden;
}

/* Background Effects */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    animation: contactParticlesFloat 25s ease-in-out infinite alternate;
}

.contact-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

@keyframes contactParticlesFloat {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { transform: translate(-15px, -15px) rotate(3deg) scale(1.02); }
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contact-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.contact-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Layout */
.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* Contact Info Grid */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Contact Cards */
.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(102, 126, 234, 0.1);
}

/* Featured Contact */
.featured-contact {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.featured-contact::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    opacity: 1;
}

/* Contact Card Glow */
.contact-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

/* Featured Contact Badge */
.featured-contact-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-contact-badge i {
    font-size: 10px;
}

/* Contact Card Header */
.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.contact-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.telegram-icon {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.2);
}

.telegram-icon i {
    color: #0088cc;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    animation: iconPulse 3s ease-in-out infinite;
}

.telegram-pulse {
    background: rgba(0, 136, 204, 0.2);
    animation: telegramPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

@keyframes telegramPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0.4; }
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

.contact-card:hover .contact-icon i {
    color: white;
    transform: scale(1.1);
}

/* Contact Status */
.contact-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.live-status {
    background: rgba(0, 136, 204, 0.2);
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.live-dot {
    background: #0088cc;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* Contact Card Content */
.contact-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.contact-card-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-value {
    margin-bottom: 12px;
}

.contact-value a {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.telegram-value a {
    color: #0088cc;
}

.telegram-value a:hover {
    color: #0077b5;
}

.contact-meta {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.contact-meta i {
    width: 12px;
    color: #667eea;
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Form Styles */
.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group-new label {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.input-wrapper,
.select-wrapper,
.textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i,
.select-wrapper i,
.textarea-wrapper i {
    position: absolute;
    left: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    z-index: 2;
    transition: color 0.3s ease;
}

.textarea-wrapper i {
    top: 16px;
}

.input-wrapper input,
.select-wrapper select,
.textarea-wrapper textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.input-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-wrapper input:focus,
.select-wrapper select:focus,
.textarea-wrapper textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-wrapper input:focus + i,
.select-wrapper select:focus + i,
.textarea-wrapper textarea:focus + i {
    color: #667eea;
}

.select-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.contact-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.contact-submit-btn::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.6s;
}

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

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-submit-btn:hover .btn-glow {
    opacity: 1;
}

/* Quick Contact Actions */
.quick-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.quick-action-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.quick-action-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.quick-action-text h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.quick-action-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.telegram-quick {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.telegram-quick:hover {
    background: rgba(0, 136, 204, 0.3);
    transform: translateY(-2px);
}

.email-quick {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
}

.email-quick:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-new {
        padding: 80px 0;
    }
    
    .contact-header {
        margin-bottom: 60px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-contact-actions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-action-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 20px 16px;
    }
    
    .contact-form-container {
        padding: 24px 16px;
    }
}

/* Floating Telegram Button for Mobile */
@media (max-width: 768px) {
    .floating-telegram-button {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
        background: linear-gradient(135deg, #0088cc, #229ED9) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        font-size: 24px !important;
        cursor: pointer !important;
        box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4) !important;
        z-index: 1000 !important;
        transition: all 0.3s ease !important;
        border: none !important;
        outline: none !important;
    }
    
    .floating-telegram-button:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6) !important;
    }
    
    .floating-telegram-button:active {
        transform: scale(0.95) !important;
    }
    
    .floating-telegram-button i {
        font-size: 24px !important;
        color: white !important;
    }
}

/* Hide floating button on larger screens */
@media (min-width: 769px) {
    .floating-telegram-button {
        display: none !important;
    }
}
