/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Breba Brand Colors - New Color Palette */
    --breba-primary: #5F31EB; /* Primary brand color - Purple */
    --breba-light-text: #EAE7F2; /* Secondary brand color - light cream */
    --breba-background: #A696C8; /* Secondary brand color - Light Purple */
    --breba-background2: #373640; /* Secondary brand color - Dark Grey */
    --breba-accent: #EDD9DA; /* Accent color - Light Pink */
    --breba-dark: #212529; /* Dark color - Almost Black */
    --breba-success: #10b981; /* Success green */
    --breba-warning: #f59e0b; /* Warning yellow */
    --breba-error: #ef4444; /* Error red */
    --breba-alert-success: #a18ae7;  /* Alert light lilac */
    --breba-alert-border: #8a6fd1; /* Alert border lilac darker*/

    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Breba Gradients */
    --gradient-primary: linear-gradient(135deg, var(--breba-primary) 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, var(--breba-light-text) 0%, var(--breba-accent) 100%);
    --gradient-hero: linear-gradient(135deg, var(--breba-primary) 0%, var(--breba-accent) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
}

.modal {
    --bs-modal-bg: var(--breba-dark); /* from Bootstrap */
    --bs-modal-color: var(--breba-light-text);
}

.btn-close {
    --bs-btn-close-color: var(--breba-light-text);
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EAE7F2'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
}
.alert {
    --bs-alert-border-color: var(--breba-alert-border);
}

.alert-success {
    --bs-alert-bg: var(--breba-alert-success);
}

body {
    font-family: var(--font-family);
    line-height: normal;
    color: var(--breba-light-text);
    background-color: var(--breba-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--breba-light-text);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: var(--font-size-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: var(--font-size-base);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

/* Navigation */
.breba-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--breba-background2);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 1rem 0;
}

.btn-outline-breba {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--breba-light-text);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.btn-outline-breba:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--breba-light-text);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;

    flex: 0 0 auto;
}

.nav-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.logo-icon {
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--breba-light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--breba-primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}


/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(0deg, var(--breba-dark) 0%, #2d3748 50%, #4a5568 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--breba-primary) 0%, var(--breba-light-text) 100%);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

/* Float animation removed */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--breba-primary) 0%, var(--breba-light-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.hero-actions .btn-secondary {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--breba-light-text);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: var(--gray-400);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 450px;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}


.showcase-card.primary {
    /* Animation removed */
}

.showcase-card.secondary {
    /* Animation removed */
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    color: var(--breba-light-text);
    font-size: 1.2rem;
}

.card-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--breba-light-text);
    margin: 0;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.app-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--breba-light-text);
    font-size: var(--font-size-sm);
}

.app-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.suggestions {
    display: flex;
    gap: 0.5rem;
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--breba-light-text);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: var(--font-size-xs);
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.deployment-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.status-indicator.success {
    color: var(--breba-success);
}

.status-indicator i {
    font-size: 1rem;
}

.app-url {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: var(--font-size-sm);
    color: var(--gray-300);
    font-family: 'Monaco', 'Menlo', monospace;
    width: 100%;
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--breba-light-text);
}

.section-header p {
    font-size: var(--font-size-xl);
    color: var(--breba-light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--breba-dark);
}

/* Why Breba Section */
.why-breba {
    padding: 6rem 0;
    background: var(--breba-dark);
}

.why-breba-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-breba-info h2,
.how-it-works h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--breba-light-text);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--breba-background2);
    border-radius: 0.75rem;
    border: none;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--breba-light-text);
    border-color: var(--breba-accent);
    transform: translateX(5px);
    color: var(--breba-dark);
}

.benefit-item i {
    font-size: var(--font-size-xl);
    color: var(--breba-primary);
    width: 24px;
    text-align: center;
}

.benefit-item span {
    font-size: var(--font-size-base);
    font-weight: 500;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--breba-background2);
    border-radius: 1rem;
    border: none;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: var(--breba-light-text);
    border-color: var(--breba-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--breba-dark);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--breba-light-text);
    border-radius: 50%;
    font-size: var(--font-size-xl);
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--breba-background2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-visual {
    margin-bottom: 2rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-screen {
    background: var(--breba-background2);
    border: 1px solid var(--breba-accent);
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: var(--breba-light-text);
    width: 100%;
    box-shadow: var(--shadow-md);
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
}

.progress-item.completed i {
    color: var(--breba-success);
}

.dashboard-preview {
    background: var(--breba-background2);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 100%;
}

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

.dashboard-header h4 {
    font-weight: 600;
    color: var(--breba-light-text);

}

.deployment-screen {
    background: var(--breba-background2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: var(--breba-light-text);
    text-align: center;
}

.deployment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.app-url {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-size-sm);
}

.feature-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    background: var(--breba-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--breba-background2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: var(--font-size-xl);
}

.amount {
    font-size: var(--font-size-5xl);
    font-weight: 700;
}

.period {
    font-size: var(--font-size-lg);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}


/* FAQ Section */
.faq .accordion {
    max-width: 800px;
    margin: 0 auto;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-color: var(--breba-light-text);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--breba-light-text);
}

.faq .accordion-item {
    border-bottom: 1px solid var(--breba-light-text);
    margin-bottom: 1rem;

}

.faq .accordion-button::after {
    filter: invert(1) brightness(2);
}

.faq .accordion-body {
    color: var(--breba-light-text);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--breba-light-text);
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Enhanced shadow for Beta button */
.cta .btn-primary {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta .btn-primary:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Platform Features Section */
.platform-features {
    background: var(--breba-light-text);
    color: var(--breba-dark);
    padding: 5rem 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: var(--breba-light-text);
    border: 1px solid var(--breba-accent);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--breba-primary);
}

.platform-header {
    margin-bottom: 2rem;
}

.platform-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--breba-dark);
}

.platform-header p {
    color: var(--breba-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Search Bar */
.search-bar {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--breba-light-text);
    border: 1px solid var(--breba-accent);
    border-radius: 0.5rem;
    color: var(--breba-dark);
    font-size: var(--font-size-sm);
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-input:focus {
    outline: none;
    border-color: var(--breba-primary);
    background: var(--breba-light-text);
    box-shadow: 0 0 0 3px rgba(95, 49, 235, 0.1);
}

/* App List */
.app-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.app-item:hover {
    background: var(--gray-100);
}

.app-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    color: var(--breba-light-text);
    font-size: 1rem;
}

/* Quick Answer */
.quick-answer {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.quick-answer h4 {
    color: var(--breba-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-answer p {
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Search Result */
.search-result {
    background: var(--gray-50);
    border-radius: 0.5rem;
    padding: 1rem;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.result-header i {
    color: var(--breba-primary);
    font-size: 1rem;
}

.result-title {
    color: var(--breba-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.search-result h5 {
    color: var(--gray-900);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-result p {
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Visual Grid */
.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.visual-item {
    aspect-ratio: 1;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.anime-cat {
    background: linear-gradient(135deg, var(--breba-primary) 0%, var(--breba-light-text) 100%);
}

.cartoon-cat {
    background: linear-gradient(135deg, var(--breba-success) 0%, var(--breba-warning) 100%);
}

.neon-cat {
    background: linear-gradient(135deg, var(--breba-light-text) 0%, var(--breba-accent) 100%);
}

.generating {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
}

.generating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

/* Cat Illustrations */
.cat-illustration {
    width: 60%;
    height: 60%;
    position: relative;
}

.cat-face {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cat-eyes {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.eye {
    width: 12px;
    height: 12px;
    background: var(--gray-800);
    border-radius: 50%;
    position: relative;
}


.cat-nose {
    width: 6px;
    height: 6px;
    background: var(--gray-600);
    border-radius: 50%;
}

/* AI Models Grid */
.ai-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ai-model {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-model:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.ai-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: var(--breba-light-text);
    font-size: 1.5rem;
    font-weight: 700;
}

.ai-logo.openai {
    background: linear-gradient(135deg, var(--breba-success) 0%, #059669 100%);
}

.ai-logo.claude {
    background: linear-gradient(135deg, var(--breba-warning) 0%, #d97706 100%);
}

.ai-logo.google {
    background: linear-gradient(135deg, var(--breba-primary) 0%, var(--breba-light-text) 100%);
}

.ai-logo.mistral {
    background: linear-gradient(135deg, var(--breba-light-text) 0%, var(--breba-accent) 100%);
}

.ai-logo.perplexity {
    background: linear-gradient(135deg, var(--breba-primary) 0%, #4f46e5 100%);
}

.ai-logo.grok {
    background: linear-gradient(135deg, var(--breba-accent) 0%, #be185d 100%);
}

.mistral-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.grok-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.ai-name {
    font-size: var(--font-size-sm);
    color: var(--gray-900);
    font-weight: 500;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Analytics Preview */
.analytics-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--breba-light-text);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-preview {
    height: 80px;
    display: flex;
    align-items: end;
    gap: 0.5rem;
    padding: 1rem 0;
}

.chart-line {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

.chart-point {
    flex: 1;
    background: linear-gradient(135deg, var(--breba-primary) 0%, var(--breba-light-text) 100%);
    border-radius: 0.25rem 0.25rem 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.chart-point:hover {
    background: linear-gradient(135deg, var(--breba-light-text) 0%, var(--breba-accent) 100%);
    transform: scaleY(1.1);
}

.analytics-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--gray-700);
}

.stat-item i {
    color: var(--breba-primary);
    width: 16px;
}

/* Workflow Preview */
.workflow-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    color: var(--breba-light-text);
    font-size: 1rem;
}

.step-name {
    flex: 1;
    color: var(--gray-900);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.step-arrow {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.automation-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--breba-success);
}

.status-indicator i {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

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

.automation-count {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
}

/* Footer */
.footer {
    background: var(--breba-dark);
    color: var(--breba-light-text);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    max-width: 500px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--breba-primary);
}

.footer-column a:hover {
    color: var(--breba-light-text);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-media-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--breba-background2);
    border-radius: 50%;
    color: var(--breba-light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-media-icons a:hover {
    background: var(--breba-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.footer-bottom .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;

    flex: 0 0 auto;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }


    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-showcase {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .example-tags {
        justify-content: center;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .why-breba-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefit-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .section-header h2 {
        font-size: var(--font-size-3xl);
    }

    .cta-content h2 {
        font-size: var(--font-size-3xl);
    }

    .container {
        padding: 0 0.5rem;
    }

    .floating-card {
        padding: 1.5rem;
    }

    .suggestions {
        flex-direction: column;
    }
}
