/* ===== CSS Variables ===== */
:root {
    /* Slate Color Scale (Based on #1E293B as 800) */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    /* PRIMARY COLOR REQUESTED */
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Brand Colors */
    --primary: var(--slate-800);
    --primary-dark: var(--slate-900);

    /* Recommended Secondary/Accent Color (Green for CTAs) */
    --accent: #22C55E;
    --accent-hover: #16A34A;

    --white: #ffffff;
    --black: #000000;

    /* Spacing & Sizes */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Subtle gradient using Slate tints */
    background: linear-gradient(180deg, var(--slate-50) 0%, var(--slate-100) 100%);
    color: var(--slate-700);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===== Section ===== */
.section {
    padding: var(--spacing-3xl) 0;
    /* approx 6rem */
    position: relative;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.95);
    /* Slate-50 with alpha */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--slate-200);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(248, 250, 252, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    /* Blue underline */
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-nav {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
    padding-top: calc(var(--spacing-3xl) + 60px);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

/* Centered Hero Layout */
.hero-centered .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content-centered {
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
    /* Glassmorphism effect for better text readability */
    background: rgba(248, 250, 252, 0.85);
    /* Semi-transparent white background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced text styles for better contrast */
.hero-content-centered .hero-title {
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-content-centered .hero-subtitle {
    color: var(--slate-600);
    /* Darker for better contrast */
}

.hero-content-centered .hero-cta {
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-500);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    animation: fadeInRight 0.8s ease 0.2s both;
}

/* ===== Buttons ===== */
.btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
}

/* Use Accent Color for Primary Actions to contrast with Slate */
.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--slate-600);
    border: 2px solid var(--slate-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--slate-50);
}

.btn.full-width {
    width: 100%;
}

/* ===== Image Placeholders ===== */
/* kept black/dark as requested, but using slate-950 for better harmony */
.image-placeholder,
.icon-placeholder {
    background: var(--slate-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.placeholder-text {
    color: var(--slate-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--slate-800);
    /* Primary color for icons */
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
    /* Subtle accent highlight on hover */
}

.feature-icon {
    margin-bottom: var(--spacing-md);
}

.feature-icon .material-icons {
    background: var(--accent);
    /* Use accent color for feature icons */
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--slate-500);
    line-height: 1.6;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text {
    color: var(--slate-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    /* Highlight stats with accent color */
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
}

/* ===== Functionality Section ===== */
.functionality-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
}

.functionality-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.functionality-item.reverse {
    direction: rtl;
}

.functionality-item.reverse>* {
    direction: ltr;
}

.functionality-image .image-placeholder {
    height: 400px;
    background: var(--slate-800);
}

.functionality-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.functionality-description {
    color: var(--slate-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.functionality-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.functionality-features li {
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--slate-700);
}

.functionality-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    /* Accent color arrows */
    font-weight: 600;
}

/* ===== Pricing Section ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.pricing-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card.featured {
    background: var(--white);
    /* Keep white for contrast */
    border: 2px solid var(--primary);
    /* Strong primary border */
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-lg);
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    color: var(--slate-500);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--slate-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.pricing-features li {
    color: var(--slate-600);
    padding-left: var(--spacing-md);
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    /* Accent checkmarks */
    font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--slate-300);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-400);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-md);
}

.faq-answer p {
    color: var(--slate-600);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-text {
    color: var(--slate-600);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-detail {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon .material-icons {
    width: 48px;
    height: 48px;
    background: var(--slate-200);
    /* Lighter bg for icons here */
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-value {
    color: var(--primary);
    font-weight: 600;
}

/* ===== Form Styles ===== */
.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary);
    background: var(--slate-50);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    /* Focus color linked to Accent */
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    /* Green ring */
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background: var(--slate-900);
    /* Dark Footer */
    color: var(--slate-300);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-text {
    color: var(--slate-400);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    color: var(--slate-400);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-contact strong {
    color: var(--slate-200);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--slate-400);
    transition: all var(--transition-base);
    display: inline-flex;
}

.social-link:hover {
    transform: translateY(-4px);
    color: var(--accent);
}

.social-link .material-icons {
    width: 40px;
    height: 40px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover .material-icons {
    background: var(--accent);
    color: var(--white);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: var(--slate-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {

    .hero .container,
    .about-grid,
    .functionality-item,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .functionality-item.reverse {
        direction: ltr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        /* Updated Mobile Menu Baground to Slate */
        background: rgba(248, 250, 252, 0.98);
        width: 100%;
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-base);
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

    .hero {
        padding-top: calc(var(--spacing-2xl) + 60px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .functionality-image .image-placeholder {
        height: 300px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .image-placeholder {
        height: 250px;
    }
}

/* Hero Image */
.hero-image-content {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.hero-image-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(15, 23, 42, 0.15);
}

/* Tech Pattern Background */
/* Hero Parallax Background */
.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_comp.jpeg');
    background-size: 90%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    /* Full opacity - background is fully visible */
    z-index: 0;
    pointer-events: none;
    /* Allows clicks to pass through to elements below */
}

/* Ensure sections have relative positioning for absolute children */
.section {
    position: relative;
}

/* Features Grid Pattern (Lines & Dots) */
.features-pattern {
    background-color: transparent;
    /* Dots at intersections */
    background-image:
        radial-gradient(var(--slate-400) 2px, transparent 2px),
        /* Horizontal lines */
        linear-gradient(var(--slate-300) 1px, transparent 1px),
        /* Vertical lines */
        linear-gradient(90deg, var(--slate-300) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 0 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    pointer-events: none;
}

/* Feature Images */
.feature-image-content {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.feature-image-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
}