/* BHEEM V4 - HIGH IMPACT 2025 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #452FF4;
    --green: #41E295;
    --cyan: #00f2fe;
    --black: #0A0A0A;
    --gray: #1A1A1A;
    --gray-light: #2A2A2A;
    --text: #FFFFFF;
    --text-dim: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--black);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* GRAIN TEXTURE */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 100;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* AMBIENT ORBS - Enhanced */
.ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    top: -250px;
    left: -250px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, 60px) scale(1.05); }
    50% { transform: translate(-40px, 80px) scale(0.95); }
    75% { transform: translate(40px, -40px) scale(1.02); }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.btn-nav {
    padding: 0.7rem 1.4rem;
    background: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--gray);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* HERO - Enhanced Impact */
main {
    position: relative;
    z-index: 1;
}

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 160px 2rem 100px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    background: linear-gradient(135deg, rgba(69, 47, 244, 0.2) 0%, rgba(65, 226, 149, 0.1) 100%);
    border: 1.5px solid rgba(69, 47, 244, 0.4);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 16px rgba(69, 47, 244, 0.2);
}

.hero-badge.elite {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(69, 47, 244, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 6px 24px rgba(69, 47, 244, 0.4); }
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--green);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
}

.gradient {
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 50%, var(--green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.btn-hero-primary {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--purple) 0%, #5940ff 100%);
    border: none;
    border-radius: 12px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 24px rgba(69, 47, 244, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #5940ff 0%, var(--purple) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(69, 47, 244, 0.6);
}

.btn-hero-secondary {
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-hero-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Trust Bar - New High Impact Element */
.trust-bar {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
}

.trust-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Platform Showcase - New Animated Element */
.platform-showcase {
    margin-top: 3rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-item {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    animation: showcaseFadeIn 0.6s ease forwards;
    transition: all 0.3s;
}

.showcase-item:hover {
    border-color: rgba(69, 47, 244, 0.4);
    background: rgba(69, 47, 244, 0.1);
    transform: translateY(-4px);
}

@keyframes showcaseFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.showcase-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
}

.showcase-item.center-item {
    grid-column: 2 / 4;
    background: linear-gradient(135deg, rgba(69, 47, 244, 0.15) 0%, rgba(65, 226, 149, 0.1) 100%);
    border: 1.5px solid rgba(69, 47, 244, 0.3);
    padding: 1.5rem;
}

.showcase-icon-center {
    margin-bottom: 0.75rem;
}

.center-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

/* Value Props Section - New */
.value-props {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(69, 47, 244, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ECOSYSTEM SECTION - Enhanced */
.ecosystem {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 2rem;
}

.section-head {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(69, 47, 244, 0.15) 0%, rgba(65, 226, 149, 0.1) 100%);
    border: 1px solid rgba(69, 47, 244, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.section-head h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* BENTO GRID - Enhanced */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 220px;
}

.card {
    position: relative;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(69, 47, 244, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    border-color: rgba(69, 47, 244, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.card.wide {
    grid-column: span 2;
}

.card.wide-sm {
    grid-column: span 2;
}

.card.tall {
    grid-row: span 2;
}

.card.featured {
    background: linear-gradient(135deg, rgba(69, 47, 244, 0.15) 0%, rgba(26, 26, 26, 1) 100%);
    border-color: rgba(69, 47, 244, 0.4);
}

.card.featured.elite {
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(69, 47, 244, 0.3);
}

.card.premium {
    border-color: rgba(65, 226, 149, 0.3);
}

/* Card Badges - Enhanced */
.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.elite-badge {
    background: linear-gradient(135deg, var(--purple) 0%, #5940ff 100%);
    color: var(--text);
    box-shadow: 0 4px 12px rgba(69, 47, 244, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

.new-badge {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
    color: var(--black);
}

.hot-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--text);
}

.card-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon.large {
    margin-bottom: 2rem;
}

.card-icon.sm {
    margin-bottom: 0;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.tags {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.tags span {
    padding: 0.4rem 0.85rem;
    background: rgba(69, 47, 244, 0.2);
    border: 1px solid rgba(69, 47, 244, 0.4);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--purple);
}

.feature-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.feature-list span {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.card-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.card-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.card-stat span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.marketplace-highlight {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(65, 226, 149, 0.1);
    border-radius: 10px;
}

.mh-item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
}

.mh-item span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.price-tag {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--green);
    font-weight: 700;
}

.academy-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.as-item {
    text-align: center;
}

.as-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.as-item span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.as-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.card-content-h {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.card-text h3 {
    margin-bottom: 0.5rem;
}

/* WORKFLOWS - Enhanced */
.workflows {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 2rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.workflow-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.workflow-card:hover {
    border-color: rgba(69, 47, 244, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.workflow-card.premium {
    border-color: rgba(65, 226, 149, 0.2);
    background: linear-gradient(135deg, rgba(65, 226, 149, 0.05) 0%, rgba(26, 26, 26, 1) 100%);
}

.workflow-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.workflow-badge.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--text);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.workflow-badge.new {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
    color: var(--black);
}

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

.workflow-icon-lg {
    font-size: 3rem;
}

.workflow-rating {
    text-align: right;
}

.stars {
    color: #FFB800;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.rating-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-right: 0.5rem;
}

.downloads {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.workflow-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.workflow-card p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.workflow-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.workflow-features span {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.workflow-prices {
    display: flex;
    gap: 1rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.wp {
    flex: 1;
    text-align: center;
    transition: all 0.3s;
}

.wp:hover {
    transform: scale(1.05);
}

.wp.featured {
    background: rgba(65, 226, 149, 0.15);
    border: 1.5px solid rgba(65, 226, 149, 0.3);
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
}

.wp-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.wp-price span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.wp-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}

.btn-workflow {
    width: 100%;
    padding: 1rem;
    background: var(--gray-light);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-workflow:hover {
    background: rgba(69, 47, 244, 0.2);
    border-color: var(--purple);
    transform: translateY(-2px);
}

.btn-workflow.primary {
    background: linear-gradient(135deg, var(--purple) 0%, #5940ff 100%);
    border: none;
}

.btn-workflow.primary:hover {
    background: linear-gradient(135deg, #5940ff 0%, var(--purple) 100%);
    box-shadow: 0 8px 24px rgba(69, 47, 244, 0.4);
}

.workflow-cta {
    text-align: center;
}

.btn-large-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.75rem;
    background: linear-gradient(135deg, var(--gray) 0%, var(--gray-light) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-large-cta:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(69, 47, 244, 0.5);
}

/* CTA SECTION - Enhanced */
.cta-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.cta-card-v4 {
    position: relative;
    background: linear-gradient(135deg, rgba(69, 47, 244, 0.2) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid rgba(69, 47, 244, 0.4);
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(69, 47, 244, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--purple) 0%, #5940ff 100%);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(69, 47, 244, 0.4);
}

.cta-card-v4 h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-card-v4 p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.btn-cta-hero {
    padding: 1.35rem 3rem;
    background: linear-gradient(135deg, var(--purple) 0%, #5940ff 100%);
    border: none;
    border-radius: 14px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(69, 47, 244, 0.5);
}

.btn-cta-hero:hover {
    background: linear-gradient(135deg, #5940ff 0%, var(--purple) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(69, 47, 244, 0.7);
}

.btn-cta-alt {
    padding: 1.35rem 3rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-alt:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.cta-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* FOOTER - Enhanced */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 2rem 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.footer-col a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .bento {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-divider {
        width: 100px;
        height: 1px;
    }

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

    .showcase-item.center-item {
        grid-column: 1 / 3;
    }

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

    .section-head h2 {
        font-size: 2.5rem;
    }

    .bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .card.large,
    .card.wide,
    .card.wide-sm,
    .card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .workflow-features {
        grid-template-columns: 1fr;
    }

    .cta-card-v4 {
        padding: 3.5rem 2rem;
    }

    .cta-card-v4 h2 {
        font-size: 2.5rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-hero,
    .btn-cta-alt {
        width: 100%;
        justify-content: center;
    }

    .cta-proof {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3.5rem;
    }

    .footer-links {
        gap: 3rem;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }
}
