/* ============================================
   BotFake IDE Landing Page Styles
   ============================================ */

/* --- Hero --- */
.ide-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.ide-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(102, 126, 234, 0.15);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.ide-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ide-hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ide-hero .hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ide-hero .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ide-hero .hero-platforms {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.ide-hero .hero-platforms a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.ide-hero .hero-platforms a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* --- Buttons --- */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-download.primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

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

.btn-download.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-download.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* --- IDE Mockup (Window Frame) --- */
.ide-mockup {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(102, 126, 234, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
    background: #1e1e2e;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.ide-mockup-titlebar {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #181825;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.ide-mockup-dots span:nth-child(1) { background: #f38ba8; }
.ide-mockup-dots span:nth-child(2) { background: #f9e2af; }
.ide-mockup-dots span:nth-child(3) { background: #a6e3a1; }

.ide-mockup-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #6c7086;
    font-family: 'Inter', sans-serif;
}

.ide-mockup-body {
    display: flex;
    min-height: 340px;
}

/* Sidebar */
.ide-mockup-sidebar {
    width: 48px;
    background: #181825;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    gap: 16px;
}

.ide-mockup-sidebar i {
    font-size: 18px;
    color: #6c7086;
    transition: color 0.2s;
}

.ide-mockup-sidebar i.active {
    color: var(--primary);
}

/* Sidebar Panel */
.ide-mockup-panel {
    width: 200px;
    background: #1e1e2e;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    font-size: 12px;
    color: #cdd6f4;
}

.ide-mockup-panel-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c7086;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ide-mockup-tree-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: default;
    font-size: 12px;
    color: #cdd6f4;
}

.ide-mockup-tree-item.active {
    background: rgba(102, 126, 234, 0.15);
    color: #fff;
}

.ide-mockup-tree-item i {
    font-size: 12px;
    color: #6c7086;
}

.ide-mockup-tree-item.active i {
    color: var(--primary);
}

/* Editor Area */
.ide-mockup-editor {
    flex: 1;
    padding: 16px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.7;
    color: #cdd6f4;
}

.ide-mockup-editor .line {
    white-space: nowrap;
}

.ide-mockup-editor .line-number {
    display: inline-block;
    width: 30px;
    color: #45475a;
    text-align: right;
    margin-right: 16px;
    user-select: none;
}

.ide-mockup-editor .json-key { color: #89b4fa; }
.ide-mockup-editor .json-string { color: #a6e3a1; }
.ide-mockup-editor .json-number { color: #fab387; }
.ide-mockup-editor .json-bracket { color: #f9e2af; }
.ide-mockup-editor .json-punct { color: #6c7086; }

/* Live Preview Panel */
.ide-mockup-preview {
    width: 280px;
    background: #181825;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}

.ide-mockup-preview-header {
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c7086;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.ide-mockup-preview-header .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a6e3a1;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ide-mockup-preview-screenshot {
    flex: 1;
    margin: 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, #313244 0%, #1e1e2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45475a;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.ide-mockup-preview-screenshot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.02) 20px,
        rgba(255,255,255,0.02) 21px
    );
}

.ide-mockup-preview-screenshot .fake-browser {
    width: 90%;
    height: 80%;
    border-radius: 4px;
    background: #fff;
    position: relative;
}

.ide-mockup-preview-screenshot .fake-browser-bar {
    height: 20px;
    background: #e5e7eb;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 4px;
}

.ide-mockup-preview-screenshot .fake-browser-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
}

.ide-mockup-preview-screenshot .fake-browser-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ide-mockup-preview-screenshot .fake-line {
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
}

.ide-mockup-preview-screenshot .fake-line.short { width: 60%; }
.ide-mockup-preview-screenshot .fake-line.medium { width: 80%; }

.ide-mockup-preview-log {
    padding: 10px 14px;
    font-size: 11px;
    color: #a6adc8;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 120px;
    overflow: hidden;
}

.ide-mockup-preview-log .log-entry {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}

.ide-mockup-preview-log .log-entry .log-ok { color: #a6e3a1; }
.ide-mockup-preview-log .log-entry .log-time { color: #45475a; }

/* --- AI Chat Mockup --- */
.ide-mockup-chat {
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    background: #1e1e2e;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', sans-serif;
}

.ide-mockup-chat-header {
    padding: 12px 16px;
    background: #181825;
    font-size: 13px;
    font-weight: 600;
    color: #cdd6f4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ide-mockup-chat-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 85%;
}

.chat-msg.user {
    background: rgba(102, 126, 234, 0.15);
    color: #cdd6f4;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-msg.assistant {
    background: rgba(255, 255, 255, 0.05);
    color: #a6adc8;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-tool-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(166, 227, 161, 0.1);
    border: 1px solid rgba(166, 227, 161, 0.2);
    font-size: 12px;
    color: #a6e3a1;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 6px;
}

/* --- Platform Downloads --- */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.platform-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(102, 126, 234, 0.05);
}

.platform-card.available {
    border-color: rgba(102, 126, 234, 0.3);
}

.platform-card i.platform-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.platform-card.disabled i.platform-icon {
    color: var(--text-muted);
}

.platform-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.platform-card .platform-arch {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.platform-card .btn-download {
    padding: 10px 24px;
    font-size: 14px;
}

.platform-card .btn-download.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.platform-card .coming-soon {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-ide {
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.feature-card-ide:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.feature-card-ide .feature-icon-ide {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    background: rgba(102, 126, 234, 0.12);
    color: var(--primary);
}

.feature-card-ide h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card-ide p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Feature Showcase (two-column) --- */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-showcase-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-showcase-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-showcase-text .feature-bullets {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-showcase-text .feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-showcase-text .feature-bullets li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead {
    background: rgba(102, 126, 234, 0.1);
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .check {
    color: #a6e3a1;
    font-size: 18px;
}

.comparison-table .cross {
    color: #f38ba8;
    font-size: 18px;
}

.comparison-table .partial {
    color: #f9e2af;
    font-size: 14px;
}

/* --- CTA Section --- */
.ide-cta {
    text-align: center;
    padding: 80px 0;
}

.ide-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ide-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ide-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Section headers --- */
.ide-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ide-section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    background: rgba(102, 126, 234, 0.12);
    color: var(--primary);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.ide-section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ide-section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- VS Code Features List --- */
.vscode-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vscode-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: var(--text-secondary);
}

.vscode-feature-item i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* --- Agent Pipeline (How It Works) --- */
.agent-flow-section {
    overflow: hidden;
}

.agent-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.agent-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 130px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: agentStepReveal 0.5s ease forwards;
}

.agent-step[data-step="1"] { animation-delay: 0.1s; }
.agent-step[data-step="2"] { animation-delay: 0.25s; }
.agent-step[data-step="3"] { animation-delay: 0.4s; }
.agent-step[data-step="4"] { animation-delay: 0.55s; }
.agent-step[data-step="5"] { animation-delay: 0.7s; }
.agent-step[data-step="6"] { animation-delay: 0.85s; }
.agent-step[data-step="7"] { animation-delay: 1.0s; }

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

.agent-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    background: rgba(102, 126, 234, 0.15);
    color: var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-step:hover .agent-step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.agent-step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    opacity: 0.7;
}

.agent-step h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.agent-step p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.agent-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(102, 126, 234, 0.3);
    font-size: 14px;
    padding: 0 4px;
    margin-top: 18px;
    opacity: 0;
    animation: agentArrowReveal 0.3s ease forwards;
}

.agent-step-arrow:nth-child(2) { animation-delay: 0.2s; }
.agent-step-arrow:nth-child(4) { animation-delay: 0.35s; }
.agent-step-arrow:nth-child(6) { animation-delay: 0.5s; }
.agent-step-arrow:nth-child(8) { animation-delay: 0.65s; }
.agent-step-arrow:nth-child(10) { animation-delay: 0.8s; }
.agent-step-arrow:nth-child(12) { animation-delay: 0.95s; }

@keyframes agentArrowReveal {
    to { opacity: 1; }
}

/* --- Agent vs Manual QA Table --- */
.agent-comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.agent-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.agent-comparison-table thead {
    background: rgba(102, 126, 234, 0.1);
}

.agent-comparison-table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}

.agent-comparison-table td {
    padding: 14px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 14px;
}

.agent-comparison-table tr:hover td {
    background: rgba(102, 126, 234, 0.04);
}

.agent-comparison-table .agent-value {
    color: #a6e3a1;
    font-weight: 500;
}

.agent-comparison-table .manual-value {
    color: #f38ba8;
}

/* --- Section divider --- */
.ide-section {
    padding: 80px 0;
}

.ide-section-alt {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

/* --- Mini mockup (for index.html CTA) --- */
.ide-mini-mockup {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    background: #1e1e2e;
}

.ide-mini-mockup .ide-mockup-titlebar {
    padding: 8px 12px;
}

.ide-mini-mockup .ide-mockup-dots span {
    width: 10px;
    height: 10px;
}

.ide-mini-mockup .ide-mockup-body {
    min-height: 180px;
}

.ide-mini-mockup .ide-mockup-sidebar {
    width: 36px;
    padding-top: 8px;
    gap: 12px;
}

.ide-mini-mockup .ide-mockup-sidebar i {
    font-size: 14px;
}

.ide-mini-mockup .ide-mockup-editor {
    font-size: 11px;
    padding: 10px;
    line-height: 1.6;
}

.ide-mini-mockup .ide-mockup-editor .line-number {
    width: 20px;
    margin-right: 10px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ide-hero h1 {
        font-size: 42px;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-showcase.reverse {
        direction: ltr;
    }

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

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

    .ide-mockup-preview {
        display: none;
    }

    .ide-mockup-panel {
        display: none;
    }

    .agent-pipeline {
        gap: 8px 0;
    }

    .agent-step {
        width: 110px;
    }

    .agent-step-arrow {
        font-size: 12px;
        padding: 0 2px;
    }
}

@media (max-width: 768px) {
    .ide-hero {
        padding: 120px 0 60px;
    }

    .ide-hero h1 {
        font-size: 32px;
    }

    .ide-hero .hero-subtitle {
        font-size: 16px;
    }

    .platform-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .vscode-features {
        grid-template-columns: 1fr;
    }

    .ide-section-header h2 {
        font-size: 28px;
    }

    .ide-cta h2 {
        font-size: 28px;
    }

    .feature-showcase-text h2 {
        font-size: 26px;
    }

    .ide-mockup-body {
        min-height: 240px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

    .agent-pipeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .agent-step {
        width: 100%;
        max-width: 280px;
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto auto;
        text-align: left;
        gap: 0 14px;
        padding: 10px 0;
    }

    .agent-step-icon {
        grid-row: 1 / -1;
        align-self: center;
        flex-shrink: 0;
    }

    .agent-step-num {
        grid-column: 2;
    }

    .agent-step h4 {
        grid-column: 2;
    }

    .agent-step p {
        grid-column: 2;
    }

    .agent-step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 4px 0;
    }

    .agent-comparison-table th,
    .agent-comparison-table td {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ide-hero h1 {
        font-size: 26px;
    }

    .ide-hero .hero-cta {
        flex-direction: column;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }
}
