/* Landing page enhancements — matches #00a79d theme */
:root {
    --brand: #00a79d;
    --brand-dark: #008f86;
    --brand-light: #e6f7f6;
    --ink: #0a1628;
    --muted: #5c6b7a;
    --surface: #ffffff;
    --whisper: #f4f8f8;
}

.landing-hero.style2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fdfc 0%, #eef9f8 45%, #fff 100%);
    padding-top: 2rem;
}

.landing-hero.style2::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 167, 157, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.landing-hero .hero-content span {
    display: inline-block;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-light);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.landing-hero .hero-content h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.landing-hero .hero-content p {
    font-size: 1.05rem;
    max-width: 540px;
    color: var(--muted);
}

.landing-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 167, 157, 0.15);
}

.landing-stats .stat strong {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}

.landing-stats .stat span {
    font-size: 0.85rem;
    color: var(--muted);
}

.landing-trust-bar {
    background: var(--surface);
    border-top: 1px solid #e8efef;
    border-bottom: 1px solid #e8efef;
    padding: 1.75rem 0;
}

.landing-trust-bar .trust-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
    text-align: center;
}

.landing-steps .step-card {
    background: var(--surface);
    border: 1px solid #e8efef;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-steps .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
}

.landing-steps .step-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.landing-feature-grid .feature-card.style3 {
    border-radius: 16px;
    border: 1px solid #e8efef;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-feature-grid .feature-card.style3:hover {
    border-color: var(--brand);
    box-shadow: 0 16px 32px rgba(0, 167, 157, 0.1);
}

.landing-rates-preview {
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    position: relative;
}

.landing-rates-preview::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 167, 157, 0.35), transparent 70%);
}

.landing-rates-preview .rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-rates-preview .rate-row:last-child {
    border-bottom: none;
}

.landing-cta-banner {
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
}

.landing-cta-banner h2 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.landing-cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.landing-cta-banner .btn.style2 {
    background: #fff;
    color: var(--brand);
    border: none;
    margin: 0 0.35rem;
}

.landing-cta-banner .btn.style2:hover {
    background: var(--ink);
    color: #fff;
}

.landing-testimonial-card {
    background: var(--surface);
    border: 1px solid #e8efef;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

.landing-testimonial-card .stars {
    color: #f5a623;
    margin-bottom: 1rem;
}

.landing-testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.landing-testimonial-card .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.landing-navbar .navbar-brand .brand-text {
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink);
    text-decoration: none;
}

.landing-navbar .navbar-brand .brand-text span {
    color: var(--brand);
}

@media (max-width: 991px) {
    .landing-hero .hero-img-wrap {
        margin-top: 2.5rem;
    }
}
