:root {
    --primary-color: #4C6FFF;
    --secondary-color: #6C757D;
    --text-color: #212529;
    --bg-light: #F8F9FA;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #3b5bdb;
    border-color: #3b5bdb;
}

.btn-light {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    color: var(--text-color);
    font-weight: 600;
}

/* Navbar */
.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-link {
    font-weight: 500;
    color: #4b5563 !important; /* Slate 600 */
    padding: 0 1.8rem !important; /* Wider spacing */
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-color) !important;
}

.btn-nav-login {
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: background 0.2s;
}
.btn-nav-login:hover {
    background: #f3f4f6;
}

.btn-nav-signup {
    background-color: #2563EB; /* Bright Blue */
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
    font-size: 0.95rem;
}
.btn-nav-signup:hover {
    background-color: #1d4ed8;
}

/* Mobile navbar styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
    
    .d-flex.gap-2 {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-nav-login,
    .btn-nav-signup {
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Glassmorphism Navbar for floating effect if needed, but per design it looks clean */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    min-height: 100vh; /* Full Height */
    display: flex;
    align-items: center;
    padding-top: 8rem; /* Space for navbar */
    padding-bottom: 4rem;
    /* Soft Mesh Gradient Background */
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
    background: 
        radial-gradient(circle at 10% 20%, rgba(240, 242, 255, 1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 240, 240, 1) 0%, transparent 40%),
        radial-gradient(circle at 50% 120%, rgba(240, 230, 255, 1) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Floating Elements Background Blur/Blob */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(76, 111, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: flowBlob 10s infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: flowBlob 10s infinite alternate-reverse;
}

@keyframes flowBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 20px) scale(1.1); }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #FFEEE8; /* Light pastel orange/pink for 'Teams That Perform' tag */
    border-radius: 50px;
    color: #FF5722;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem !important; 
    line-height: 1.00 !important;
    margin-bottom: 2rem !important;
    padding-right: 2rem !important;
    color: #000 !important;
    letter-spacing: -0.02em !important;
    font-weight: 500 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.6;
}

.cta-group {
    margin-bottom: 4rem;
}

/* Floating Cards UI in Hero - refined for "exactly same" layout */
.hero-ui-preview {
    position: relative;
    perspective: 1000px;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-float {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    position: absolute;
    transition: transform 0.5s ease;
}

/* Specific card positions to match the "cluster" look */
.card-main {
    z-index: 2;
    width: 280px;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
}

.card-top-right {
    z-index: 10;
    top: 16%;
    right: -6%;
    width: 260px;
    transform: rotate(0deg); /* The filter card in image is straight */
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.card-bottom-left {
    z-index: 3;
    bottom: 5%;
    left: -5%;
    width: 300px;
    transform: rotate(0deg);
}

.card-small-float {
    z-index: 4;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: absolute;
    min-width: 200px;
}
.float-1 { top: 45%; left: -20%; animation: floatY 4s ease-in-out infinite; }
.float-2 { bottom: 7%; right: -15%; animation: floatY 5s ease-in-out infinite reverse; }

/* Filter Card Specifics */
.input-group-smooth {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}
.input-group-smooth:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 111, 255, 0.1);
}
.input-group-smooth input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.85rem;
}
.tag-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Logos Strip inside Hero or Bottom */
.hero-footer-logos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    z-index: 10;
}

/* Feature Section */
.feature-section {
    padding: 5rem 0;
}

.section-tag {
    color: #4C6FFF;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #FFEEE8;
    border-radius: 100px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Feature Section */
.feature-section {
    padding: 5rem 0;
}

/* Feature Card Clean (Left/Right) */
.feature-card-clean {
    background: #fff;
    border-radius: 24px; /* More rounded */
    padding: 3rem 2rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); /* Softer shadow */
    border: 1px solid transparent;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Feature Card Glass (Center) - The "Smart Sync" card */
.feature-card-glass {
    background: #fff; /* Fallback */
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, rgba(255,238,232,0.5) 100%); /* Slight pink fade at bottom */
    position: relative;
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    box-shadow: 0 20px 60px rgba(70, 95, 255, 0.15); /* Blueish glow shadow */
    border: 1px solid #EFF2F5;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

/* The colored blobs inside the center card */
.feature-card-glass::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.4) 0%, transparent 70%); /* Blue blob top right */
    filter: blur(50px);
    z-index: -1;
}

.feature-card-glass::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(252, 165, 165, 0.3) 0%, transparent 70%); /* Pink blob bottom left */
    filter: blur(50px);
    z-index: -1;
}

/* Icon Circle Styling */
.feature-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: #EFF6FF; /* Very light blue bg */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6; /* Blue icon color */
    font-size: 1.5rem;
    position: relative;
}

/* Dotted grid background behind icon (simulated with radial gradient) */
.feature-icon-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 8px 8px;
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

/* Specific adjustments to match exact typography */
.feature-card-clean h4, 
.feature-card-glass h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card-clean p, 
.feature-card-glass p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

/* Hover state for center card to animate blobs slightly */
.feature-card-glass:hover::before {
    transform: scale(1.1);
    transition: transform 1s ease;
}

/* Analytics Chart Preview */
/* Large Feature Cards (Filter/Focus) */
.feature-card-large {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card-large:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.feature-card-large h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card-large p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 400px;
}

/* Specific layout for "Filter" card (Row layout) */
.card-layout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
/* Responsive stack for smaller screens */
@media (max-width: 991px) {
    .card-layout-row {
        flex-direction: column;
        text-align: center;
    }
}

/* Mini Filter UI Clone inside card */
.mini-filter-ui {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Stronger shadow to lift off card */
    width: 280px;
    transform: rotate(-2deg); /* Slight tilt like design */
    border: 1px solid #f1f5f9;
}

/* Avatar Group for Focus Card */
.avatar-selection-group {
    position: relative;
    display: inline-flex;
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
}

.avatar-selection-group img {
    margin: 0 4px;
    transition: transform 0.2s;
}

.avatar-selection-group img:hover {
    transform: scale(1.1);
    z-index: 10;
}
/* Cross cursor overlay */
.cursor-cross {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 1.5rem;
    color: #1e293b;
}

/* Core Features Grid */
.core-feature-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    border: 1px solid #f0f0f0;
}

.core-feature-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ */
.accordion-button {
    font-weight: 600;
    padding: 1.5rem;
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--text-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
    background: transparent;
}

/* About Us Section */
.about-section {
    padding: 6rem 0;
    overflow: hidden;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #EFF6FF; /* Light blue */
    color: #4C6FFF;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
    letter-spacing: -0.02em;
}

.about-desc {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 1rem;
}

.check-icon {
    color: #3B82F6; /* Blue check */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-learn-more {
    background: #EFF6FF;
    color: #1e293b;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.btn-learn-more:hover {
    background: #DBEAFE;
    color: #1e293b; 
    text-decoration-color: currentColor;
}

/* About Visuals (Left Side) */
.about-visual-group {
    position: relative;
    height: 500px;
    width: 100%;
}

.about-bg-blob {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 53%;
    height: 60%;
    background: #F8FAFC;
    border-radius: 40px;
    z-index: 0;
}

.card-about-float {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: absolute;
    z-index: 1;
    padding: 1.2rem;
    border: 1px solid #f1f5f9;
}

/* 1. Created Group Card */
.card-created-group {
    top: 10%;
    right: 5%;
    width: 240px;
}

/* 2. Flora Group Card */
.card-flora-group {
    top: 35%;
    left: 0;
    width: 250px;
}

/* 3. Recent Activity */
.card-recent-activity {
    bottom: 5%;
    right: 0;
    width: 280px;
    padding: 1rem;
}

.activity-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8fafc;
    color: #64748b;
}
.activity-row:last-child { border-bottom: none; }
.activity-row strong { color: #334155; }

/* Expose Performance Section */
.performance-section {
    padding: 6rem 0;
    background: #fff;
    text-align: center;
}

.performance-card {
    background: #F8FAFC; /* Slightly off-white/very light blue tint background */
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #EFF6FF;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text left? Image shows text left aligned in card */
    text-align: left;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    background: #fff;
}

.performance-visual-area {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.performance-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.performance-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Card 1: Chat UI Visuals */
.chat-bubble-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
}

.chat-bubble {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    font-size: 0.75rem;
    position: relative;
    border: 1px solid #f1f5f9;
}
.chat-bubble-left { align-self: flex-start; border-bottom-left-radius: 2px; }
.chat-bubble-right { align-self: flex-end; border-bottom-right-radius: 2px; text-align: right; color: #64748b; }

.chat-user-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

/* Card 2: Center Glow Icon */
.center-icon-glow {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #DBEAFE; /* Light Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #2563EB;
    position: relative;
    box-shadow: 0 0 0 10px rgba(219, 234, 254, 0.4), 
                0 0 0 20px rgba(219, 234, 254, 0.2);
}

/* Card 3: Sync UI Visuals */
.sync-item {
    background: white;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
    margin-bottom: 0.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.sync-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Reimagining Core Features Grid */
.reimagined-section {
    padding: 6rem 0;
    background: #FAFAFA; /* Very light subtle grey bg */
}

.reimagined-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reimagined-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.reimagined-icon {
    width: 60px;
    height: 60px;
    background: #EFF6FF; /* Light blue info bg */
    border-radius: 50%; /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.reimagined-feature-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.reimagined-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Refinements */
.faq-section {
    padding: 6rem 0;
    background: #fff;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    background: transparent;
}

.accordion-button {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 2rem 0;
    background-color: transparent;
    color: #0f172a;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #0f172a;
}
/* Expanded state styling */
.accordion-item:first-child .accordion-button:not(.collapsed) {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 1.5rem;
}
.accordion-item:first-child .accordion-collapse.show {
    background: #F8FAFC;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}  

.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem; /* Indent body in expanded card */
    color: #64748b;
    line-height: 1.7;
}

/* CTA Gradient Card */
.cta-section {
    padding: 4rem 0 8rem 0;
}

.cta-gradient-card {
    background: linear-gradient(110deg, #FFF1F2 0%, #FFFFFF 40%, #EFF6FF 100%); /* Pink to White to Blue gradient */
    border-radius: 32px;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #E0E7FF;
    color: #4C6FFF;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-desc {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-cta-light {
    background: white;
    color: #0f172a;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.btn-cta-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-cta-dark {
    background: #1e293b;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    transition: all 0.2s;
}
.btn-cta-dark:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Enforce black footer */
.footer {
    background-color: #000 !important;
    color: #fff;
    border-top: 1px solid #1f2937;
}

.footer h6 {
    color: #fff;
    font-weight: 700;
}

.footer a {
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff !important;
}
