:root {
    --primary: #00ffea;
    --secondary: #ff00ff;
    --accent: #7c3aed;
    --background: #000000;
    --card-bg: rgba(0, 0, 0, 0.7);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: #27272a;
    --success: #22c55e;
    --warning: #f59e0b;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --insurance-blue: #0066cc;
    --insurance-gold: #ffd700;
    --emerald: #10b981;
    --trading-success: #00ff88;
    --trading-danger: #ff4444;
    --trading-warning: #ffaa00;
}

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

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.container {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 255, 234, 0.1);
}

.header-container {
    display: flex;
    height: 5rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    color: var(--secondary);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--secondary));
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: bold;
    text-shadow: 0 0 15px var(--primary);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.3);
    transform: translateY(-2px);
    background: rgba(0, 255, 234, 0.1);
}

.nav-link.contact-highlight {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    background-clip: padding-box;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-link.contact-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    z-index: -1;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: subtract;
    box-sizing: border-box;
}

.nav-link.contact-highlight:hover {
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.2), rgba(255, 0, 255, 0.2));
    color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.3);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--background);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 255, 234, 0.5);
}

.menu-button {
    background: rgba(0, 255, 234, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.625rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.menu-button:hover {
    background: var(--primary);
    color: var(--background);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.hero-grid > div:first-child {
    margin-left: 0;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.0rem;
    line-height: 1.2;
}

.hero-accent {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    animation: glitch 2s infinite, glitch-text 2s infinite;
    position: relative;
    display: inline-block;
}

/* Updated hero subtitle */
.hero-subtitle {
    color: #e2e8f0;
    font-size: 1.55rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.6;
}

/* Homepage2 style hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 4.5rem;
    margin-bottom: 0.1rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 234, 0.2);
}

.stat-value {
    font-size: 1.9rem !important;
    font-weight: 900 !important;
    color: var(--primary);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px var(--primary);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 350px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.cube {
    width: 250px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 15s infinite linear;
}

.cube-face {
    position: absolute;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.face-front { transform: translateZ(125px); }
.face-back { transform: rotateY(180deg) translateZ(125px); }
.face-right { transform: rotateY(90deg) translateZ(125px); }
.face-left { transform: rotateY(-90deg) translateZ(125px); }
.face-top { transform: rotateX(90deg) translateZ(125px); }
.face-bottom { transform: rotateX(-90deg) translateZ(125px); }

/* Services Section - Using Homepage2 Style */
.services-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card.cross-chain-tools {
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.product-card.research-insights {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.product-card.cross-chain-tools::before {
    background: var(--gradient-3);
}

.product-card.research-insights::before {
    background: var(--gradient-2);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 234, 0.15);
}

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

.product-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px currentColor);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
}

.product-card.cross-chain-tools .product-title {
    color: var(--primary);
}

.product-card.research-insights .product-title {
    color: var(--secondary);
}

.product-description {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 1.15rem;
    position: relative;
    padding-left: 2rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.product-card.cross-chain-tools .product-cta {
    background: var(--gradient-3);
    color: black;
}

.product-card.research-insights .product-cta {
    background: var(--gradient-2);
    color: black;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 234, 0.3);
}

/* AI Intelligence Section - V0 Style */
.cross-chain-expertise-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cross-chain-expertise-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cross-chain-expertise-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cross-chain-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.solution-category {
    text-align: left;
}

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

.solution-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px currentColor);
    margin-left: 0;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.bridge-security-category .solution-title {
    color: var(--primary);
}

.protocol-analysis-category .solution-title {
    color: var(--secondary);
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.solution-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.bridge-security-category .solution-item-icon {
    background: rgba(0, 255, 234, 0.2);
    color: var(--primary);
}

.protocol-analysis-category .solution-item-icon {
    background: rgba(255, 0, 255, 0.2);
    color: var(--secondary);
}

.solution-item-content h4 {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.solution-item-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.4;
}

/* Split-Screen Comparison Cards */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-card.cross-chain-tools {
    border-left: 5px solid var(--primary);
}

.comparison-card.research-insights {
    border-left: 5px solid var(--secondary);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 234, 0.15);
}

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

.comparison-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-card.cross-chain-tools .comparison-badge {
    background: rgba(0, 255, 234, 0.2);
    color: var(--primary);
}

.comparison-card.research-insights .comparison-badge {
    background: rgba(255, 0, 255, 0.2);
    color: var(--secondary);
}

.comparison-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.comparison-result {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.comparison-card.cross-chain-tools .comparison-result {
    color: var(--success);
}

.comparison-card.research-insights .comparison-result {
    color: var(--success);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.15rem;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.comparison-card.cross-chain-tools .feature-list li::before {
    color: var(--primary);
}

.comparison-card.research-insights .feature-list li::before {
    color: var(--secondary);
}

/* Additional cards from homepage2 */
.ai-showcase-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.showcase-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.1);
    text-decoration: none !important;
}

.showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.2);
}

.showcase-card h3 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--secondary);
    text-decoration: none !important;
}

.showcase-card p {
    color: var(--text);
    font-size: 1.15rem;
    text-decoration: none !important;
}

/* Final CTA Section */
.cross-chain-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
    border-radius: 2rem;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.ai-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), #7c3aed);
}

.cross-chain-cta-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.cross-chain-cta-description {
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cross-chain-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: black;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.cross-chain-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 234, 0.4);
}

/* Contact Section */
.cta {
    padding: 4rem 0;
}

.cta-container {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(20, 20, 30, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M0,100 L100,0" stroke="rgba(124, 58, 237, 0.1)" stroke-width="1"/></svg>');
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cta-text {
    text-align: left;
    padding: 2rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.cta-description {
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 234, 0.1);
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: black;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background-color: #00d6c4;
    transform: translateY(-2px);
}

.appointment-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 255, 234, 0.05);
    border: 1px solid rgba(0, 255, 234, 0.2);
    border-radius: 0.5rem;
}

.toggle-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.toggle-label {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.appointment-fields {
    display: none;
    background: rgba(0, 255, 234, 0.05);
    border: 1px solid rgba(0, 255, 234, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.appointment-fields.show {
    display: block;
}

.appointment-header {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Date/time picker styling */
input[type="datetime-local"] {
    cursor: pointer;
    position: relative;
    color: #a1a1aa;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: transparent;
    cursor: pointer;
}

input[type="datetime-local"]:focus {
    color: white;
}

input[type="datetime-local"]:valid {
    color: white;
}

/* Fixed dropdown styling */
select.form-input {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

select.form-input option {
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 0.5rem;
}

select.form-input option:hover {
    background: rgba(0, 255, 234, 0.2);
}

/* Footer Styles */
.custom-footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem 0 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

.social-section {
    flex: 1;
    text-align: center;
}

.social-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-links a {
    transition: all 0.3s ease;
    margin: 5px;
}

.social-links a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px var(--primary));
}

.social-links svg {
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: var(--primary) !important;
}

.newsletter-section {
    flex: 1;
    text-align: center;
}

.newsletter-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #27272a;
    border-radius: 0.375rem;
    color: #ffffff;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
    text-align: center;
}

.newsletter-input::placeholder {
    color: #a1a1aa;
    text-align: center;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.2);
}

.newsletter-button {
    background: var(--primary);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #00d6c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.3);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #27272a;
    margin: 2rem 0 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-links {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.copyright {
    color: #a1a1aa;
    font-size: 1rem;
    margin: 0;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* Centered footer layout for research and tools pages */
.footer-centered {
    justify-content: center !important;
}

.social-centered {
    text-align: center;
    max-width: none;
}

.social-centered .social-title {
    text-align: center;
    margin-bottom: 1rem;
}

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

/* Animations */
@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--secondary));
    }
    50% {
        filter: drop-shadow(0 0 20px var(--secondary));
    }
}

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

@keyframes glitch {
    2%, 64% { transform: translate(2px, 0) skew(0deg); }
    4%, 60% { transform: translate(-2px, 0) skew(0deg); }
    62% { transform: translate(0, 0) skew(5deg); }
}

@keyframes glitch-text {
    0% { text-shadow: 0 0 10px var(--primary); }
    2%, 64% { text-shadow: -2px 0 var(--secondary), 2px 0 var(--primary); }
    4%, 60% { text-shadow: 2px 0 var(--secondary), -2px 0 var(--primary); }
    62% { text-shadow: 0 0 10px var(--primary); }
}

/* Media Queries */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .menu-button {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .hero-visual {
        margin: 2rem auto 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .footer-main {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .footer-bottom {
        justify-content: space-between;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}

/* Tablet Breakpoint */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .services-title,
    .cross-chain-expertise-title {
        font-size: 2.2rem;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-description {
        font-size: 1.15rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cross-chain-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 767px) {
    .container {
        max-width: 95%;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-grid > div:first-child {
        text-align: center;
    }
    
    /* Cube hidden on mobile, removing redundant styles */
    
    .services-title,
    .cross-chain-expertise-title {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-links {
        font-size: 1rem;
    }
    
    .copyright {
        order: 1;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .form-submit {
        width: 100%;
    }
}

@media (min-width: 1025px) {
    .container {
        max-width: 70%;
    }
    
    
    .solution-icon {
        margin-left: 8rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 70%;
    }
    
    .nav-desktop {
        gap: 0.75rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 70%;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 3rem 0 1.5rem 0;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.6rem;
    color: #e2e8f0;
    max-width: 40rem;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
    font-weight: 600;
}

.contact-form-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 100%;
}

/* Success/Error Message Styles */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert.show {
    display: block;
}

/* Research Dashboard Specific Styles */
.container.research-page {
    max-width: 70%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-subtext {
    color: var(--text);
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-checkpoints {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.hero-checkpoint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-checkpoint .checkmark {
    color: var(--success);
    font-weight: bold;
}

.research-dashboard {
    width: 100%;
    max-width: 600px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.research-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dash-title {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

.dash-status {
    color: var(--success);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-green 2s infinite;
}

.dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.metric-value {
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
}

.metric-value.positive {
    color: var(--success);
}

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

.metric-label-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.metric-value-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-bar {
    width: 100%;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 0.375rem;
    transition: width 0.8s ease;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: black;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 234, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(255, 0, 255, 0.1));
    color: var(--text);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    padding-right: 3.5rem;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.5rem;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask-composite: destination-out;
    z-index: -1;
}

.cta-button.secondary::after {
    content: '🤖';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.cta-button.secondary:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.2), rgba(255, 0, 255, 0.2));
    color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.3);
    transform: translateY(-3px) scale(1.02);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-60%);
    }
    60% {
        transform: translateY(-55%);
    }
}

/* Demo Popup Styles */
.demo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.demo-popup.show {
    display: flex;
}

.demo-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    margin: 1rem;
    box-shadow: 0 0 50px rgba(0, 255, 234, 0.2);
}

.demo-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.demo-close:hover {
    background: var(--primary);
    color: black;
}

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

.demo-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.demo-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.demo-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.2);
}

.demo-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.demo-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.demo-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.demo-highlight {
    background: rgba(0, 255, 234, 0.1);
    border: 1px solid rgba(0, 255, 234, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.demo-highlight h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.demo-highlight p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.demo-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.comparison-item {
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.comparison-old {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.comparison-new {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.comparison-item h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.comparison-old h5 {
    color: #ff6b6b;
}

.comparison-new h5 {
    color: #51cf66;
}

/* Who We Help Section */
.who-we-help-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.who-we-help-header {
    text-align: center;
    margin-bottom: 3rem;
}

.who-we-help-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-we-help-subtitle {
    color: var(--text);
    font-size: 1.25rem;
    max-width: 50rem;
    margin: 2rem auto 0 auto;
    line-height: 1.6;
    text-align: center;
}

.why-ai-content {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.why-ai-intro {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(0, 255, 234, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}

.challenge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 234, 0.15), transparent);
    transition: left 0.6s ease;
}

.challenge-item:hover::before {
    left: 100%;
}

.challenge-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 234, 0.25);
}

.challenge-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(0, 255, 234, 0.5));
}

.challenge-text {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

.why-ai-solution {
    font-size: 1.25rem;
    color: var(--text);
    margin: 2rem 0;
    line-height: 1.6;
}

.professionals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 60rem;
}

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

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.professional-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.2);
}

.professional-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px currentColor);
}

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

.closing-statement {
    text-align: center;
    margin-top: 3rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.closing-text {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
}

/* Solutions Section */
.solutions-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.solutions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.2);
    border-color: var(--primary);
}

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

.solution-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 255, 234, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    border: 1px solid rgba(0, 255, 234, 0.3);
}

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

.solution-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.solution-features li:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 234, 0.05);
}

.solution-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* What Makes Us Different + How It Works Combined Section */
.different-works-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.different-works-header {
    text-align: center;
    margin-bottom: 3rem;
}

.different-works-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.different-works-content {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.different-intro {
    margin-bottom: 2rem;
}

.different-problems {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.different-problem {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.problem-separator {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.different-solution-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(0, 255, 234, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}

.different-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 234, 0.15), transparent);
    transition: left 0.6s ease;
}

.different-solution-card:hover::before {
    left: 100%;
}

.different-solution-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 255, 234, 0.25);
}

.different-solution {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.different-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 50rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 255, 234, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid rgba(0, 255, 234, 0.3);
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.process-step:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.2);
}

.step-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.2), rgba(255, 0, 255, 0.1));
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 234, 0.3);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    color: var(--primary);
    font-size: 3rem;
    z-index: 15;
    text-shadow: 0 0 10px var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.process-step:hover .step-arrow {
    opacity: 1;
    transform: translateX(0);
}

.process-step:last-child .step-arrow {
    display: none;
}

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

.process-section {
    border-top: 2px solid var(--border-color);
    padding: 3rem 0 0 0;
    margin-top: 3rem;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.process-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 3rem;
}

.process-connection-line {
    position: absolute;
    top: 3rem;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(1rem);
    z-index: 0;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(0, 255, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1rem auto;
    border: 1px solid rgba(0, 255, 234, 0.3);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0.5rem;
    right: 0.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 1rem 1rem 0 0;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contact Page Media Queries */
@media (max-width: 1024px) {
    .contact-form-section {
        margin: 0 1rem;
    }
}

/* Research Page Media Queries */
@media (min-width: 640px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-input {
        flex: 1;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

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

    .demo-comparison {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .professionals-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

@media (min-width: 1024px) {
    .professionals-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 1024px) {
    .step-content h3 {
        font-size: 1.25rem;
    }

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

    .demo-comparison {
        grid-template-columns: 1fr;
    }

    .process-connection-line {
        display: none;
    }
    
    .different-problems {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .different-problem {
        text-align: center;
    }

    .different-problems {
        flex-direction: column;
        gap: 1rem;
    }
    
    .problem-separator {
        display: none;
    }
}

/* Trading Suite Specific Styles */

/* Page Header - Trading */
.page-header {
    padding: 4rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    background: none;
}

.hero-container {
    max-width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-content {
    text-align: left;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    color: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats-mini {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mini-stat-value {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.mini-stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3.5rem;
}

.trading-dashboard-preview {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.trading-dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-preview {
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

/* Animation for the chart */
@keyframes drawLine {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

.chart-svg polyline {
    animation: drawLine 3s ease-in-out infinite alternate;
}

/* Tab Navigation - Trading */
.tab-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0; 
    margin: 0 auto 3rem auto;
    padding: 1rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    overflow-x: auto;
    scrollbar-width: thin;
    width: 100%;
}

.tab-navigation::-webkit-scrollbar {
    height: 4px;
}

.tab-navigation::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.tab-navigation::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.tab-label {
    color: #ff00ff;
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 11rem;
}

.tab-label::after {
    content: '▶';
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.5);
    padding-left: 0.5rem;
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.tab-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding-right: 5rem;
    justify-content: flex-end;
}

.tab-btn {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.3);
}

.tab-btn:hover:not(.active) {
    background: rgba(0, 255, 234, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* News Grid and Cards */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
    transform: translateY(-5px);
}

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

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    background: rgba(0, 255, 234, 0.15);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 255, 234, 0.3);
}

.news-content {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Chart and Technical Analysis */
.chart-placeholder {
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-placeholder:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 234, 0.05);
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 234, 0.1), transparent);
    animation: shimmer 2s infinite;
}

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

.chart-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.chart-text {
    text-align: center;
    color: var(--text-muted);
}

.chart-text h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Trading Tools */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tool-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
}

.tool-title {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tool-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.tool-placeholder {
    background: rgba(0, 0, 0, 0.5);
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-placeholder:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 234, 0.05);
    color: var(--primary);
}

.placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Calculator Forms */
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-display {
    background: rgba(0, 255, 234, 0.1);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-value {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Chart Container Styles */
.chart-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.1);
}

.controls-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

select, .trading-suite select, .trading-suite button {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

select:hover, .trading-suite select:hover, .trading-suite button:hover {
    background: rgba(0, 255, 234, 0.1);
    border-color: var(--primary);
}

select:focus, .trading-suite select:focus, .trading-suite button:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 234, 0.2);
}

.upgrade-notice {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.upgrade-btn {
    background: var(--warning);
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.upgrade-btn:hover {
    background: #ffcc00;
    transform: translateY(-1px);
}

/* Access Gate Modal */
.access-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.access-gate.show {
    display: flex;
}

.gate-content {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 234, 0.3);
    position: relative;
}

.gate-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.gate-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gate-message {
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gate-btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.gate-btn.primary:hover {
    background: #00d6c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 234, 0.3);
}

.gate-btn.secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-color);
}

.gate-btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 234, 0.1);
}

.close-gate {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-gate:hover {
    color: var(--primary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary);
}

/* Trading Suite Media Queries */
@media (min-width: 768px) {
    .page-header {
        padding: 4rem 2rem;
    }
    
    .page-title {
        font-size: 3.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 70%;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-stats-mini {
        gap: 3rem;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .tab-label {
        justify-content: center;
        font-size: 1.2rem;
        padding-left: 0;
    }
    
    .tab-buttons {
        justify-content: center;
        flex-wrap: wrap;
        padding-right: 0;
    }
    
    .gate-content {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .page-header {
        padding: 5rem 2rem;
    }
    
    .page-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-container {
        max-width: 70%;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .tab-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .tab-label {
        justify-content: center;
        font-size: 1.2rem;
        padding-left: 0;
    }
    
    .tab-buttons {
        justify-content: center;
        flex-wrap: wrap;
        padding-right: 0;
    }
}

/* Blog Page Specific Styles */
.page-header {
    text-align: center;
    padding: 1.5rem 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 2rem;
    margin: 0;
    color: #ffffff;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0;
    font-weight: 400;
}

/* Blog Content */
.featured-section {
    margin-top:0.5rem;
    margin-bottom: 3rem;
    display: none;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.posts-title {
    font-size: 1.6rem;
    color: #ffffff;
    text-shadow: none;
    margin: 0;
    text-align: left;
    flex: 1;
}

.posts-count {
    color: #a1a1aa;
    font-size: 1.1rem;
    font-weight: 400;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .posts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .posts-title {
        font-size: 1.5rem;
    }
    
    .posts-count {
        align-self: flex-end;
        font-size: 0.8rem;
    }
}

.featured-post {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: stretch;
}

.featured-post:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 234, 0.2);
}

.featured-image {
    width: 60%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    flex-shrink: 0;
    aspect-ratio: 16/9;
    min-height: 300px;
}

/* Responsive image adjustments */
@media (min-width: 1200px) {
    .featured-image {
        min-height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .featured-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .featured-post {
        flex-direction: column;
    }
    
    .featured-image {
        width: 100% !important;
        min-height: 250px !important;
        border-radius: 12px 12px 0 0 !important;
        aspect-ratio: 16/9 !important;
    }
    
    .featured-content {
        justify-content: flex-start !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .featured-image {
        min-height: 200px !important;
    }
}

.post-image {
    width: 100%;
    height: 250px; /* Increased height for grid posts */
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* Add lazy loading styles */
.image-loading {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.3;
    animation: pulse-loading 1.5s ease-in-out infinite;
}

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

.image-loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.image-error {
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.image-error::after {
    content: "Image unavailable";
}

.featured-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

/* Content ordering and spacing for featured post */
.featured-content .post-title {
    margin-bottom: 0 !important;
    order: 1;
    font-size: 2rem !important;
}

.featured-content .post-excerpt {
    margin-bottom: 0 !important;
    order: 2;
}

.featured-content .post-meta {
    margin-bottom: 0 !important;
    order: 3;
}

.featured-content .read-more-btn {
    order: 4;
    align-self: flex-start !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-title {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-btn {
    background: var(--primary);
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: #00d6c4;
    transform: translateY(-2px);
}

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

.post-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 255, 234, 0.2);
}

.post-content {
    padding: 1.5rem;
}

.post-card .post-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.post-card .post-excerpt {
    margin-bottom: 1rem;
}

.category-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    background: rgba(0, 255, 234, 0.2);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: var(--primary);
    color: black;
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 8px;
    padding: 1rem;
    color: #ff4444;
    text-align: center;
    margin: 2rem 0;
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* Hide cube on devices smaller than 950px */
@media (max-width: 950px) {
    .hero-visual {
        display: none;
    }
}

