:root {
    --primary-color: #ff4b1e;
    /* Deep Orange/Red */
    --primary-gradient: linear-gradient(135deg, #ff7d5d 0%, #ff4b1e 100%);
    --secondary-color: #1a1a1a;
    --text-dark: #121212;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;
    --font-family-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px -15px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-family-base);
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
}

/* Utilities */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.resources-container {
    overflow-x: hidden;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-gradient {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 75, 30, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 75, 30, 0.4);
    color: white;
}

.btn-secondary-outline {
    background: white;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.btn-secondary-outline:hover {
    background: #f8f8f8;
    border-color: #ccc;
    color: var(--text-dark);
}

.btn-dark {
    background: #111;
    color: white;
}

.btn-dark:hover {
    background: #333;
    color: white;
}

.btn-primary {
    background: #3b82f6;
    /* Blue for Product Generate */
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    color: white;
}

.btn-success {
    background: #10b981;
    /* Green for Review Intelligence */
    color: white;
}

.btn-success:hover {
    background: #059669;
    color: white;
}

.btn-dark-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-dark-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}


/* Hero Section */
.hero-section {
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at 50% 10%, rgba(255, 240, 235, 0.6) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 75, 30, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-trusted {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 1rem;
    /* margin-bottom: 4rem; */
    font-size: 0.9rem;
    color: var(--text-muted);
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.avatar-circle img {
    max-width: 100%;
}

.avatars {
    margin-right: 15px;
    display: flex;
}

.hero-dashboard-mockup {
    position: relative;
    border-radius: 20px;
    margin: auto;
}

.dashboard-img {
    border-radius: 20px;
    /* box-shadow: 0 20px 80px -20px rgba(0, 0, 0, 0.15); */
}


/* Feature Sections */
.feature-section {
    padding: 5rem 0;
}

.feature-section:nth-of-type(even) {
    /* Use for separation if needed, or keeping white */
}

/* Feature Icons with specific container backgrounds */
.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shield {
    background: #fff0eb;
    color: #ff4b1e;
}

.icon-sparkle {
    background: #eff6ff;
    color: #3b82f6;
}

.icon-chat {
    background: #ecfdf5;
    color: #10b981;
}

.feature-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.feature-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
}

.shield .feature-list .check-icon {
    color: #ff4b1e;
    background: rgba(255, 75, 30, 0.1);
}

.sparkle .feature-list .check-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.chat .feature-list .check-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* Feature Visuals */
.feature-visual {
    position: relative;
    padding: 1rem;
}

.feature-visual img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    image-rendering: pixelated;
}

.feature-section:hover .feature-visual img {
    transform: translateY(-10px);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    position: relative;
    margin-bottom: 4rem;
    /* Spacing from footer */
}

.cta-card {
    background: #1a1b26;
    /* Dark navy styling */
    color: white;
    border-radius: 30px;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive */
/* Responsive Design */

/* Tablet & Smaller Desktops (max-width: 991.98px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-trusted {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-dashboard-mockup {
        max-width: 500px;
    }

    .feature-section h2 {
        font-size: 2rem;
    }

    .feature-visual img {
        /* margin-top: 2rem; */
        max-width: 500px;
    }

    .feature-list {
        gap: 1rem 1rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .feature-section p {
        font-size: 1rem;
    }
}

/* Mobile Devices (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 1rem;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .feature-section {
        padding: 4rem 0;
        text-align: center;
    }

    /* .feature-icon {
        margin: 0 auto 1.5rem;
    } */
    .feature-header {
        justify-content: center;
    }

    .feature-section p {
        margin: 0 auto 2rem;
    }

    .feature-visual img {
        margin-top: 2rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        text-align: left;
        display: inline-grid;
        margin: 0 auto 2rem;
    }

    .feature-visual {
        padding: 0;
        /* margin-top: 3rem; */
    }

    /* Force stacking order for text-first on mobile */
    .order-md-1,
    .order-md-2 {
        order: unset !important;
    }

    /* CTA Card */
    .cta-card {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Small Mobile (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
        /* Even smaller for very narrow screens */
    }


    .hero-trusted {
        flex-direction: column;
        gap: 0rem;
    }

    .avatars {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}