/* General Styles */
:root {
    --primary-color: #6C63FF;
    --secondary-color: #4CAF50;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --gradient: linear-gradient(135deg, #6C63FF, #FF6B6B);
    --header-height: 80px;
    --section-padding: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

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

/* Navigation Styles */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

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

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    padding: 10px 0;
    width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    list-style: none;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.submenu a {
    padding: 8px 20px;
    display: block;
}

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

.social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-welcome, .btn-explore {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-welcome {
    background: var(--gradient);
    color: white;
}

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

.btn-welcome:hover, .btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.hero-animation {
    max-width: 600px;
    margin: 0 auto;
}

.hero-animation img {
    width: 100%;
    height: auto;
}

/* Section 1 Styles */
.section-1 {
    padding: 100px 0;
    text-align: center;
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto 50px;
}

.info-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.company-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.company-logos img {
    height: 40px;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.company-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.btn-ecosystem {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-ecosystem:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

/* Explore Ideas Section */
.explore-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

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

.btn-explore-ideas {
    padding: 15px 30px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-explore-ideas:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.ideas-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idea-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.idea-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 300px;
}

.idea-card.large {
    padding: 40px;
    max-width: 400px;
}

.idea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.15);
}

.idea-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.idea-card.large .idea-content h3 {
    font-size: 2rem;
}

/* Smart Contracts Section */
.contracts-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.code-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.code-container {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.code-header {
    background: #2d2d2d;
    padding: 15px;
    display: flex;
    align-items: center;
}

.dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

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

.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.code-content {
    padding: 20px;
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #a8ffe5;
    overflow-x: auto;
}

/* Code typing animation */
.typing-animation {
    border-right: 2px solid #a8ffe5;
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #a8ffe5; }
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a2634 100%);
    color: white;
    padding: var(--section-padding) 0 30px;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(108, 99, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.footer:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: patternMove 60s linear infinite;
    pointer-events: none;
}

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

.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-top path {
    fill: #ffffff;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer * {
    position: relative;
    z-index: 2;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
    font-size: 1.1rem;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-icon:hover:before {
    opacity: 1;
}

.footer-subscribe {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer-subscribe .form-control {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: white;
    padding: 15px 140px 15px 25px;
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-subscribe .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.footer-subscribe .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer-subscribe .btn {
    padding: 12px 25px;
    background: var(--gradient);
    border: none;
}

.footer-subscribe {
    position: relative;
    max-width: 400px;
}

.footer-subscribe .input-group {
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
}

.footer-subscribe .form-control {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    flex: 1;
}

.footer-subscribe .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-subscribe .btn {
    background: var(--gradient);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: transform 0.3s;
}

.footer-subscribe .btn:hover {
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.footer-bottom a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: width 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

.footer-bottom a:hover:after {
    width: 100%;
}

/* Pricing Section Styles */
.pricing-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.pricing-section .section-header h2 {
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
}

.pricing-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.pricing-section .section-header h2 {
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
}

.pricing-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    color: #6c757d;
}

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

.features-list li {
    margin: 15px 0;
    color: #495057;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-pricing {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-pricing:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0;
}

.btn-pricing:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.btn-pricing:hover:before {
    width: 100%;
    opacity: 1;
}

.btn-pricing:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

.btn-pricing:hover:before {
    width: 100%;
}

.btn-pricing.primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-pricing.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    opacity: 0.9;
}

/* FAQ Section Styles */
.faq-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(108, 99, 255, 0.1);
    transform-origin: left center;
}

.faq-item:hover {
    transform: translateX(10px) scale(1.01);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-question .icon {
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    background: var(--gradient);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Section Styles */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(108, 99, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.15);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    margin: 0;
    color: #666;
}

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

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
}

.social-links a:hover {
    transform: translateY(-5px);
    color: white;
    background: var(--gradient);
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
}

.form-group .focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease, left 0.3s ease;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
    left: 0;
}

.btn-submit {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    background: var(--gradient);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .contact-info {
        text-align: center;
    }

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

    .social-links {
        justify-content: center;
    }
}

/* Modern About Section Styles */
.about-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.about-card {
    perspective: 1000px;
    height: 300px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.about-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-back {
    transform: rotateY(180deg);
    background: var(--gradient);
    color: white;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Modern Services Section Styles */
.services-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card.highlighted {
    background: white;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    transition: transform 0.3s;
}

.service-card.highlighted:hover {
    transform: translateY(-10px);
}

.service-content {
    padding-right: 30px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle i {
    font-size: 1.5rem;
    color: white;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    margin-right: 15px;
    color: var(--primary-color);
}

.feature-text strong {
    display: block;
    margin-bottom: 5px;
}

.btn-service {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: var(--gradient);
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blockchain-animation, .cloud-animation {
    width: 200px;
    height: 200px;
    position: relative;
}

.blocks, .clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blocks span, .clouds span {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: float 2s infinite ease-in-out;
}

.clouds span {
    border-radius: 20px;
    background: #e9ecef;
}

.blocks span:nth-child(2), .clouds span:nth-child(2) {
    animation-delay: 0.2s;
}

.blocks span:nth-child(3), .clouds span:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* Modern Features Section Styles */
.features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 40px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 8px 20px;
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
}

.interactive-terminal {
    background: #1e1e1e;
    border-radius: 20px;
    overflow: hidden;
}

.terminal-header {
    background: #2d2d2d;
    padding: 15px;
    display: flex;
    align-items: center;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-red { background: #ff5f56; }
.btn-yellow { background: #ffbd2e; }
.btn-green { background: #27c93f; }

.terminal-title {
    color: #fff;
    margin-left: 20px;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
    font-family: 'Roboto Mono', monospace;
}

.command-line {
    margin-bottom: 10px;
    color: #fff;
}

.prompt {
    color: #27c93f;
    margin-right: 10px;
}

.command {
    color: #fff;
}

.output {
    color: #666;
    margin: 10px 0;
}

.output.success {
    color: #27c93f;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: #fff;
    animation: blink 1s infinite;
}

.terminal-footer {
    padding: 10px;
    background: #2d2d2d;
    display: flex;
    justify-content: flex-end;
}

.btn-copy {
    background: transparent;
    border: 1px solid #666;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: #666;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.feature-points i {
    color: var(--primary-color);
}

/* .btn-start-building {
    margin-top: 40px;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
}

.btn-start-building:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
} */

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

/* Get Started CTA Section */
.get-started-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-features .feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-cta {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cta.primary {
    background: var(--gradient);
    color: white;
}

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

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-visual {
    position: relative;
}

.animation-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements .element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--gradient);
    opacity: 0.1;
    animation: float 6s infinite ease-in-out;
}

.floating-elements .element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-elements .element:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--primary-color);
    opacity: 0.1;
    font-size: 3rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    color: #ffc107;
    margin: 15px 0;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.author-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

.testimonials-brands {
    margin-top: 60px;
}

.testimonials-brands p {
    color: #666;
    margin-bottom: 30px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brand-logos img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.brand-logos img:hover {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-visual {
        display: none;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 20px;
        position: relative;
        margin-left: 20px;
        transition: transform 0.3s ease;
    }

    .menu-toggle.active {
        transform: rotate(180deg);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: calc(var(--header-height) + 20px) 20px 20px;
        text-align: center;
        opacity: 0;
        transform: translateX(-100%);
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }

    .submenu {
        position: static;
        transform: none;
        background: rgba(108, 99, 255, 0.05);
        margin: 10px 0;
        border-radius: 10px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
    }

    .has-submenu.active .submenu {
        max-height: 300px;
        opacity: 1;
        padding: 10px 0;
    }

    .submenu a {
        padding: 12px 20px;
        opacity: 0.8;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .submenu a:hover {
        background: rgba(108, 99, 255, 0.1);
        opacity: 1;
    }
}
