

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 55%, #064e3b 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-shapes span {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
}

.hero-bg-shapes span:nth-child(1) {
    width: 500px;
    height: 500px;
    background: var(--green);
    bottom: -100px;
    left: -100px;
}

.hero-bg-shapes span:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--blue);
    top: -80px;
    right: -60px;
}

.hero-content {
    max-width: 720px;
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.85);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .word-green {
    color: var(--green-light);
}

.hero h1 .word-blue {
    color: var(--blue-light);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--dark);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
}

/* ---- FEATURES ---- */
.features-section {
    background: var(--off-white);
}

.features-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.1);
    transform: translateY(-4px);
}

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

.feature-icon.green {
    background: #dcfce7;
}

.feature-icon.blue {
    background: #e0f2fe;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- PRICING PREVIEW ---- */
.pricing-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(22, 163, 74, 0.12);
}

.plan-card.featured {
    border-color: var(--blue);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.14);
}

.plan-featured-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.plan-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.plan-price sup {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: super;
}

.plan-price sub {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 12px 0 24px;
    line-height: 1.65;
}

.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.plan-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
}

.plan-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dcfce7;
    color: var(--green-dark);
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cross {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    background: var(--off-white);
}

.testi-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: var(--transition);
}

.testi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testi-star {
    width: 14px;
    height: 14px;
    background: #f59e0b;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

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

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.88rem;
    font-weight: 700;
}

.testi-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-banner-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {

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