/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
    padding: 0 20px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #e6edf3;
    text-decoration: none;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    color: #1e7ed6;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #c9d1d9;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #1e7ed6;
    background: rgba(30, 126, 214, 0.1);
}

.nav-link.discord-icon {
    color: #5865f2;
    padding: 8px;
}

.nav-link.discord-icon:hover {
    color: #4752c4;
    background: rgba(88, 101, 242, 0.1);
}

.nav-cta {
    background: #1e7ed6;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(30, 126, 214, 0.2);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: #1a6bb8;
    transform: translateY(-1px);
}

.nav-cta.consultation {
    background: transparent;
    border: 1px solid #1e7ed6;
    color: #1e7ed6;
    margin-right: 12px;
    font-family: 'Inter', sans-serif;
}

.nav-cta.consultation:hover {
    background: rgba(30, 126, 214, 0.1);
    color: #1e7ed6;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 126, 214, 0.3);
}

/* Navigation dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(22, 27, 34, 0.95);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #c9d1d9;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 4px;
}

.dropdown-item:hover {
    background: rgba(30, 126, 214, 0.1);
    color: #1e7ed6;
}

/* Mobile responsive nav */
@media (max-width: 768px) {
    .navbar {
        padding: 0 16px;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 8px;
    }
    
    .nav-cta {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .nav-cta.consultation {
        margin-right: 8px;
        padding: 6px 12px;
    }
    
    .logo-text {
        display: none;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e6edf3;
    background: #0d1117;
}

/* Waitlist page styles */
.waitlist-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    position: relative;
    overflow-x: hidden;
}

.waitlist-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated background particles */
.waitlist-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(88, 166, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(88, 166, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(88, 166, 255, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: animateParticles 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes animateParticles {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Floating geometric shapes */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.floating-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.floating-shape:nth-child(3) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.floating-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-delay: 6s;
    animation-duration: 25s;
}

.floating-shape:nth-child(5) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

/* Hero section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 150px 0 80px 0;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(30, 126, 214, 0.1);
    border: 1px solid rgba(30, 126, 214, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #1e7ed6;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1e7ed6;
    line-height: 1.2;
}

.highlight {
    color: #1e7ed6;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #c9d1d9;
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #e6edf3;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.open-popup-btn {
    padding: 18px 32px;
    background: #1e7ed6;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(30, 126, 214, 0.3);
}

.open-popup-btn:hover {
    background: #1a6bb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 126, 214, 0.4);
}

.hero-consultation-btn {
    padding: 18px 32px;
    background: transparent;
    color: #1e7ed6;
    border: 2px solid #1e7ed6;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-consultation-btn:hover {
    background: rgba(30, 126, 214, 0.1);
    color: #1e7ed6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 126, 214, 0.2);
}

/* Terminal Demo */
.demo-preview {
    margin-bottom: 5rem;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.screenshot-container {
    max-width: 1100px;
    width: 100%;
}

.demo-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(88, 166, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-screenshot:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.7),
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(88, 166, 255, 0.3),
        0 0 40px rgba(88, 166, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.screenshot-container {
    max-width: 1150px;
    width: 100%;
}

.app-mockup {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid #30363d;
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.app-header {
    background: rgba(33, 38, 45, 0.8);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #30363d;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8b949e;
}

.terminal-dots span:first-child {
    background: #f85149;
}

.terminal-dots span:nth-child(2) {
    background: #d29922;
}

.terminal-dots span:last-child {
    background: #3fb950;
}

.app-title {
    color: #8b949e;
    font-size: 0.85rem;
    font-weight: 500;
}

.terminal-content {
    padding: 16px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.prompt {
    color: #58a6ff;
    font-weight: 600;
}

.terminal-line.blocked {
    color: #f85149;
    font-weight: 500;
}

.terminal-line.quiz {
    color: #f59e0b;
    font-weight: 500;
}

.terminal-line .icon {
    font-size: 1rem;
}

/* App interface preview */
.app-screenshot {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #1e2a3a 0%, #2d4a5b 100%);
}

.mock-interface {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interface-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 700px;
}

.code-section, .assessment-section {
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-radius: 8px;
    padding: 16px;
}

.section-header {
    color: #e6edf3;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-align: center;
}

.mock-code {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.75rem;
    line-height: 1.4;
}

.code-line {
    margin-bottom: 4px;
    padding: 2px 4px;
    border-radius: 2px;
}

.code-line.added {
    background: rgba(35, 134, 54, 0.15);
    color: #3fb950;
}

.code-line.removed {
    background: rgba(248, 81, 73, 0.15);
    color: #f85149;
}

.question-preview {
    text-align: left;
}

.question {
    color: #58a6ff;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.options {
    font-size: 0.7rem;
    line-height: 1.4;
}

.option {
    color: #c9d1d9;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .interface-split {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .app-screenshot {
        height: 350px;
    }
}


/* Features section */
.features-section {
    padding: 80px 0;
    margin-top: -10vh;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e6edf3;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #8b949e;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.feature-card.full-width {
    grid-column: 1 / -1;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #58a6ff;
    box-shadow: 0 12px 30px rgba(88, 166, 255, 0.1);
}

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

.feature-header div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(30, 126, 214, 0.2);
}

.feature-icon.terminal {
    background: rgba(88, 166, 255, 0.1);
    border-color: rgba(88, 166, 255, 0.2);
}

.feature-icon.github {
    background: rgba(88, 166, 255, 0.1);
    border-color: rgba(88, 166, 255, 0.2);
}

.feature-icon.quiz {
    background: rgba(88, 166, 255, 0.1);
    border-color: rgba(88, 166, 255, 0.2);
}

.feature-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-tag {
    background: rgba(88, 166, 255, 0.1);
    color: #58a6ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 126, 214, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e6edf3;
    margin: 0;
}

.feature-card p {
    color: #8b949e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-card code {
    background: rgba(88, 166, 255, 0.1);
    color: #58a6ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 0.9em;
}

/* Terminal window styling */
.terminal-window {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #30363d;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #404040;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.terminal-dots .dot.red {
    background: linear-gradient(135deg, #ff5f56 0%, #e74c3c 100%);
}

.terminal-dots .dot.yellow {
    background: linear-gradient(135deg, #ffbd2e 0%, #f39c12 100%);
}

.terminal-dots .dot.green {
    background: linear-gradient(135deg, #27ca3f 0%, #27ae60 100%);
}

.terminal-title {
    color: #c0c0c0;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
}

.terminal-body {
    background: rgba(0, 0, 0, 0.9);
    padding: 16px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #c0c0c0;
}

.terminal-line:last-child {
    margin-bottom: 0;
}

.terminal-line .prompt {
    color: #00ff00;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(0, 255, 0, 0.5);
}

.terminal-line.blocked {
    color: #ff5555;
    font-weight: 500;
    padding-left: 20px;
}

.blocked-icon {
    margin-right: 4px;
}

/* Legacy code snippet styling for other uses */
.code-snippet {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.code-snippet .prompt {
    color: #58a6ff;
    font-weight: 600;
}

.code-snippet .blocked {
    color: #f85149;
    margin-top: 4px;
}

/* GitHub Bot Mockup */
.github-bot-mockup {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(35, 134, 54, 0.2);
    border: 2px solid #238636;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bot-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bot-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #e6edf3;
}

.bot-tag {
    background: rgba(58, 134, 255, 0.2);
    color: #58a6ff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}

.bot-description {
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* GitHub status */
.github-status {
    background: rgba(33, 38, 45, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 8px;
    padding: 16px;
    margin-top: 1rem;
}

.status-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.3);
    border-radius: 6px;
    border-left: 4px solid #f85149;
}

.status-icon {
    color: #f85149;
    flex-shrink: 0;
}

.status-text {
    color: #f85149;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
}

/* Quiz preview */
.quiz-preview {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.quiz-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #e6edf3;
}

.q-icon {
    background: rgba(88, 166, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #58a6ff;
}

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

.option {
    padding: 8px 12px;
    background: rgba(33, 38, 45, 0.6);
    border: 1px solid #30363d;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #c9d1d9;
    transition: all 0.2s ease;
}

.option.correct {
    background: rgba(35, 134, 54, 0.1);
    border-color: rgba(35, 134, 54, 0.3);
    color: #3fb950;
}

/* Testimonials section */
.testimonials-section {
    padding: 80px 0;
    margin-top: -5vh;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(22, 27, 34, 0.7);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 166, 255, 0.4);
    box-shadow: 0 12px 30px rgba(88, 166, 255, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.8rem;
    left: 1.8rem;
    font-size: 2rem;
    color: rgba(88, 166, 255, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-quote {
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}

.testimonial-quote p {
    color: #e6edf3;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: normal;
    margin: 0;
    font-weight: 400;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #58a6ff 0%, rgba(88, 166, 255, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    border: 2px solid rgba(88, 166, 255, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    color: #e6edf3;
    font-size: 1rem;
}

.author-role {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-section {
        margin-top: -2vh;
        padding: 40px 0;
    }
}

/* FAQ section */
.faq-section {
    padding: 80px 0;
    margin-top: -5vh;
}

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

.faq-item {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid #30363d;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(88, 166, 255, 0.3);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(33, 38, 45, 0.5);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e6edf3;
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #8b949e;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform-origin: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #58a6ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(13, 17, 23, 0.6);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 24px;
    margin: 0;
    color: #c9d1d9;
    line-height: 1.6;
    font-size: 0.95rem;
}


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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-section {
        gap: 12px;
    }
    
    .hero-consultation-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .terminal-mockup {
        max-width: 100%;
    }
    
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .features-section {
        margin-top: -5vh;
        padding: 40px 0;
    }
    
    .faq-section {
        margin-top: -2vh;
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 12px;
    }
    
    .faq-answer p {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 126, 214, 0.05) 0%, rgba(30, 126, 214, 0.02) 100%);
    border-top: 1px solid rgba(48, 54, 61, 0.3);
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
    margin: 60px 0;
}

.consultation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.consultation-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e6edf3;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultation-content p {
    font-size: 1.2rem;
    color: #8b949e;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e7ed6 0%, #1a6bb8 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 126, 214, 0.3);
    border: 1px solid rgba(30, 126, 214, 0.5);
}

.consultation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 126, 214, 0.4);
    background: linear-gradient(135deg, #1a6bb8 0%, #15609f 100%);
}

.consultation-cta svg {
    transition: transform 0.2s ease;
}

.consultation-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .consultation-content h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .consultation-content p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .consultation-cta {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* Footer */
.footer {
    background: rgba(13, 17, 23, 0.95);
    border-top: 1px solid rgba(48, 54, 61, 0.5);
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #e6edf3;
    font-size: 1.1rem;
}

.footer-logo-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #58a6ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
}

.footer-bottom p {
    color: #8b949e;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer {
        padding: 30px 0 15px 0;
        margin-top: 40px;
    }
}