/* AiCraftar-Inspired Homepage Design
   - Separate file to avoid conflicts with existing styles
   - Scoped to .home-aicraftar-wrapper class
   - Clean, modern, minimal design patterns from AiCraftar
*/

/* Body Background - Pure White */
.home-aicraftar-wrapper {
    background: #ffffff !important;
}

body {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.main {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* ===== HEADER STYLES - AiCraftar Pattern ===== */
.home-aicraftar-wrapper .aicraftar-header {
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(239, 241, 243);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-aicraftar-wrapper .aicraftar-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Add padding to main content to prevent it from hiding under fixed header */
.home-aicraftar-wrapper + .main {
    padding-top: 0;
}

.home-aicraftar-wrapper .aicraftar-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.home-aicraftar-wrapper .aicraftar-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.home-aicraftar-wrapper .aicraftar-logo-section {
    flex-shrink: 0;
}

.home-aicraftar-wrapper .aicraftar-logo-img {
    max-width: 140px;
    height: auto;
    display: block;
}

.home-aicraftar-wrapper .aicraftar-nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.home-aicraftar-wrapper .aicraftar-nav-link {
    color: rgb(63, 66, 70);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.home-aicraftar-wrapper .aicraftar-nav-link:hover {
    color: rgb(59, 130, 246);
}

.home-aicraftar-wrapper .aicraftar-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.home-aicraftar-wrapper .aicraftar-icon-btn,
.home-aicraftar-wrapper .aicraftar-btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: 1px solid rgb(229, 231, 235);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.125rem;
    color: rgb(63, 66, 70);
}

.home-aicraftar-wrapper .aicraftar-icon-btn:hover,
.home-aicraftar-wrapper .aicraftar-btn-icon:hover {
    background: rgb(249, 250, 251);
    border-color: rgb(209, 213, 219);
}

.home-aicraftar-wrapper .aicraftar-dropdown {
    position: relative;
}

.home-aicraftar-wrapper .aicraftar-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(63, 66, 70);
    background: transparent;
    border: none;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.home-aicraftar-wrapper .aicraftar-dropdown-toggle:hover {
    background: rgb(248, 249, 250);
}

.home-aicraftar-wrapper .aicraftar-dropdown-icon {
    font-size: 0.75rem;
}

.home-aicraftar-wrapper .aicraftar-dropdown-menu {
    min-width: 15rem;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(239, 241, 243);
    box-shadow: 0px 4px 6px -2px rgba(0,0,9,0.03), 0px 12px 16px -4px rgba(0,0,9,0.08);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.home-aicraftar-wrapper .aicraftar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: rgb(63, 66, 70);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.9375rem;
}

.home-aicraftar-wrapper .aicraftar-dropdown-item:hover {
    background: rgb(248, 249, 250);
    color: rgb(63, 66, 70);
}

.home-aicraftar-wrapper .aicraftar-btn {
    padding: 0 1.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-aicraftar-wrapper .aicraftar-btn-primary {
    background: rgb(59, 130, 246);
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.home-aicraftar-wrapper .aicraftar-btn-primary:hover {
    background: rgb(37, 99, 235);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.home-aicraftar-wrapper .aicraftar-mobile-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgb(248, 249, 250);
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: rgb(63, 66, 70);
}

@media (max-width: 768px) {
    .home-aicraftar-wrapper .aicraftar-header-content {
        padding: 0.75rem 0;
    }
    .home-aicraftar-wrapper .aicraftar-logo-img {
        max-width: 120px;
    }
    .home-aicraftar-wrapper .aicraftar-nav-desktop {
        display: none;
    }
    .home-aicraftar-wrapper .aicraftar-mobile-toggle {
        display: flex;
    }
    .home-aicraftar-wrapper .aicraftar-btn {
        padding: 0 1rem;
        font-size: 0.875rem;
    }
}

/* Mobile Offcanvas Styling */
.home-aicraftar-wrapper .offcanvas {
    max-width: 300px;
}

/* ===== GLOBAL HEADER STYLES (for all pages without wrapper) ===== */
.aicraftar-header {
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(239, 241, 243);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.aicraftar-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Add padding to main content */
body .main,
body > .container-scroller {
    padding-top: 0;
}

.aicraftar-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.aicraftar-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.aicraftar-logo-section {
    flex-shrink: 0;
}

.aicraftar-logo-img {
    max-width: 140px;
    height: auto;
    display: block;
}

.aicraftar-nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.aicraftar-nav-link {
    color: rgb(63, 66, 70);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.aicraftar-nav-link:hover {
    color: rgb(59, 130, 246);
}

.aicraftar-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.aicraftar-btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: 1px solid rgb(229, 231, 235);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.125rem;
    color: rgb(63, 66, 70);
}

.aicraftar-btn-icon:hover {
    background: rgb(249, 250, 251);
    border-color: rgb(209, 213, 219);
}

.aicraftar-btn {
    padding: 0 1.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.aicraftar-btn-primary {
    background: rgb(59, 130, 246);
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.aicraftar-btn-primary:hover {
    background: rgb(37, 99, 235);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.aicraftar-mobile-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: 1px solid rgb(229, 231, 235);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: rgb(63, 66, 70);
    transition: all 0.2s ease;
}

.aicraftar-mobile-toggle:hover {
    background: rgb(249, 250, 251);
    border-color: rgb(209, 213, 219);
}

@media (max-width: 768px) {
    .aicraftar-header-content {
        padding: 0.75rem 0;
    }
    .aicraftar-logo-img {
        max-width: 120px;
    }
    .aicraftar-nav-desktop {
        display: none;
    }
    .aicraftar-mobile-toggle {
        display: flex;
    }
    .aicraftar-btn {
        padding: 0 1rem;
        font-size: 0.875rem;
    }
    .aicraftar-btn-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
}

.home-aicraftar-wrapper .offcanvas-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-line-dimmed);
}

.home-aicraftar-wrapper .offcanvas-header .navLogoWrapper {
    flex: 1;
}

.home-aicraftar-wrapper .offcanvas-header .navLogo img {
    max-height: 40px;
    width: auto;
}

.home-aicraftar-wrapper .offcanvas-body {
    padding: 1.5rem;
}

.home-aicraftar-wrapper .offcanvas .listItems {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.home-aicraftar-wrapper .offcanvas .listItems li {
    margin: 0.75rem 0;
}

.home-aicraftar-wrapper .offcanvas .listItems li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-content);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.home-aicraftar-wrapper .offcanvas .listItems li a:hover {
    color: var(--color-accent);
}

.home-aicraftar-wrapper .offcanvas .dropdown .btn-secondary {
    background: transparent;
    border: none;
    color: var(--color-content);
    padding: 0.5rem 0;
    text-align: left;
    width: 100%;
    font-size: 1rem;
}

.home-aicraftar-wrapper .offcanvas .dropdown .btn-secondary:hover,
.home-aicraftar-wrapper .offcanvas .dropdown .btn-secondary:focus {
    background: transparent;
    color: var(--color-accent);
    box-shadow: none;
}

.home-aicraftar-wrapper .offcanvas .dropdown-menu {
    border: 1px solid var(--color-line-dimmed);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.home-aicraftar-wrapper .offcanvas .dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--color-content);
}

.home-aicraftar-wrapper .offcanvas .dropdown-item:hover {
    background: var(--color-line-dimmed);
    color: var(--color-accent);
}

.home-aicraftar-wrapper .offcanvas .redirect-login {
    width: 100%;
    margin-top: 1rem;
}

/* Scoped wrapper to prevent conflicts */
.home-aicraftar-wrapper {
    --color-main: rgb(255, 255, 255);
    --color-content: rgb(63, 66, 70);
    --color-content-dimmed: rgb(172, 174, 175);
    --color-line: rgb(227, 228, 228);
    --color-line-dimmed: rgb(241, 242, 242);
    --color-accent: rgb(59, 130, 246);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
}

/* Hero Section - AiCraftar Style */
.home-aicraftar-wrapper .hero-section {
    background: #ffffff;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.home-aicraftar-wrapper .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.home-aicraftar-wrapper .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-content);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-aicraftar-wrapper .hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-content-dimmed);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Box Component - AiCraftar Pattern */
.home-aicraftar-wrapper .box {
    padding: 1.5rem;
    border: 1px solid var(--color-line-dimmed);
    border-radius: 1rem;
    background: var(--color-main);
    transition: border-color 0.15s ease;
}

.home-aicraftar-wrapper .box:hover {
    border-color: var(--color-line);
}

.home-aicraftar-wrapper .box[data-density='comfortable'] {
    padding: 2rem;
}

@media (min-width: 640px) {
    .home-aicraftar-wrapper .box[data-density='comfortable'] {
        padding: 3rem 4rem;
    }
}

/* Feature Cards - Clean Design */
.home-aicraftar-wrapper .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.home-aicraftar-wrapper .feature-card {
    padding: 2rem;
    border: 1px solid var(--color-line-dimmed);
    border-radius: 1rem;
    background: var(--color-main);
    transition: all 0.15s ease;
}

.home-aicraftar-wrapper .feature-card:hover {
    border-color: var(--color-line);
    transform: translateY(-2px);
}

.home-aicraftar-wrapper .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: 0.75rem;
    color: white;
    font-size: 24px;
    margin-bottom: 1rem;
}

.home-aicraftar-wrapper .feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-content);
    margin-bottom: 0.5rem;
}

.home-aicraftar-wrapper .feature-description {
    font-size: 0.875rem;
    color: var(--color-content-dimmed);
    line-height: 1.6;
}

/* Section Headers */
.home-aicraftar-wrapper .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-aicraftar-wrapper .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-content);
    margin-bottom: 0.75rem;
}

.home-aicraftar-wrapper .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-content-dimmed);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Buttons - AiCraftar Style */
.home-aicraftar-wrapper .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3rem;
    padding: 0 1.5rem;
    background: var(--color-content);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
    text-decoration: none;
}

.home-aicraftar-wrapper .button:hover {
    opacity: 0.9;
    color: white;
    text-decoration: none;
}

.home-aicraftar-wrapper .button-accent {
    background: var(--color-accent);
}

.home-aicraftar-wrapper .button-outline {
    background: transparent;
    border: 1px solid var(--color-line);
    color: var(--color-content);
}

.home-aicraftar-wrapper .button-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Stats/Numbers Section */
.home-aicraftar-wrapper .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.home-aicraftar-wrapper .stat-item {
    text-align: center;
}

.home-aicraftar-wrapper .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.home-aicraftar-wrapper .stat-label {
    font-size: 0.875rem;
    color: var(--color-content-dimmed);
    font-weight: 600;
}

/* Testimonials - Clean Layout */
.home-aicraftar-wrapper .testimonial-card {
    padding: 2rem;
    border: 1px solid var(--color-line-dimmed);
    border-radius: 1rem;
    background: var(--color-main);
    margin-bottom: 1.5rem;
}

.home-aicraftar-wrapper .testimonial-text {
    font-size: 1rem;
    color: var(--color-content);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.home-aicraftar-wrapper .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-aicraftar-wrapper .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-line);
}

.home-aicraftar-wrapper .testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-content);
}

.home-aicraftar-wrapper .testimonial-role {
    font-size: 0.75rem;
    color: var(--color-content-dimmed);
}

/* Call to Action */
.home-aicraftar-wrapper .cta-section {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--color-content);
    margin: 4rem 0;
    border: 1px solid var(--color-line-dimmed);
}

.home-aicraftar-wrapper .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-aicraftar-wrapper .cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.home-aicraftar-wrapper .cta-section .button {
    background: var(--color-accent);
    color: white;
}

.home-aicraftar-wrapper .cta-section .button:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Process Steps */
.home-aicraftar-wrapper .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.home-aicraftar-wrapper .process-step {
    text-align: center;
    position: relative;
}

.home-aicraftar-wrapper .process-number {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.home-aicraftar-wrapper .process-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-content);
    margin-bottom: 0.5rem;
}

.home-aicraftar-wrapper .process-description {
    font-size: 0.875rem;
    color: var(--color-content-dimmed);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .home-aicraftar-wrapper .hero-title {
        font-size: 2rem;
    }
    
    .home-aicraftar-wrapper .hero-subtitle {
        font-size: 1rem;
    }
    
    .home-aicraftar-wrapper .section-title {
        font-size: 1.5rem;
    }
    
    .home-aicraftar-wrapper .feature-grid,
    .home-aicraftar-wrapper .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .home-aicraftar-wrapper .box[data-density='comfortable'] {
        padding: 1.5rem;
    }
}

/* Spacing Utilities - Scoped */
.home-aicraftar-wrapper .gap-4 {
    gap: 1rem;
}

.home-aicraftar-wrapper .gap-6 {
    gap: 1.5rem;
}

.home-aicraftar-wrapper .mt-8 {
    margin-top: 2rem;
}

.home-aicraftar-wrapper .mb-8 {
    margin-bottom: 2rem;
}

.home-aicraftar-wrapper .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.home-aicraftar-wrapper .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Typography */
.home-aicraftar-wrapper h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-content);
}

.home-aicraftar-wrapper h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-content);
}

.home-aicraftar-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-content);
}

.home-aicraftar-wrapper p {
    line-height: 1.6;
    color: var(--color-content-dimmed);
}

/* Lists */
.home-aicraftar-wrapper ul.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.home-aicraftar-wrapper ul.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-content-dimmed);
}

.home-aicraftar-wrapper ul.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ===== FOOTER STYLES - AiCraftar Pattern ===== */
.aicraftar-footer {
    background: rgb(243, 244, 246);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.aicraftar-footer .footer-column {
    padding: 0 0.5rem;
}

.aicraftar-footer .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(63, 66, 70);
    margin-bottom: 1rem;
}

.aicraftar-footer .footer-description {
    font-size: 0.875rem;
    color: rgb(107, 114, 128);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Newsletter Form */
.aicraftar-footer .newsletter-form {
    position: relative;
    margin-bottom: 1.5rem;
}

.aicraftar-footer .newsletter-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 1px solid rgb(209, 213, 219);
    border-radius: 0.5rem;
    background: white;
    font-size: 0.875rem;
    color: rgb(63, 66, 70);
    transition: border-color 0.2s ease;
}

.aicraftar-footer .newsletter-input:focus {
    outline: none;
    border-color: rgb(59, 130, 246);
}

.aicraftar-footer .newsletter-input::placeholder {
    color: rgb(156, 163, 175);
}

.aicraftar-footer .newsletter-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: rgb(63, 66, 70);
    border: none;
    border-radius: 0.375rem;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.aicraftar-footer .newsletter-btn:hover {
    background: rgb(31, 41, 55);
}

/* Social Links */
.aicraftar-footer .footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.aicraftar-footer .footer-social a {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgb(229, 231, 235);
    border-radius: 0.5rem;
    color: rgb(107, 114, 128) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.aicraftar-footer .footer-social a:hover {
    background: rgb(63, 66, 70);
    border-color: rgb(63, 66, 70);
    color: white !important;
}

/* Footer Column Titles */
.aicraftar-footer .footer-column-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgb(63, 66, 70);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

/* Footer Links */
.aicraftar-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aicraftar-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.aicraftar-footer .footer-links a {
    font-size: 0.875rem;
    color: rgb(107, 114, 128) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.aicraftar-footer .footer-links a:hover {
    color: rgb(63, 66, 70) !important;
}

/* Footer Bottom */
.aicraftar-footer .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgb(229, 231, 235);
    position: relative;
}

.aicraftar-footer .footer-watermark {
    text-align: center;
    margin-bottom: 1rem;
}

.aicraftar-footer .footer-logo-watermark {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.aicraftar-footer .footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: rgb(107, 114, 128);
}

/* Responsive - Mobile View */
@media (max-width: 991px) {
    .aicraftar-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .aicraftar-footer .footer-column {
        margin-bottom: 2rem;
    }

    .aicraftar-footer .footer-logo-watermark {
        max-width: 280px;
    }

    /* Make links display inline with bullets on mobile */
    .aicraftar-footer .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        align-items: center;
    }

    .aicraftar-footer .footer-links li {
        display: inline-flex;
        align-items: center;
        margin-bottom: 0.25rem;
    }

    .aicraftar-footer .footer-links li:not(:last-child)::after {
        content: "•";
        margin: 0 0.5rem;
        color: rgb(209, 213, 219);
    }
}

@media (max-width: 576px) {
    .aicraftar-footer .footer-logo-watermark {
        max-width: 200px;
    }
}

/* Hide original footer to avoid duplication */
.original-footer {
    display: none !important;
}

/* ===== PRODUCT SECTION - AiCraftar Box Pattern ===== */
.home-aicraftar-wrapper .aicraftar-products-section {
    padding: 3rem 0;
}

.home-aicraftar-wrapper .aicraftar-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.home-aicraftar-wrapper .aicraftar-box {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(239, 241, 243);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    display: flex;
    position: relative;
    isolation: isolate;
    height: 450px;
    overflow: hidden;
}

.home-aicraftar-wrapper .aicraftar-box:hover {
    box-shadow: 0px 8px 16px -4px rgba(0,0,9,0.1), 0px 20px 32px -8px rgba(0,0,9,0.15);
    border-color: rgb(59, 130, 246);
    z-index: 10;
    overflow-y: auto;
}

/* Ensure only the hovered card's description expands - using data attributes for absolute specificity */
.home-aicraftar-wrapper .aicraftar-products-grid .aicraftar-box.aicraftar-product-card[data-card]:hover > .aicraftar-card-content > .aicraftar-product-desc-wrapper > .aicraftar-product-desc {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Keep non-hovered cards clamped - using data attributes */
.home-aicraftar-wrapper .aicraftar-products-grid .aicraftar-box.aicraftar-product-card[data-card]:not(:hover) > .aicraftar-card-content > .aicraftar-product-desc-wrapper > .aicraftar-product-desc {
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.home-aicraftar-wrapper .aicraftar-product-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Removed expanded styles - using hover only */

.home-aicraftar-wrapper .aicraftar-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Gradient fade effect on all non-hovered cards */
.home-aicraftar-wrapper .aicraftar-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4em;
    background: linear-gradient(to bottom, transparent, rgb(255, 255, 255));
    pointer-events: none;
}

/* Hide gradient on THIS hovered box only */
.home-aicraftar-wrapper .aicraftar-box:hover::after {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.home-aicraftar-wrapper .aicraftar-product-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    border-radius: 0.5rem;
    align-self: center;
    flex-shrink: 0;
}

.home-aicraftar-wrapper .aicraftar-product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(63, 66, 70);
    margin: 0 0 0.75rem;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
}

.home-aicraftar-wrapper .aicraftar-product-title a {
    color: inherit;
    text-decoration: none;
}

.home-aicraftar-wrapper .aicraftar-product-title a:hover {
    color: rgb(59, 130, 246);
}

.home-aicraftar-wrapper .aicraftar-product-desc-wrapper {
    flex: 1;
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    position: relative;
}

.home-aicraftar-wrapper .aicraftar-product-desc {
    font-size: 0.875rem;
    color: rgb(148, 153, 159);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    position: relative;
}

/* Removed - using box::after gradient instead */

.home-aicraftar-wrapper .aicraftar-show-more-btn {
    display: none;
}

.home-aicraftar-wrapper .aicraftar-product-link {
    text-decoration: none;
}

.home-aicraftar-wrapper .aicraftar-btn-secondary {
    background: rgb(248, 249, 250);
    color: rgb(63, 66, 70);
    border: 1px solid rgb(239, 241, 243);
    margin-top: 0;
    align-self: center;
    width: fit-content;
    text-align: center;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.home-aicraftar-wrapper .aicraftar-btn-secondary:hover {
    background: rgb(239, 241, 243);
    opacity: 1;
}

@media (max-width: 1200px) {
    .home-aicraftar-wrapper .aicraftar-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .home-aicraftar-wrapper .aicraftar-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .home-aicraftar-wrapper .aicraftar-box {
        aspect-ratio: auto;
    }
    
    .home-aicraftar-wrapper .aicraftar-product-card {
        min-height: auto;
    }
    
    .home-aicraftar-wrapper .aicraftar-product-desc {
        font-size: 0.9375rem;
    }
}

