/* ==========================================================================
   AI Sunucu Page — Full Redesign
   Dark hero, terminal mockup, package cards, tabs, comparison
   ========================================================================== */


/* --- Keyframes --- */

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

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

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


/* ==========================================================================
   HERO — Light Theme + Terminal
   ========================================================================== */

.ai-hero {
    position: relative;
    padding: 3.5rem 0 3rem;
    background: #f9fafb;
    overflow: hidden;
}

.ai-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ai-hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

/* --- Hero Content --- */

.ai-hero-content {
    flex: 1;
    min-width: 300px;
}

.ai-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.75rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ai-hero-content h1 span {
    color: #ea580c;
}

.ai-hero-tagline {
    font-size: 1.15rem;
    color: #4b5563;
    font-weight: 600;
    margin: 0 0 1rem;
    font-style: italic;
}

.ai-hero-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 540px;
}

/* Trust Chips */
.ai-hero-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    color: #374151;
    font-size: 12px;
    font-weight: 500;
}

.ai-chip i {
    color: #f97316;
    font-size: 12px;
}

/* Hero CTA */
.ai-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ai-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    color: #fff;
    text-decoration: none;
}

/* Hero Review */
.ai-hero-review {
    font-size: 13px;
    color: #9ca3af;
    margin: 1rem 0 0;
}

.ai-hero-review i {
    color: #f1c40f;
    margin-right: 2px;
}


/* --- Terminal Mockup --- */

.ai-hero-terminal {
    flex: 0 0 420px;
    animation: floatUp 4s ease-in-out infinite;
}

.terminal-window {
    background: #1e1e2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #2d2d3f;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #28ca42; }

.terminal-title {
    margin-left: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.terminal-body {
    padding: 16px 18px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 12.5px;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 2px;
}

.terminal-prompt {
    color: #a6e3a1;
    margin-right: 8px;
}

.terminal-cmd {
    color: #cdd6f4;
}

.terminal-output {
    color: rgba(255,255,255,0.5);
    padding-left: 18px;
}

.terminal-success {
    color: #a6e3a1;
    margin-right: 6px;
}

.terminal-json {
    color: #89b4fa;
    font-size: 11.5px;
}

.terminal-cursor {
    color: #f97316;
    animation: blink 1s infinite;
}


/* --- Hero Responsive --- */

@media (max-width: 1200px) {
    .ai-hero-terminal {
        flex: 0 0 360px;
    }
}

@media (max-width: 991px) {
    .ai-hero {
        padding: 3rem 0 2.5rem;
    }
    .ai-hero-layout {
        text-align: center;
        justify-content: center;
    }
    .ai-hero-content {
        min-width: 100%;
    }
    .ai-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .ai-hero-chips {
        justify-content: center;
    }
    .ai-hero-terminal {
        display: none;
    }
}

@media (max-width: 576px) {
    .ai-hero {
        padding: 2.5rem 0 2rem;
    }
    .ai-hero-content h1 {
        font-size: 1.6rem;
    }
    .ai-hero-tagline {
        font-size: 1rem;
    }
    .ai-hero-chips {
        gap: 0.4rem;
    }
    .ai-chip {
        font-size: 11px;
        padding: 5px 10px;
    }
}


/* ==========================================================================
   SECTION HEADINGS — Shared
   ========================================================================== */

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.section-heading p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .section-heading h2 { font-size: 22px; }
    .section-heading p   { font-size: 14px; }
}


/* ==========================================================================
   BYOK SECTION — "AI Sunucu Nedir?"
   ========================================================================== */

.ai-byok-section {
    padding: 64px 0;
    background: #ffffff;
}

.ai-byok-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 16px;
}

.ai-byok-content > p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 28px;
}

.ai-byok-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-byok-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.25s;
}

.ai-byok-step:hover {
    background: #fff7ed;
    border-color: #fed7aa;
}

.ai-byok-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.ai-byok-step strong {
    display: block;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 2px;
}

.ai-byok-step span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* BYOK Visual / Flow Diagram */
.ai-byok-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 20px;
}

.byok-flow {
    display: flex;
    align-items: center;
    gap: 16px;
}

.byok-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.byok-flow-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #6b7280;
    transition: all 0.3s;
}

.byok-flow-item:hover .byok-flow-icon {
    border-color: #f97316;
    color: #f97316;
    transform: scale(1.08);
}

.byok-flow-server .byok-flow-icon {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-color: #f97316;
    color: #ea580c;
}

.byok-flow-item > span {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.byok-flow-arrow {
    color: #d1d5db;
    font-size: 20px;
}

.byok-models {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.byok-model-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .ai-byok-section { padding: 48px 0; }
    .ai-byok-content h2 { font-size: 22px; }
    .byok-flow {
        gap: 10px;
    }
    .byok-flow-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    .byok-flow-arrow {
        font-size: 16px;
    }
}


/* ==========================================================================
   DEFINITION BLOCK — LLM Citation Friendly
   ========================================================================== */

.ai-definition-section {
    padding: 24px 0 0;
    background: #f9fafb;
}

.ai-definition-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    padding: 20px 24px;
    background: #ffffff;
    border-left: 4px solid #f97316;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.ai-definition-text strong {
    color: #1f2937;
}

.ai-definition-text a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.ai-definition-text a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .ai-definition-text {
        font-size: 14px;
        padding: 16px 18px;
    }
}


/* ==========================================================================
   TRUST SIGNAL BAR
   ========================================================================== */

.ai-trust-bar {
    padding: 20px 0;
    background: #f9fafb;
}

.ai-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ai-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    transition: all 0.25s;
}

.ai-trust-item:hover {
    border-color: #fed7aa;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.ai-trust-item > i {
    font-size: 22px;
    color: #f97316;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.ai-trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.ai-trust-item span {
    display: block;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .ai-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ai-trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .ai-trust-item {
        padding: 12px 14px;
    }
}


/* ==========================================================================
   AI SUNUCU İÇİNDE NELER VAR? — 6 Card Product Detail Grid
   ========================================================================== */

.ai-whats-inside {
    padding: 64px 0;
    background: #f9fafb;
}

.ai-inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ai-inside-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ai-inside-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.ai-inside-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ea580c;
    flex-shrink: 0;
}

.ai-inside-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px;
    line-height: 1.3;
}

.ai-inside-body p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 10px;
}

.ai-inside-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ai-inside-tags span {
    padding: 3px 8px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
}

@media (max-width: 992px) {
    .ai-whats-inside { padding: 48px 0; }
    .ai-inside-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ai-inside-grid {
        grid-template-columns: 1fr;
    }
    .ai-inside-card {
        padding: 18px;
    }
}


/* ==========================================================================
   KİMLER İÇİN? — 4 Card Audience Grid
   ========================================================================== */

.ai-audience-section {
    padding: 64px 0;
    background: #ffffff;
}

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

.ai-audience-card {
    padding: 28px 22px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-audience-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.ai-audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: #ea580c;
    transition: transform 0.3s;
}

.ai-audience-card:hover .ai-audience-icon {
    transform: scale(1.1);
}

.ai-audience-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.ai-audience-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 14px;
}

.ai-audience-benefit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
}

.ai-audience-benefit i {
    font-size: 12px;
}

@media (max-width: 992px) {
    .ai-audience-section { padding: 48px 0; }
    .ai-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ai-audience-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .ai-audience-card {
        padding: 22px 18px;
    }
}


/* ==========================================================================
   PACKAGE CARDS — 3 AI Packages
   ========================================================================== */

.ai-packages-section {
    padding: 64px 0;
    background: #ffffff;
}

.ai-packages-section .section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.ai-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.ai-pkg-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.ai-pkg-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.ai-pkg-card.is-best {
    border: 3px solid #f97316;
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 12px 40px rgba(249,115,22,0.18);
}

.ai-pkg-card.is-best:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 16px 48px rgba(249,115,22,0.25);
}

.ai-pkg-topbar {
    height: 4px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.ai-pkg-card.is-best .ai-pkg-topbar {
    height: 6px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

/* Header */
.ai-pkg-header {
    padding: 18px 24px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-pkg-card.is-best .ai-pkg-header {
    padding: 34px 24px 14px;
}

.ai-pkg-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.ai-pkg-name {
    font-size: 19px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.ai-pkg-tagline {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* Price */
.ai-pkg-price {
    padding: 12px 24px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.ai-pkg-price-old {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.ai-pkg-price-current {
    font-size: 28px;
    font-weight: 800;
    color: #ea580c;
    line-height: 1.2;
}

.ai-pkg-price-current small {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.ai-pkg-contact {
    font-size: 15px;
    font-weight: 700;
    color: #ea580c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ai-pkg-contact i {
    font-size: 14px;
    color: #f97316;
}

/* Features */
.ai-pkg-features {
    list-style: none;
    padding: 16px 24px;
    margin: 0;
    flex-grow: 1;
}

.ai-pkg-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 13.5px;
    color: #374151;
    border-bottom: 1px solid #f9fafb;
}

.ai-pkg-features li:last-child {
    border-bottom: none;
}

.ai-pkg-features li i {
    color: #16a34a;
    font-size: 13px;
    flex-shrink: 0;
}

/* More features link */
.ai-pkg-more-features {
    display: block;
    text-align: center;
    padding: 8px 16px;
    margin: 0 24px;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    color: #6b7280;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.ai-pkg-more-features:hover {
    border-color: #f97316;
    color: #f97316;
    text-decoration: none;
}

/* CTA Button */
.ai-pkg-btn {
    display: block;
    margin: 16px 24px 24px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.ai-pkg-btn.btn-warning {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
}

.ai-pkg-btn.btn-warning:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(249,115,22,0.35);
}

.ai-pkg-btn.btn-success {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
}

.ai-pkg-btn.btn-success:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(22,163,74,0.3);
}

/* Meta info */
.ai-meta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.ai-meta-info > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #4b5563;
}

.ai-meta-info i {
    color: #f97316;
}

/* Package responsive */
@media (max-width: 1199px) {
    .ai-pkg-card.is-best {
        transform: translateY(-8px) scale(1.02);
    }
    .ai-pkg-card.is-best:hover {
        transform: translateY(-12px) scale(1.02);
    }
    .ai-pkg-card.is-best .ai-pkg-header {
        padding: 32px 20px 12px;
    }
}

@media (max-width: 992px) {
    .ai-pkg-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .ai-pkg-card.is-best {
        transform: none;
    }
    .ai-pkg-card.is-best:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 576px) {
    .ai-packages-section { padding: 48px 0; }
    .ai-pkg-header { padding: 16px 18px 10px; }
    .ai-pkg-card.is-best .ai-pkg-header { padding: 32px 18px 12px; }
    .ai-pkg-price { padding: 10px 18px 14px; }
    .ai-pkg-features { padding: 14px 18px; }
    .ai-pkg-btn { margin: 14px 18px 20px; }
    .ai-pkg-more-features { margin: 0 18px; }
}


/* ==========================================================================
   AI ARAÇ KURULUM REHBERİ — Banner Block
   ========================================================================== */

.ai-guide-banner {
    padding: 0;
    background: #ffffff;
}

.ai-guide-card {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d3f 100%);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.ai-guide-card::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ai-guide-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.ai-guide-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.ai-guide-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
}

.ai-guide-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

.ai-guide-tools {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex-shrink: 0;
    max-width: 280px;
    justify-content: center;
}

.ai-guide-tools span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}

.ai-guide-tools span i {
    font-size: 9px;
    color: #a6e3a1;
}

.ai-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.ai-guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .ai-guide-card {
        flex-wrap: wrap;
        gap: 20px;
    }
    .ai-guide-tools {
        max-width: none;
        flex: 1 1 100%;
        order: 3;
    }
    .ai-guide-btn {
        order: 2;
    }
}

@media (max-width: 768px) {
    .ai-guide-card {
        flex-direction: column;
        padding: 24px 20px;
        text-align: center;
        margin-top: -12px;
    }
    .ai-guide-left {
        flex-direction: column;
        gap: 12px;
    }
    .ai-guide-tools {
        justify-content: center;
        order: unset;
    }
    .ai-guide-btn {
        width: 100%;
        justify-content: center;
        order: unset;
    }
}


/* ==========================================================================
   PROCESS SECTION — "Nasıl Çalışır?" (3 steps)
   ========================================================================== */

.ai-process-section {
    padding: 64px 0;
    background: #f9fafb;
}

.ai-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

/* Connecting line */
.ai-process-steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, #fed7aa, #f97316, #fed7aa);
    opacity: 0.35;
    z-index: 0;
}

.ai-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ai-process-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: #f97316;
    background: #fff7ed;
    border: 2px solid #fed7aa;
    transition: all 0.35s ease;
}

.ai-process-step:hover .ai-process-num {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(249,115,22,0.28);
}

.ai-process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px;
}

.ai-process-step p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 220px;
}

@media (max-width: 768px) {
    .ai-process-section { padding: 48px 0; }
    .ai-process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ai-process-steps::before { display: none; }
    .ai-process-num {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}


/* ==========================================================================
   TAB SECTION — Developer Experience
   ========================================================================== */

.ai-tabs-section {
    padding: 64px 0;
    background: #ffffff;
}

/* SaaS Tab Navigation */
.ai-tabs-section .saas-tab-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #f3f4f6;
    border-radius: 14px;
    margin-bottom: 36px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ai-tabs-section .saas-tab-nav::-webkit-scrollbar {
    display: none;
}

.ai-tabs-section .saas-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.ai-tabs-section .saas-tab-btn i {
    font-size: 15px;
}

.ai-tabs-section .saas-tab-btn:hover {
    color: #4b5563;
    background: rgba(255,255,255,0.6);
}

.ai-tabs-section .saas-tab-btn.active {
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
}

.ai-tabs-section .saas-tab-btn.active i {
    color: #f97316;
}

/* Tab Content text styling */
.ai-tabs-section .saas-tab-content h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #f97316 !important;
    margin: 0 0 12px !important;
}

.ai-tabs-section .saas-tab-content p {
    font-size: 14px !important;
    color: #4b5563 !important;
    line-height: 1.7 !important;
    margin: 0 0 16px !important;
    font-weight: 400 !important;
}

@media (max-width: 768px) {
    .ai-tabs-section .saas-tab-nav {
        gap: 6px;
        padding: 4px;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    .ai-tabs-section .saas-tab-btn {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
    }
    .ai-tabs-section .saas-tab-btn i {
        display: none;
    }
}

.ai-tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-tab-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}

.ai-tab-list li i {
    color: #16a34a;
    font-size: 13px;
    flex-shrink: 0;
}

/* Tab Visuals / Mockups */
.ai-tab-visual {
    padding: 16px;
}

.ai-tab-mockup {
    background: #1e1e2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.06);
}

/* IDE Mockup */
.ide-mockup {
    display: flex;
    min-height: 280px;
}

.ide-sidebar {
    width: 140px;
    background: #252536;
    padding: 14px 10px;
    border-right: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.ide-file {
    padding: 6px 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: 'JetBrains Mono', monospace;
    border-radius: 4px;
    margin-bottom: 2px;
    cursor: default;
}

.ide-file.active {
    background: rgba(249,115,22,0.15);
    color: #f97316;
}

.ide-file i {
    margin-right: 6px;
    font-size: 10px;
}

.ide-editor {
    padding: 14px 16px;
    flex: 1;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 12px;
    line-height: 1.8;
}

.ide-line {
    color: #cdd6f4;
    white-space: nowrap;
}

.ide-keyword { color: #cba6f7; }
.ide-string  { color: #a6e3a1; }
.ide-comment { color: #6c7086; font-style: italic; }
.ide-func    { color: #89b4fa; }
.ide-num     { color: #fab387; }

/* Git Mockup */
.git-mockup {
    padding: 18px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    line-height: 2;
}

.git-line {
    color: #cdd6f4;
}

.git-branch {
    background: #a6e3a1;
    color: #1e1e2e;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 8px;
}

.git-hash {
    color: #89b4fa;
    margin-right: 8px;
}

.git-msg {
    color: rgba(255,255,255,0.7);
}

.git-action {
    color: #f97316;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.git-action i { margin-right: 6px; }

.git-status {
    color: #a6e3a1;
    margin-top: 8px;
    font-weight: 600;
}

.git-status i { margin-right: 6px; }

/* Terminal Mini Mockup */
.terminal-mini {
    padding: 18px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    line-height: 1.9;
}

.tmini-line {
    color: #cdd6f4;
    margin-bottom: 2px;
}

.tmini-prompt {
    color: #a6e3a1;
    margin-right: 8px;
}

.tmini-out {
    color: rgba(255,255,255,0.5);
    padding-left: 18px;
}

.tmini-ok {
    color: #a6e3a1;
    margin-right: 6px;
}

.tmini-cursor {
    color: #f97316;
    animation: blink 1s infinite;
}

/* Monitor Mockup */
.monitor-mockup {
    padding: 20px;
}

.monitor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.monitor-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 14px;
}

.monitor-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.monitor-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
}

.monitor-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.monitor-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s ease;
}

@media (max-width: 768px) {
    .ai-tabs-section { padding: 48px 0; }
    .ai-tab-visual { padding: 16px 0; }
    .ide-mockup {
        flex-direction: column;
        min-height: auto;
    }
    .ide-sidebar {
        width: 100%;
        display: flex;
        gap: 4px;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 8px;
    }
    .ide-file { white-space: nowrap; }
}


/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.ai-compare-section {
    padding: 64px 0;
    background: #f9fafb;
}

#ai-compare-table .cmp-vs-header,
#ai-compare-table .cmp-vs-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: center;
}

#ai-compare-table .cmp-vs-header {
    background: #f3f4f6;
    border-radius: 12px;
    margin-bottom: 8px;
}

#ai-compare-table .cmp-vs-cell {
    padding: 14px 16px;
    font-size: 14px;
    color: #374151;
}

#ai-compare-table .cmp-vs-feature-head,
#ai-compare-table .cmp-vs-col-head {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
}

#ai-compare-table .cmp-vs-feature {
    font-weight: 600;
    color: #1f2937;
}

#ai-compare-table .cmp-vs-feature i {
    color: #f97316;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

#ai-compare-table .cmp-vs-row {
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

#ai-compare-table .cmp-vs-row:hover {
    background: #fefce8;
}

#ai-compare-table .cmp-vs-row:last-child {
    border-bottom: none;
}

#ai-compare-table .recommended-col {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    font-weight: 600;
    color: #ea580c;
}

#ai-compare-table .cmp-vs-header .recommended-col {
    position: relative;
}

@media (max-width: 768px) {
    .ai-compare-section { padding: 48px 0; }

    #ai-compare-table .cmp-vs-header { display: none; }

    #ai-compare-table .cmp-vs-row {
        display: block;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 12px;
    }

    #ai-compare-table .cmp-vs-row:hover {
        background: #fff;
    }

    #ai-compare-table .cmp-vs-feature {
        font-size: 16px;
        font-weight: 700;
        padding: 0 0 12px;
        margin-bottom: 8px;
        border-bottom: 1px solid #e5e7eb;
    }

    #ai-compare-table .cmp-vs-cell:not(.cmp-vs-feature) {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
        background: transparent;
    }

    #ai-compare-table .cmp-vs-cell:not(.cmp-vs-feature)::before {
        content: attr(data-label);
        font-weight: 500;
        color: #6b7280;
    }

    #ai-compare-table .recommended-col {
        background: transparent;
    }

    #ai-compare-table .recommended-col::before {
        color: #f97316;
    }

    /* Mobile CTA row */
    #ai-compare-table .cmp-vs-cta-row {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }
    #ai-compare-table .cmp-vs-cta-row .cmp-vs-cell {
        padding: 4px 0;
    }
    #ai-compare-table .cmp-vs-cta-row .cmp-vs-cell::before {
        display: none;
    }
    #ai-compare-table .cmp-vs-cta-row .cmp-vs-feature {
        display: none;
    }
    .cmp-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* Comparison CTA Buttons */
#ai-compare-table .cmp-vs-cta-row {
    border-bottom: none;
}

#ai-compare-table .cmp-vs-cta-row:hover {
    background: transparent;
}

.cmp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
}

.cmp-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22,163,74,0.3);
    color: #fff;
    text-decoration: none;
}

.cmp-cta-btn.cmp-cta-best {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 12px 24px;
    font-size: 14px;
}

.cmp-cta-btn.cmp-cta-best:hover {
    box-shadow: 0 6px 16px rgba(249,115,22,0.35);
}


/* ==========================================================================
   USAGE SCENARIOS — 3 Cards
   ========================================================================== */

.ai-scenarios-section {
    padding: 64px 0;
    background: #ffffff;
}

.ai-scenario-card {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.ai-scenario-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.ai-scenario-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.ai-scenario-card:hover .ai-scenario-icon {
    transform: scale(1.1);
}

.ai-scenario-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.ai-scenario-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 16px;
}

.ai-scenario-tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-scenario-tags span {
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
}


/* ==========================================================================
   CTA SECTION — FAQ Üstü
   ========================================================================== */

.cta-section {
    padding: 48px 0;
    background: #f9fafb;
}

.cta-card {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0d3a72 100%);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-card-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
}

.cta-card-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 480px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    color: #fff;
    text-decoration: none;
}

.cta-card-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cta-card-visual img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.25));
}

@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
        gap: 20px;
    }
    .cta-card-content h3 { font-size: 20px; }
    .cta-card-content p { max-width: none; }
    .cta-card-visual { display: none; }
}


/* ==========================================================================
   STICKY CTA BAR (Desktop only, scroll-up)
   ========================================================================== */

.ai-sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 8px 0;
    z-index: 999;
    transition: bottom 0.3s ease;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

.ai-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ai-sticky-text {
    color: #4b5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-sticky-text i {
    color: #f97316;
}

.ai-sticky-text strong {
    color: #1f2937;
}

.ai-sticky-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.ai-sticky-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249,115,22,0.35);
}

@media (max-width: 991px) {
    .ai-sticky-bar {
        display: none !important;
    }
}
