/* Hide breadcrumbs on home page */
.breadcrumbs {
    display: none !important;
}

/* Modern Home Container */
.modern-home-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    margin-top: 0 !important; /* Ensure no unwanted top margin */
    padding-top: 0 !important; /* Ensure no unwanted top padding */
}

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: white;
    text-align: center;
    height: 100vh;
    min-height: 80vh;
    padding: 4rem 2rem;
    overflow: hidden;
    
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #f093fb 100%);
    opacity: 0.9;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}

/* Make hero area act as a link to /ai when clicked */
.hero-clickable {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease;
}
.hero-clickable .home-chat-form,
.hero-clickable input,
.hero-clickable button,
.hero-clickable textarea {
    cursor: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    min-width: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.stat-card.clickable {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.stat-card.clickable:hover {
    text-decoration: none;
    color: inherit;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-cta.primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.hero-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.hero-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    background: var(--color-theme-1);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    text-align: center;
    margin-bottom: 5rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: -webkit-fill-available;
    min-width: fit-content;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.1;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-description {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Tech Showcase Section */
.tech-showcase-section {
    padding: 6rem 0;
    background: var(--color-theme-4, #f8f4f0);
}

.video-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text, rgba(0, 0, 0, 0.87));
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-category h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    background: var(--card-bg, white);
    border: 1px solid var(--border-color, #e0e0e0);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text, rgba(0, 0, 0, 0.87));
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.tech-item:hover {
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
    transform: translateY(-2px);
    text-decoration: none;
}

a.tech-item:hover {
    color: var(--color-text-on-theme, #ffffff);
    text-decoration: none;
}


/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-color, white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg, white);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.feature-card.clickable-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-card.clickable-card:hover {
    text-decoration: none;
    color: inherit;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-badge {
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text, rgba(0, 0, 0, 0.87));
}

.feature-content p {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text, rgba(0, 0, 0, 0.87));
}

.highlight-item i {
    color: var(--color-theme-2, #667eea);
    width: 16px;
}

.feature-footer {
    margin-top: auto;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    background: var(--color-theme-2-hover, #5a6fd8);
    transform: translateX(5px);
    text-decoration: none;
    color: var(--color-text-on-theme, #ffffff);
}

.feature-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clickable-card:hover .feature-cta-text {
    background: var(--color-theme-2-hover, #5a6fd8);
    transform: translateX(5px);
}

/* Domains Section */
.domains-section {
    padding: 6rem 0;
    background: var(--color-theme-4, #f8f4f0);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.domain-card {
    background: var(--card-bg, white);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.domain-card.clickable-domain {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.domain-card.clickable-domain:hover {
    text-decoration: none;
    color: inherit;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.domain-card:hover::before {
    opacity: 1;
    top: -60%;
    left: -60%;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.domain-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.domain-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text, rgba(0, 0, 0, 0.87));
    position: relative;
    z-index: 1;
}

.domain-card p {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.domain-tech {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.domain-tech span {
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--bg-color, white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    opacity: 0.3;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--color-theme-2, #667eea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text, rgba(0, 0, 0, 0.87));
}

.step-content p {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.step-features span {
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.step-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-cta.primary {
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
}

.step-cta.primary:hover {
    background: var(--color-theme-2-hover, #5a6fd8);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--color-text-on-theme, #ffffff);
}

.step-cta.secondary {
    background: transparent;
    color: var(--color-theme-2, #667eea);
    border-color: var(--color-theme-2, #667eea);
}

.step-cta.secondary:hover {
    background: var(--color-theme-2, #667eea);
    color: var(--color-text-on-theme, #ffffff);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 6rem 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.95;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.cta-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.cta-disclaimer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.cta-disclaimer a:hover {
    text-decoration: underline;
}

/* Return to AI Chat button hover */
.return-to-ai-btn:hover {
    background: var(--color-theme-1) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(237, 118, 24, 0.25);
}

/* Dark Mode Compatibility */
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .tech-category h4,
[data-theme="dark"] .feature-content h3,
[data-theme="dark"] .domain-card h4,
[data-theme="dark"] .step-content h4 {
    color: var(--text-color-dark, white);
}

[data-theme="dark"] .section-description,
[data-theme="dark"] .feature-content p,
[data-theme="dark"] .domain-card p,
[data-theme="dark"] .step-content p {
    color: var(--text-secondary-dark, #ccc);
}

[data-theme="dark"] .tech-showcase-section,
[data-theme="dark"] .domains-section {
    background: var(--bg-alt-dark, #2d2d2d);
}

[data-theme="dark"] .features-section,
[data-theme="dark"] .process-section {
    background: var(--bg-color-dark, #1a1a1a);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .domain-card,
[data-theme="dark"] .tech-item {
    background: var(--card-bg-dark, #333);
    border-color: var(--border-color-dark, #444);
}

/* Hero clickable hover: mimic button hover */
.hero-clickable:hover .hero-gradient {
    filter: brightness(1.05);
}
.hero-clickable:hover .hero-content {
    transform: translateY(-2px);
    /* box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4); */
}
/* Keep normal cursor on interactive controls */