:root {
    --bg: #ffffff;
    --dark: #0f172a;
    --muted: #64748b;
    --acc-sand: #FFE8B3; /* Your perfect Pastel Sand */
    --acc-sand-dark: #94762E;
    --primary: #0f172a;
    --line: #f1f5f9;
    --radius: 12px;
}

* { box-sizing: border-box; }
body { 
    margin: 0; 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg); 
    color: var(--dark);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.row-between { display: flex; justify-content: space-between; align-items: center; }
.text-center { text-align: center; }

/* Navbar */
/* Navigation Styling */
.navbar {
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--line);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--dark);
    text-decoration: none;
}

/* Stylized Primary Nav Button */
.nav-btn {
    background: var(--dark);
    color: white !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.15);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.23);
    background: #000;
}

/* Mobile Breakpoint Logic */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: 0.4s;
    border-radius: 2px;
}

@media (max-width: 850px) {
    .menu-toggle { display: flex; }

    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 24px;
        border-bottom: 1px solid var(--line);
        gap: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
    }
}

.logo { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -1px; }
.logo .logo-kit { color: var(--acc-sand-dark); background: var(--acc-sand); padding: 2px 6px; border-radius: 6px; }
.logo .logo-split { margin-right: .25em; color: #F1F5F9; background: #475569; padding: 2px 6px; border-radius: 6px; }

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.btn.primary { background: var(--primary); color: white; border: 1px solid var(--primary); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(15,23,42,0.15); }

.btn.secondary { background: var(--acc-sand); color: var(--acc-sand-dark); border: 1px solid var(--acc-sand); }
.btn.large { padding: 16px 32px; font-size: 18px; }

/* Hero Section */
.hero { padding: 100px 0; background: radial-gradient(circle at top right, #fffdf8, #ffffff); }
h1 { font-family: 'Outfit', sans-serif; font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; }
.text-gradient { background: linear-gradient(to right, #0f172a, #94762E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 20px; color: var(--muted); max-width: 600px; margin: 0 auto 40px; }

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--acc-sand);
    color: var(--acc-sand-dark);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-mockup { margin-top: 60px; perspective: 1000px; }
.mockup-frame {
    background: var(--dark);
    padding: 10px;
    border-radius: 16px;
    transform: rotateX(10deg);
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
}
.mockup-frame img { width: 100%; border-radius: 8px; display: block; filter: grayscale(10%); }

/* Features */
.features { padding: 100px 0; background: #fafafa; }
/* Update the existing feature-grid and add the media queries */
.feature-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 50px; 
}

/* Tablet: 2 Columns */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: Full Stack (1 Column) */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr; /* This handles the vertical stack */
        gap: 16px;
    }

    .feature-card {
        padding: 30px 24px; /* Slightly tighter padding for mobile */
    }

    h1 {
        font-size: 42px; /* Prevent huge text from breaking on mobile */
    }

    .hero {
        padding: 60px 0;
    }
}
.feature-card { background: white; padding: 40px; border-radius: 20px; border: 1px solid var(--line); }
.feature-card .icon { font-size: 32px; margin-bottom: 20px; }

/* CTA Banner */
.cta-banner { padding: 60px 0; background: var(--acc-sand); border-radius: 30px; margin: 50px 24px; }
.cta-banner h2 { margin: 0; font-family: 'Outfit'; }

/* Pricing & Contact Layout */
.pricing { padding: 100px 0; background: #fff; }

.pricing-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 60px; 
    align-items: center; 
}

.feature-list { list-style: none; padding: 0; margin-top: 30px; }
.feature-list li { 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 15px;
}

/* Contact Card specifics */
.contact-card { 
    padding: 40px; 
    border: 1px solid var(--line); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
}

.input-group { margin-bottom: 18px; }
.input-group label { 
    display: block; 
    font-size: 12px; 
    font-weight: 700; 
    color: var(--muted); 
    margin-bottom: 6px; 
    text-transform: uppercase;
}

input, select, textarea { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid var(--line); 
    border-radius: 8px; 
    background: #fcfcfc;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus { 
    outline: none; 
    border-color: var(--acc-sand-dark); 
    background: #fff; 
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
}
/* Trust Bar Styles */
.trust-bar {
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.logo-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.logo-track:hover {
    filter: grayscale(0%);
    opacity: 0.8;
}

.trust-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--dark);
    user-select: none;
}

@media (max-width: 768px) {
    .logo-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 20px;
    }
}

/* Add this to style.css */
.advanced-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 24px;
}

@media (max-width: 600px) {
    .advanced-grid {
        grid-template-columns: 1fr;
    }
}

/* Carousel Wrapper */
.carousel-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: top;
    height: 1.2em; /* Ensures it doesn't bounce the text below it */
    /* overflow: hidden; */
    font-weight: 800;
    color: var(--dark);
    border-bottom: 2px solid var(--acc-sand); /* Adds a nice "underline" accent */
    padding: 0 4px;
}

.carousel-item {
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Animation Classes */
.slide-up {
    transform: translateY(-100%);
    opacity: 0;
}

.slide-down {
    transform: translateY(100%);
    opacity: 0;
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    animation: fadeIn 0.4s ease forwards;
}

.success-content h1 {
    color: var(--acc-sand);
    font-size: 3rem;
    margin-bottom: 10px;
}

.success-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,232,179,0.2);
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    margin: 30px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Simple CSS Firework Hack */
.firework-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(circle, var(--acc-sand) 2px, transparent 0),
        radial-gradient(circle, #fff 2px, transparent 0);
    background-size: 10% 10%, 15% 15%;
    background-position: 0 0, 50% 50%;
    animation: fireworks 2s infinite;
    opacity: 0.3;
}

@keyframes fireworks {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.comparison-section {
    padding: 100px 0;
    background: #1E293B; /* That Deep Navy we discussed */
    color: white;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    color: #4ade80; /* Success Green */
    font-weight: 800;
}

.x-icon {
    color: #f87171; /* Warning Red */
    font-weight: 800;
}

@media (max-width: 850px) {
    .compare-grid { grid-template-columns: 1fr; }
}