/* ========= GLOBAL RESET ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */

.section {
    padding: 120px 5%;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 17px;
    opacity: 0.8;
    line-height: 1.6;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 600;
}

.card p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-text p {
    font-size: 16px;
    opacity: .9;
    line-height: 1.7;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price-card p {
    font-size: 15px;
    opacity: .85;
}

.stat p {
    font-size: 14px;
    opacity: .7;
    margin-top: 8px;
}

h1, h2, h3 {
    letter-spacing: -0.02em;
}

p {
    letter-spacing: 0.01em;
}

.hero { padding: 160px 5% 140px; }
.why { padding: 140px 5%; }
.features { padding: 140px 5%; }
.stats { padding: 140px 5%; }
.pricing { padding: 140px 5%; }
.cta { padding: 140px 5%; }

.section-title,
.hero h1 {
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 26px auto 0;
    border-radius: 6px;
}
.card,
.price-card,
.stat {
    color: white;
}



/* ===== Animated SaaS Gradient Background ===== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        120deg,
        #0b3d2e,
        #0f6a50,
        #1f8f6a,
        #0f6a50,
        #0b3d2e
    );
    background-size: 300% 300%;
    animation: gradientMove 18s ease infinite;
    z-index: -2;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
    100% { background-position: 0% 50%;}
}

/* ===== Glass Panels ===== */
.card,
.price-card,
.stat,
.feature-box {
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
}

.hamburger {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile Nav */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
    }

    #navMenu {
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

    #navMenu.active {
        display: flex;
    }

    .nav-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

nav a i,
.logo i,
button i {
    margin-right: 8px;
}



body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f4f6f5;
    color: #111;
    line-height: 1.6;
}

/* ========= VARIABLES ========= */
:root {
    --green-dark: #0b3d2e;
    --green-mid: #0f6a50;
    --green-light: #1f8f6a;
    --accent: #d6ff00;
    --white: #ffffff;
    --gray-light: #f4f6f5;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
}

/* ========= NAVBAR ========= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin: 0 14px;
    font-size: 14px;
    opacity: .9;
    transition: .3s;
}

.navbar nav a:hover {
    opacity: 1;
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 8px 16px;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    transition: .3s;
}

.btn-outline:hover {
    background: var(--accent);
    color: black;
}

/* ========= HERO ========= */
.hero {
    background: linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color: white;
    padding: 140px 5% 120px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    margin: 20px 0;
}

.hero span {
    color: var(--accent);
}

.hero .sub {
    max-width: 520px;
    opacity: .9;
    margin-bottom: 28px;
}

.tag {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: .75;
}

.btn-primary {
    background: var(--accent);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* ========= WHY SECTION ========= */
.why {
    padding: 100px 5%;
    text-align: center;
}

.why h2 {
    font-size: clamp(24px,3vw,36px);
    margin-bottom: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.card {
    padding: 36px;
    border-radius: 18px;
    color: white;
    text-align: left;
    background: linear-gradient(135deg,var(--green-dark),var(--green-mid));
    box-shadow: var(--shadow-soft);
    transition: .35s;
}

.card:hover {
    transform: translateY(-6px);
}

/* ========= FEATURES ========= */
.features {
    padding: 100px 5%;
    background: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg,var(--green-dark),var(--green-mid));
}

.feature-mock {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    min-height: 260px;
}

/* ========= STATS ========= */
.stats {
    padding: 100px 5%;
    text-align: center;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat {
    background: white;
    padding: 34px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.stat h3 {
    font-size: 38px;
    color: var(--green-mid);
}

/* ========= PRICING ========= */
.pricing {
    padding: 100px 5%;
    text-align: center;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
    margin-top: 50px;
}

.price-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--gray-light);
    box-shadow: var(--shadow-soft);
    transition: .35s;
}

.price-card:hover {
    transform: translateY(-6px);
}

.highlight {
    background: linear-gradient(135deg,#2cbf9c,#7ef2d2);
    color: white;
}

/* ========= CTA ========= */
.cta {
    padding: 90px 5%;
    text-align: center;
    color: white;
    background: linear-gradient(135deg,var(--green-dark),var(--green-mid));
}

.cta h2 {
    margin-bottom: 30px;
}

/* ========= FOOTER ========= */
.footer {
    background: var(--green-dark);
    color: white;
    text-align: center;
    padding: 40px 5%;
}

/* ========= RESPONSIVE ========= */

/* TABLET */
@media (max-width: 1024px) {

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

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

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

    .feature-box {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 640px) {

    .navbar {
        flex-direction: column;
        gap: 14px;
    }

    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .hero {
        padding: 100px 6% 80px;
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    animation: floatImage 6s ease-in-out infinite;
}


@keyframes floatImage {
    0% { transform: translateY(0px);}
    50% { transform: translateY(-14px);}
    100% { transform: translateY(0px);}
}


@media (max-width: 1024px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 420px;
        margin-top: 40px;
    }
}

@media (max-width: 640px) {

    .hero-image img {
        max-width: 100%;
    }
}
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(214,255,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.card-icon i {
    font-size: 20px;
    color: var(--accent);
}

.btn-card {
    margin-top: 24px;
    background: transparent;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
}

.cta-container {
    max-width: 720px;
    margin: auto;
}

.cta-title {
    font-size: clamp(32px,4vw,48px);
    margin: 20px 0;
}

.cta-desc {
    font-size: 18px;
    opacity: .9;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-item {
    display: flex;
    gap: 14px;
}

.footer-item label {
    font-size: 12px;
    opacity: .7;
}

.footer-bottom {
    opacity: .6;
    font-size: 14px;
}

.price-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;

    padding: 32px;
    transition: 0.4s ease;
}

.price-card h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 14px;
}

.price-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    font-size: 15px;
}

.section-title {
    color: #ffffff;
}

.section-desc {
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    background: rgba(10, 15, 30, 0.35);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 16px;
}

.price-card.highlight {
    background: linear-gradient(
        145deg,
        rgba(59,130,246,0.25),
        rgba(15,23,42,0.85)
    );

    border: 1px solid rgba(59,130,246,0.35);

    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.18);
}

.card-icon {
    font-size: 26px;
    color: #60a5fa;
    margin-bottom: 18px;
}

