/* View Website Button Inline Flex */
.view-website-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.features-list-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
}

.features-list-right {
    margin-left: 2rem;
}

@media (max-width: 767px) {
    .features-content {
        flex-direction: column;
        gap: 0;
    }

    .features-list-col,
    .features-list-right {
        max-width: 100%;
        margin-left: 0;
    }
}

/* AI Platform Details Page - Refined Styles */
:root {
    --background: #09090b;
    --foreground: #fafafa;
    --primary: #facc15;
    --primary-foreground: #000;
    --border: #27272a;
    --muted: #18181b;
    --card: #18181b;
    --golden: #FFA629;
    --color: #1A1818;
}

/* Base Styles */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Breadcrumb */
.container .breadcrumb {
    margin-top: 100px;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #eab308;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #71717a;
}

/* Hero Section - Reduced Space */
.hero {
    padding: 2rem 0 0;
    /* Reduced top padding */
    background-color: transparent;
    /* Removed background */
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Reduced gap */
    align-items: center;
}

.hero-text {
    order: 2;
    text-align: center;
    width: 100%;
}

.hero-image {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 70%;
    max-width: 280px;
    /* Slightly reduced */
    min-width: 160px;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.tagline {
    font-size: 1.15rem;
    /* Slightly smaller */
    color: #a1a1aa;
    margin: 0.75rem 0;
    line-height: 1.6;
}


/* CTA Button */
.cta-buttons {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.cta-buttons:hover {
    background-color: var(--golden);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* What Is Section */
.what-is {
    padding: 2.5rem 0;
    /* Reduced padding */
}

.what-is h2 {
    font-size: 1.75rem;
    /* Slightly smaller */
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
    position: relative;
    display: inline-block;
}

.what-is h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    /* Raised slightly */
    left: 0;
    width: 50px;
    /* Slightly shorter */
    height: 3px;
    /* Thinner */
    background-color: var(--primary);
    border-radius: 2px;
}

.what-is p {
    font-size: 1.05rem;
    /* Slightly smaller */
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 100%;
}

/* Benefits Section */
.benefits {
    padding: 2.5rem 0;
    /* Reduced padding */
}

.benefits h2 {
    font-size: 1.75rem;
    /* Slightly smaller */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Slightly narrower cards */
    gap: 1.5rem;
    /* Reduced gap */
    margin-top: 2rem;
    /* Reduced margin */
}

.benefit-card {
    background-color: var(--card);
    border-radius: 0.5rem;
    padding: 1.5rem;
    /* Reduced padding */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* More subtle shadow */
    border-color: var(--primary);
}

.benefit-icon {
    width: 50px;
    /* Slightly smaller */
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    /* Reduced margin */
    color: var(--primary-foreground);
}

.benefit-card h3 {
    font-size: 1.15rem;
    /* Slightly smaller */
    font-weight: 600;
    margin-bottom: 0.5rem;
    /* Reduced margin */
    color: white;
}

.benefit-card p {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 0.9rem;
    /* Slightly smaller */
}

/* Features Section - Improved Alignment */
.features {
    padding: 2.5rem 0;
    /* Reduced padding */
}

.features h2 {
    font-size: 1.75rem;
    /* Slightly smaller */
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.features-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 1000px;
    margin: 0;
    align-items: flex-start;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin-left: 0;
    align-items: flex-start;
}

@media (min-width: 600px) {
    .features-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        grid-auto-flow: column;
        gap: 1rem 2rem;
    }
}

.features-right-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
    margin-left: 2rem;
    align-items: flex-start;
}

.feature-items {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.feature-check-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    /* Slightly smaller */
    height: 1.8rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.feature-check-bg i {
    color: var(--primary);
    /* Yellow check icon */
    font-size: 0.9rem;
    /* Slightly smaller */
}

.feature-items:hover {
    transform: translateX(5px);
    background-color: rgba(250, 204, 21, 0.05);
    /* Subtle hover effect */
}

.feature-items:hover span {
    color: rgba(250, 204, 21, 0.7);
}

.feature-items span {
    color: #a1a1aa;
    font-size: 0.95rem;
    /* Slightly smaller */
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero {
        padding: 3rem 0 0;
        /* Adjusted padding */
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        /* Reduced gap */
    }

    .hero-text {
        flex: 1;
        order: 1;
        text-align: left;
    }

    .hero-image {
        flex: 1;
        order: 2;
        justify-content: flex-end;
    }

    .hero-img {
        max-width: 320px;
    }

    .features-list {
        margin-left: 0;
        /* Keep aligned with heading */
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 3rem 0 0;
        /* Consistent padding */
    }

    .what-is,
    .benefits,
    .features {
        padding: 3rem 0;
        /* Consistent padding */
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}