* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Glass Theme Colors */
    --clr-primary: #06b6d4;
    /* Cyan */
    --clr-secondary: #8b5cf6;
    /* Purple */
    --clr-accent: #ec4899;
    /* Pink */
    --clr-success: #10b981;
    --clr-warning: #f59e0b;
    --clr-danger: #ef4444;

    /* Backgrounds */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(15, 23, 42, 0.6);
    --bg-glass-strong: rgba(15, 23, 42, 0.85);

    /* Borders */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(6, 182, 212, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --gradient-hover: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    --gradient-glow: radial-gradient(circle at top center, rgba(6, 182, 212, 0.15), transparent 70%);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(6, 182, 212, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(6, 182, 212, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08), transparent 25%);
    background-attachment: fixed;
    color: #f8fafc;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Buttons */
.ai-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-free {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    border: none;
}

.btn-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.btn-pro {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-pro:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.2);
}

/* Hero */
.ai-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.ai-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 75, 145, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

/* Glass Utilities */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
}

/* Typography Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--border-light);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--clr-primary);
}

/* Animations */
@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.ai-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #00d4ff;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.ai-badge i {
    color: #00d4ff;
}

.ai-hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.ai-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

.ai-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.ai-stats>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-stats strong {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 8px;
}

.ai-stats span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.ai-orb {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.ai-rings {
    position: absolute;
    inset: -20%;
    border: 2px solid rgba(120, 119, 198, 0.2);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tools Section */
.ai-tools {
    padding: 100px 20px;
    position: relative;
}

.ai-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.ai-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #a855f7;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
}

.ai-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-tool-item {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ai-tool-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-tool-item:hover::before {
    opacity: 1;
}

.tool-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, currentColor 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    color: rgba(0, 212, 255, 0.3);
}

.ai-tool-item:hover .tool-glow {
    opacity: 1;
}

.ai-tool-item:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.tool-content {
    position: relative;
    z-index: 1;
}

.tool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tool-header i {
    font-size: 48px;
    transition: transform 0.5s;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.ai-tool-item:hover .tool-header i {
    transform: scale(1.2) rotate(-10deg);
}

.tool-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.tool-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tool-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.tool-hover-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}

.ai-tool-item:hover .tool-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.tool-hover-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.tool-hover-info i {
    font-size: 20px;
    transition: transform 0.3s;
}

.ai-tool-item:hover .tool-hover-info i {
    transform: translateX(5px);
}

/* Coming Soon Tool */
.ai-tool-item.coming-soon-tool {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.coming-soon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.coming-soon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: pulse-coming-soon 2s ease-in-out infinite;
}

.coming-soon-label i {
    font-size: 14px;
    animation: tick-tock 1s ease-in-out infinite;
}

@keyframes pulse-coming-soon {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }
}

@keyframes tick-tock {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Tech Stack */
.ai-tech {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.05) 0%, rgba(255, 75, 145, 0.05) 100%);
    position: relative;
}

.ai-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ai-tech-container,
.ai-process-container,
.ai-usecases-container,
.ai-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ai-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tech-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Process */
.ai-process {
    padding: 100px 20px;
}

.ai-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Guide Page Fix */
.guide-page {
    padding-top: 120px;
    min-height: 100vh;
}

/* Pricing Grid Base Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-grid.pricing-two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.price-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.price-amount span {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.price-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 24px;
}

.price-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.price-features li i {
    color: #10b981;
}

.price-features li.disabled {
    opacity: 0.5;
}

.price-features li.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

.price-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.price-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.pricing-card:hover .price-glow {
    opacity: 1;
}

/* Pricing Updates */
.pricing-card[data-plan="free"] .price-glow {
    color: rgba(0, 212, 255, 0.3);
}

.pricing-card[data-plan="pro"] .price-glow {
    color: rgba(168, 85, 247, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00d4ff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border-color: #00d4ff;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.pricing-card.pro {
    border-color: #a855f7;
}

.pricing-card.premium,
.pricing-card[data-plan="premium"] {
    border-color: rgba(245, 158, 11, 0.35);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.price-badge.pro-badge {
    background: linear-gradient(135deg, #a855f7, #d946ef);
}

.pricing-card[data-plan="free"] .price-icon i {
    color: #00d4ff;
}

.pricing-card[data-plan="pro"] .price-icon i {
    color: #a855f7;
}

.pricing-card[data-plan="premium"] .price-icon i {
    color: #f59e0b;
}

.price-btn.primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.price-btn.primary:hover {
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.price-btn.pro-btn {
    background: linear-gradient(135deg, #a855f7, #d946ef);
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.price-btn.pro-btn:hover {
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

.price-btn.premium-btn {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.price-btn.premium-btn:hover {
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
}

/* Comparison Section */
.ai-comparison {
    padding: 100px 20px;
    position: relative;
}

.ai-comparison-container {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.comparison-wrapper.comparison-two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
}

.comparison-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, currentColor 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.comparison-card[data-plan="guest"] .comp-glow {
    color: rgba(156, 163, 175, 0.3);
}

.comparison-card[data-plan="free"] .comp-glow {
    color: rgba(102, 126, 234, 0.3);
}

.comparison-card[data-plan="pro"] .comp-glow {
    color: rgba(240, 147, 251, 0.3);
}

.comparison-card:hover .comp-glow {
    opacity: 1;
}

.comparison-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.comparison-card.featured {
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.comparison-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.comparison-card.pro {
    border-color: rgba(240, 147, 251, 0.4);
}

.comp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.comp-badge.pro-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.comp-content {
    position: relative;
    z-index: 1;
}

.comp-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-header i {
    font-size: 56px;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.5s;
}

.comparison-card[data-plan="guest"] .comp-header i {
    color: #9ca3af;
}

.comparison-card[data-plan="free"] .comp-header i {
    color: #00d4ff;
}

.comparison-card[data-plan="pro"] .comp-header i {
    color: #f093fb;
}

.comparison-card:hover .comp-header i {
    transform: scale(1.15) rotate(-5deg);
}

.comp-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.comp-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.comp-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.comp-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.comp-feature.disabled {
    opacity: 0.3;
}

.comp-feature i {
    font-size: 20px;
    flex-shrink: 0;
}

.comparison-card[data-plan="guest"] .comp-feature i {
    color: #9ca3af;
}

.comparison-card[data-plan="free"] .comp-feature i {
    color: #00d4ff;
}

.comparison-card[data-plan="pro"] .comp-feature i {
    color: #f093fb;
}

.comp-feature span {
    flex: 1;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.comp-feature strong {
    font-size: 16px;
    font-weight: 700;
    color: white;
    min-width: 60px;
    text-align: right;
}

/* FAQ */
.ai-faq {
    padding: 100px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: #a855f7;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .ai-hero-visual {
        display: none;
    }
}

@media (max-width: 992px) {

    .pricing-grid,
    .pricing-grid.pricing-two-col,
    .comparison-wrapper,
    .comparison-wrapper.comparison-two-col {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .ai-hero {
        padding: 100px 20px 60px;
    }

    .ai-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 16px;
    }

    /* Trust badges mobil */
    .trust-badges {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    /* Touch targets minimum 44x44px */
    button,
    a.btn-hero,
    .price-btn,
    .action-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Form inputs mobil */
    input,
    textarea,
    select {
        font-size: 16px !important;
        min-height: 44px;
    }

    .pricing-card,
    .comparison-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 36px;
    }

    .ai-showcase {
        grid-template-columns: 1fr;
    }

    .ai-stats {
        gap: 40px;
    }

    .ai-steps {
        flex-direction: column;
    }

    .step-line {
        width: 2px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .ai-showcase {
        grid-template-columns: 1fr;
    }

    .ai-hero h1 {
        font-size: 36px;
    }

    .ai-hero p {
        font-size: 16px;
    }
}

/* Logged In User Styles */
body.logged-in .ai-tech,
body.logged-in .ai-process,
body.logged-in .ai-usecases,
body.logged-in .ai-comparison,
body.logged-in .ai-faq {
    display: none;
}

/* Hide pricing for Pro users */
body.logged-in.pro-user .ai-pricing {
    display: none;
}

/* Show only Pro card for Free users */
body.logged-in.free-user .pricing-card[data-plan="free"] {
    display: none;
}

body.logged-in.free-user .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
}

@media (max-width: 768px) {
    .user-menu-dropdown {
        right: -10px;
        min-width: 200px;
    }
}

/* Recent Activity Section */
.recent-activity {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.activity-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.activity-container:hover {
    border-color: rgba(120, 119, 198, 0.3);
    box-shadow: 0 10px 40px rgba(120, 119, 198, 0.1);
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-header h2 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.activity-header h2 i {
    color: #a855f7;
}

.activity-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 8px;
    color: #a855f7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.activity-view-all:hover {
    background: rgba(120, 119, 198, 0.2);
    transform: translateX(4px);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.activity-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.activity-icon.purple {
    background: linear-gradient(135deg, #a855f7, #d946ef);
    color: white;
}

.activity-icon.orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
}

.activity-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.activity-icon.cyan {
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
    color: white;
}

.activity-icon.blue {
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
    color: white;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.activity-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.activity-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.activity-loading {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.activity-loading i {
    font-size: 32px;
    margin-bottom: 12px;
    color: #a855f7;
}

.activity-empty {
    text-align: center;
    padding: 60px 20px;
}

.activity-empty i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.activity-empty p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.activity-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.activity-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.4);
}

@media (max-width: 768px) {
    .activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .activity-time {
        align-self: flex-end;
    }
}

body.logged-in .ai-hero {
    min-height: 60vh;
    padding: 140px 20px 60px;
}

body.logged-in .ai-stats,
body.logged-in .ai-badge {
    display: none;
}

/* User Dashboard Widget */
.user-dashboard {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(120, 119, 198, 0.4);
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.2);
}

.dashboard-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dashboard-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.dashboard-card-icon.purple {
    background: linear-gradient(135deg, #a855f7, #a855f7);
}

.dashboard-card-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.dashboard-card-icon.orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.dashboard-card-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.dashboard-card-value {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.dashboard-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.user-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.user-welcome h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.user-welcome p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.user-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

.user-plan-badge.pro {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.user-plan-badge i {
    font-size: 16px;
}

/* User Menu Dropdown */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.user-menu-trigger:hover {
    background: rgba(102, 126, 234, 0.25);
}

.user-menu-trigger i.fa-user-circle {
    font-size: 18px;
}

.user-menu-trigger i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s;
}

.user-menu.active .user-menu-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: rgba(20, 20, 30, 0.98);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.user-menu.active .user-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.user-menu-name {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.user-menu-email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.user-menu-plan {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.user-menu-plan.pro {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.user-menu-item:hover {
    background: rgba(102, 126, 234, 0.15);
    color: white;
}

.user-menu-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.user-menu-item.logout {
    color: #ef4444;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
}

.user-menu-item.logout:hover {
    background: rgba(239, 68, 68, 0.15);
}

/* Guide Pages */
.guide-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(255, 75, 145, 0.1) 100%);
}

.guide-container {
    max-width: 900px;
    margin: 0 auto;
}

.guide-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.guide-back:hover {
    color: #00d4ff;
}

.guide-header {
    text-align: center;
}

.guide-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}

.guide-icon.purple {
    background: linear-gradient(135deg, #a855f7, #d946ef);
}

.guide-icon.pink {
    background: linear-gradient(135deg, #ff4b91, #ff6b9d);
}

.guide-icon.blue {
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
}

.guide-icon.orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.guide-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.guide-icon.cyan {
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
}

.guide-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.guide-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.guide-content {
    padding: 80px 20px;
}

.guide-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.guide-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-section h2 i {
    color: #00d4ff;
}

.guide-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 16px;
}

.feature-list {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item i {
    font-size: 32px;
    color: #a855f7;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.steps-guide {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.step-guide {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.tip-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
}

.tip-card i {
    color: #00d4ff;
    font-size: 20px;
}

.tip-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.guide-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.guide-faq-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.guide-faq-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.guide-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.guide-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.guide-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Guides Section on Main Page */
.ai-guides {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 75, 145, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    position: relative;
}

.ai-guides::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 75, 145, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ai-guides-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.guide-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 75, 145, 0.4);
    background: linear-gradient(135deg, rgba(255, 75, 145, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    box-shadow: 0 10px 40px rgba(255, 75, 145, 0.2);
}

.guide-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.guide-card-icon.purple {
    background: linear-gradient(135deg, #a855f7, #d946ef);
}

.guide-card-icon.pink {
    background: linear-gradient(135deg, #ff4b91, #ff6b9d);
}

.guide-card-icon.blue {
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
}

.guide-card-icon.orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.guide-card-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.guide-card-icon.cyan {
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
}

.guide-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.guide-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s;
}

.guide-card:hover .guide-link {
    gap: 12px;
}

.guides-cta {
    text-align: center;
    margin-top: 50px;
}

.guides-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.guides-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.testimonial-avatar.blue {
    background: linear-gradient(135deg, #00d4ff, #a855f7);
}

.testimonial-avatar.purple {
    background: linear-gradient(135deg, #a855f7, #d946ef);
}

.testimonial-avatar.cyan {
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
}

.trust-badge.ssl {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.trust-badge.kvkk {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.trust-badge.guarantee {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.trust-badge i {
    font-size: 14px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.example-card {
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
}

.example-card h4 {
    color: #00d4ff;
    margin-bottom: 8px;
}

/* SmartWriter & Unique Tool Styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.feature-card h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card h4 i {
    color: #00d4ff;
    font-size: 24px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.example-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.example-box::before {
    content: 'Örnek';
    position: absolute;
    top: -10px;
    left: 16px;
    background: #0a0c20;
    padding: 2px 12px;
    font-size: 12px;
    color: #00d4ff;
    font-weight: 600;
    border-radius: 4px;
    font-family: system-ui;
}

.quick-nav {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.quick-nav h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.quick-nav li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.quick-nav li a:hover {
    color: #00d4ff;
    transform: translateX(4px);
}

.quick-nav li a i {
    color: #a855f7;
    font-size: 14px;
}

/* Refactored Inline Styles from Index */
.testimonial-content-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-info-name {
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.testimonial-info-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.cta-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.cta-button-launch {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    transition: all 0.3s;
}

.cta-button-launch:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-4px);
}

/* =========================================
   AI SECTION STYLES (Added for Index Page)
   ========================================= */

/* Section Header */
.ai-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.ai-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.ai-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ai-section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Common Section Layout */
.ai-tech,
.ai-process,
.ai-guides,
.ai-usecases,
.ai-comparison,
.ai-faq {
    padding: 100px 20px;
    position: relative;
}

.ai-tech-container,
.ai-process-container,
.ai-guides-container,
.ai-usecases-container,
.ai-comparison-container,
.ai-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Tech Stack */
.ai-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.tech-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.tech-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Process Steps */
.ai-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--clr-primary);
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 0 10px;
}

.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
    margin-top: 30px;
    opacity: 0.3;
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guide-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.guide-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.guide-card-icon.purple {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.guide-card-icon.pink {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.guide-card-icon.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.guide-card-icon.orange {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.guide-card-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.guide-card-icon.cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

.guide-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.guide-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.guide-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.guides-cta {
    text-align: center;
}

.guides-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guides-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-primary);
}

/* Use Cases */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.usecase-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--clr-secondary);
}

.usecase-card i {
    font-size: 32px;
    color: var(--clr-secondary);
    margin-bottom: 20px;
    display: block;
}

.usecase-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.usecase-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.comparison-card.featured {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--clr-primary);
}

.comp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.comp-header {
    text-align: center;
    margin-bottom: 30px;
}

.comp-header i {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--clr-primary);
}

.comp-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.comp-header p {
    color: rgba(255, 255, 255, 0.6);
}

.comp-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-feature:last-child {
    border-bottom: none;
}

.comp-feature i {
    color: var(--clr-primary);
    width: 20px;
}

.comp-feature.disabled i {
    color: rgba(255, 255, 255, 0.2);
}

.comp-feature.disabled span {
    color: rgba(255, 255, 255, 0.4);
}

.comp-feature span {
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.comp-feature strong {
    font-weight: 700;
    color: white;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--clr-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px 24px;
    display: none;
    /* JS ile açılacak */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .ai-section-header h2 {
        font-size: 32px;
    }

    .ai-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-line {
        display: none;
    }

    .step-item {
        width: 100%;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
    }
}
