/* Global Styles */
:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --secondary-color: #00c3ff;
    --accent-color: #00e5ff;
    --dark-bg: #0a1929;
    --dark-card: #132f4c;
    --light-bg: #e6f4ff;
    --text-light: #ffffff;
    --text-dark: #0a1929;
    --text-gray: #718096;
    --border-color: #2d3748;
    --gradient-blue: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.highlight {
    color: var(--primary-color);
}

.section-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(0, 102, 255, 0.1);
}

.btn-start {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-start:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-start-small {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-start-small:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-explore {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: var(--primary-dark);
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    color: var(--primary-dark);
}

.btn-schedule {
    display: inline-block;
    background-color: white;
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-schedule:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-developer-hub {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-developer-hub:hover {
    color: var(--primary-dark);
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: var(--text-dark);
    font-weight: 500;
}

.btn-signup {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-image {
    text-align: center;
    max-width: 100%;
}

.hero-image img, .hero-image object {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.interactive-svg {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.interactive-svg:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .interactive-svg {
        max-height: 300px;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background-color: var(--light-bg);
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Design Section */
.design {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.design-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
}

.design-card {
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.design-card.dark {
    background-color: var(--dark-bg);
    color: white;
}

.design-card.light {
    background-color: white;
    color: var(--text-dark);
}

.card-header {
    margin-bottom: 30px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.design-card.light .card-icon {
    background-color: var(--light-bg);
}

.card-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.card-header p {
    color: rgba(255, 255, 255, 0.7);
}

.design-card.light .card-header p {
    color: var(--text-gray);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature i {
    color: var(--primary-color);
    margin-top: 5px;
}

.feature h4 {
    margin-bottom: 5px;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.design-card.light .feature p {
    color: var(--text-gray);
}

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

/* Code Editor Styling */
.code-editor {
    width: 100%;
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.editor-header {
    background-color: #252525;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

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

.editor-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.editor-button.red {
    background-color: #ff5f56;
}

.editor-button.yellow {
    background-color: #ffbd2e;
}

.editor-button.green {
    background-color: #27c93f;
}

.editor-tabs {
    display: flex;
    gap: 15px;
}

.editor-tab {
    color: #999;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
}

.editor-tab.active {
    background-color: #333;
    color: #fff;
}

.editor-content {
    display: flex;
    padding: 15px 0;
    background: linear-gradient(to bottom, #252525, #1e1e1e);
    position: relative;
    overflow: hidden;
}

.editor-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(30, 30, 30, 0.9));
    pointer-events: none;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    color: #666;
    text-align: right;
    user-select: none;
}

.code-content {
    flex-grow: 1;
    padding-right: 15px;
}

.code-content pre {
    margin: 0;
    padding: 0;
}

.code-content code {
    color: #d4d4d4;
}

.code-keyword {
    color: #569cd6;
}

.code-function {
    color: #dcdcaa;
}

.code-variable {
    color: #9cdcfe;
}

.code-string {
    color: #ce9178;
}

.code-comment {
    color: #6a9955;
}

.design-card.light .card-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.design-card.light .feature {
    display: flex;
    gap: 15px;
}

.design-card.light .feature i {
    color: var(--primary-color);
    margin-top: 5px;
}

.design-card.light .feature h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--text-dark);
}

.design-card.light .feature p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Journey Section */
.journey {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0.5;
}

.journey h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.journey > .container > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 50px;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    position: relative;
}

.journey-sidebar {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.journey-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.journey-sidebar h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.journey-sidebar h2 {
    font-size: 28px;
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.3;
}

.journey-sidebar .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.journey-sidebar p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-case-studies {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s ease;
}

.link-case-studies:hover {
    color: var(--secondary-color);
}

.industry-tabs {
    display: flex;
    flex-direction: column;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tab-btn:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

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

.interactive-svg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.interactive-svg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tab-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tab-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 204, 255, 0.05));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-image:hover::after {
    opacity: 1;
    display: grid;
    animation: fadeIn 0.5s ease forwards;
}

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

.tab-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tab-text .highlight {
    color: var(--primary-color);
}

.tab-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-list i {
    font-size: 8px;
    color: var(--primary-color);
}

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

.tab-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tab-image img:hover {
    transform: scale(1.02);
}

/* Collaboration Section */
.collaboration {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
    border-radius: 12px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Add a subtle gradient border */
    background-image: linear-gradient(var(--dark-bg), var(--dark-bg)), linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.collaboration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.collaboration-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.collaboration-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.collaboration-text h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.collaboration-text .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.collaboration-text h3 {
    max-width: 600px;
}

.collaboration-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.collaboration-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.collaboration-features .feature i {
    color: var(--primary-color);
    font-size: 14px;
}

.collaboration-features .feature span {
    font-weight: 500;
}

.collaboration-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.collaboration-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.collaboration-features i {
    color: var(--primary-color);
}

.collaboration-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    min-width: 250px;
}

.btn-schedule {
    display: inline-block;
    background-color: white;
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-schedule:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.link-support {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.link-support {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    gap: 8px;
    font-size: 14px;
}

/* Development Section */
.development {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.development::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color), var(--primary-color));
    opacity: 0.5;
}

.development-content {
    max-width: 800px;
}

.development-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 229, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00e5ff;
    font-size: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.development-content {
    position: relative;
    z-index: 2;
}

.development-content h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #00e5ff;
    font-weight: 600;
}

.development-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.development-content .highlight {
    color: #00e5ff;
    font-weight: 600;
}

.development-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 700px;
    line-height: 1.6;
}

.btn-developer-hub {
    display: inline-flex;
    align-items: center;
    color: #00e5ff;
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-developer-hub:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.development-content h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #00e676;
}

.development-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.development-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 700px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

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

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

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-logo a {
    font-size: 24px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-size: 14px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
    margin-left: 30px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 250px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.chat-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.chat-bubble p {
    margin: 0;
    font-size: 14px;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.chat-icon:hover {
    transform: scale(1.05);
}

.chat-icon:hover + .chat-bubble {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-buttons {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .design-cards {
        grid-template-columns: 1fr;
    }
    
    .design-card-image {
        display: none;
    }
    
    .journey-content {
        grid-template-columns: 1fr;
    }
    
    .journey-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    
    .collaboration-content {
        grid-template-columns: 1fr;
    }
    
    .tab-content {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .collaboration-features {
        grid-template-columns: 1fr;
    }
}