:root {
    --brand-green: #ec0b87;
    --brand-green-dark: #a50a66;
    --brand-green-light: #f5c0d9;
    --brand-charcoal: #1a2232;
    --brand-slate: #374259;
    --brand-mist: #f4f8f6;
    --brand-white: #ffffff;
    --brand-accent: #ff6b35;
    --brand-gold: #f5c842;
    --text-primary: #1a2232;
    --text-secondary: #5a6a7e;
    --shadow-soft: 0 8px 40px rgba(46, 204, 138, 0.10);
    --shadow-card: 0 4px 24px rgba(30, 40, 60, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--brand-white);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1.5px solid rgba(46, 204, 138, 0.13);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(46, 204, 138, 0.13);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--brand-charcoal) !important;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-green) 60%, var(--brand-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    box-shadow: 0 4px 14px rgba(46, 204, 138, 0.28);
}

.brand-green {
    color: var(--brand-green);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.4rem 1rem !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--brand-green) !important;
    background: var(--brand-green-light);
}

.btn-nav-cta {
    background: var(--brand-green);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    padding: 0.45rem 1.3rem !important;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-nav-cta:hover {
    background: var(--brand-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(46, 204, 138, 0.28);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 110px 0 80px;
    background: linear-gradient(135deg, #f0fbf6 0%, #ffffff 55%, #fff8ee 100%);
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.38;
    pointer-events: none;
}

.blob1 {
    width: 520px;
    height: 520px;
    background: var(--brand-green);
    top: -180px;
    left: -120px;
}

.blob2 {
    width: 380px;
    height: 380px;
    background: var(--brand-gold);
    bottom: -140px;
    right: -80px;
}

.blob3 {
    width: 260px;
    height: 260px;
    background: #ff6b35;
    top: 40px;
    right: 30%;
    opacity: 0.12;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-eyebrow span {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--brand-charcoal);
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--brand-green);
}

.hero-sub {
    font-size: 1.13rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 38px;
}

.btn-primary-cta {
    background: var(--brand-green);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    transition: all 0.22s;
    box-shadow: 0 6px 22px rgba(46, 204, 138, 0.28);
}

.btn-primary-cta:hover {
    background: var(--brand-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 138, 0.35);
}

.btn-ghost-cta {
    background: transparent;
    color: var(--brand-charcoal);
    border: 2px solid #d7e3dc;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.82rem 1.8rem;
    transition: all 0.2s;
}

.btn-ghost-cta:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: var(--brand-green-light);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-charcoal);
    line-height: 1;
}

.hero-stat .num span {
    color: var(--brand-green);
}

.hero-stat .lbl {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 3px;
}

/* ===== DASHBOARD MOCKUP ===== */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 80px rgba(30, 40, 60, 0.14), 0 2px 8px rgba(46, 204, 138, 0.08);
    overflow: hidden;
    border: 1.5px solid rgba(46, 204, 138, 0.12);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s;
}

.dashboard-mockup:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.mock-topbar {
    background: #fff;
    border-bottom: 1px solid #edf2ef;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.d1 {
    background: #ff6058;
}

.d2 {
    background: #ffbd2e;
}

.d3 {
    background: #28ca41;
}

.mock-search {
    flex: 1;
    background: #f4f8f6;
    border-radius: 8px;
    height: 28px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.72rem;
    color: #aaa;
    gap: 6px;
}

.mock-body {
    display: flex;
    min-height: 300px;
}

.mock-sidebar {
    width: 140px;
    background: #1a2232;
    padding: 14px 0;
    flex-shrink: 0;
}

.mock-brand-s {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
}

.mock-brand-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #2ecc8a, #f5c842);
    border-radius: 6px;
}

.mock-nav-item {
    padding: 7px 14px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.15s;
}

.mock-nav-item.active {
    background: rgba(46, 204, 138, 0.18);
    color: #2ecc8a;
}

.mock-nav-icon {
    font-size: 0.8rem;
}

.mock-content {
    flex: 1;
    padding: 14px;
    background: #f4f8f6;
    overflow: hidden;
}

.mock-greeting {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a2232;
    margin-bottom: 10px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mock-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 0.62rem;
    color: #374259;
}

.mock-card .mc-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a2232;
}

.mock-card .mc-badge {
    color: #2ecc8a;
    font-size: 0.58rem;
}

.mock-table-wrap {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.mock-table-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a2232;
    margin-bottom: 8px;
}

.mock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f4f2;
    font-size: 0.62rem;
    color: #5a6a7e;
}

.mock-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.mock-badge {
    background: #d5f5ea;
    color: #1aab6e;
    border-radius: 100px;
    padding: 1px 7px;
    font-size: 0.55rem;
    font-weight: 600;
    margin-left: auto;
}

/* floating cards */
.float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(30, 40, 60, 0.13);
    padding: 12px 18px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(46, 204, 138, 0.10);
    z-index: 5;
}

.float-card .fc-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.float-card .fc-label {
    font-size: 0.68rem;
    color: var(--text-secondary);
}

.float-card .fc-val {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--brand-charcoal);
}

.fc1 {
    top: -20px;
    left: -50px;
}

.fc2 {
    bottom: 30px;
    left: -60px;
}

.fc3 {
    bottom: -18px;
    right: -10px;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 90px 0;
}

.section-eyebrow {
    display: inline-block;
    color: var(--brand-green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--brand-charcoal);
    line-height: 1.18;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
}

/* ===== FEATURES ===== */
#features {
    background: var(--brand-mist);
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px 28px;
    height: 100%;
    border: 1.5px solid rgba(46, 204, 138, 0.10);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
    opacity: 0;
    transition: opacity 0.25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(46, 204, 138, 0.14);
    border-color: rgba(46, 204, 138, 0.25);
}

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

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--brand-charcoal);
}

.feature-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ===== MODULES ===== */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}

.module-item {
    background: #fff;
    border: 1.5px solid #e8f0ec;
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.22s;
    cursor: default;
}

.module-item:hover {
    background: var(--brand-green-light);
    border-color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(46, 204, 138, 0.15);
}

.module-item:hover .module-icon {
    background: var(--brand-green);
    color: #fff;
}

.module-icon {
    width: 46px;
    height: 46px;
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 12px;
    transition: all 0.22s;
}

.module-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-charcoal);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--brand-charcoal);
}

#testimonials .section-title {
    color: #fff;
}

#testimonials .section-eyebrow {
    color: var(--brand-green);
}

#testimonials .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.22s, background 0.22s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(46, 204, 138, 0.1);
    border-color: rgba(46, 204, 138, 0.3);
}

.testimonial-stars {
    color: var(--brand-gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.72;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.t-role {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== HOW IT WORKS ===== */
.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--brand-green);
    box-shadow: 0 0 0 8px rgba(46, 204, 138, 0.1);
}

.step-connector {
    position: absolute;
    top: 26px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-green), transparent);
}

/* ===== PRICING ===== */
#pricing {
    background: var(--brand-mist);
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 2px solid #e8f0ec;
    height: 100%;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 20px 60px rgba(46, 204, 138, 0.2);
}

.pricing-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: 18px;
    right: -30px;
    background: var(--brand-green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 38px;
    transform: rotate(40deg);
    letter-spacing: 0.04em;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(46, 204, 138, 0.12);
}

.pricing-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--brand-charcoal);
}

.pricing-card .price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-charcoal);
}

.pricing-card .price sup {
    font-size: 1.2rem;
}

.pricing-card .price sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.pricing-list li {
    padding: 7px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f4f2;
}

.pricing-list li .bi-check-circle-fill {
    color: var(--brand-green);
}

.pricing-list li .bi-x-circle {
    color: #ddd;
}

.btn-pricing {
    width: 100%;
    border-radius: 12px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.97rem;
    transition: all 0.2s;
}

.btn-pricing-primary {
    background: var(--brand-green);
    color: #fff;
    border: none;
}

.btn-pricing-primary:hover {
    background: var(--brand-green-dark);
    color: #fff;
    box-shadow: 0 8px 20px rgba(46, 204, 138, 0.3);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--brand-charcoal);
    border: 2px solid #d7e3dc;
}

.btn-pricing-outline:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(120deg, #1a2232 0%, #2a3a2e 100%);
    border-radius: 28px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232ecc8a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-strip h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.cta-strip .btn-cta-white {
    background: #fff;
    color: var(--brand-charcoal);
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border: none;
    transition: all 0.22s;
}

.cta-strip .btn-cta-white:hover {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 8px 24px rgba(46, 204, 138, 0.35);
}

.cta-strip .btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.82rem 1.8rem;
    transition: all 0.22s;
}

.cta-strip .btn-cta-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

/* ===== FOOTER ===== */
footer {
    background: var(--brand-charcoal);
    padding: 70px 0 30px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 260px;
    margin-bottom: 24px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-right: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--brand-green);
    color: #fff;
}

.footer-col h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--brand-green);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: var(--brand-green);
    text-decoration: none;
}

/* ===== UTILITY ===== */
.badge-green {
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
}

.divider-green {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
    border-radius: 2px;
    margin: 16px 0 30px;
}

/* Scroll reveal start states */
.reveal {
    opacity: 1;
    transform: translateY(40px);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
    }

    .fc1,
    .fc2,
    .fc3 {
        display: none;
    }

    .cta-strip {
        padding: 40px 24px;
        margin: 0;
        border-radius: 0;
    }

    .hero-stats {
        gap: 20px;
    }
}