:root {
    --green: #16a34a;
    --green-light: #22c55e;
    --green-dark: #14532d;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --charcoal: #0f172a;
    --charcoal-soft: #1e293b;
    --gray: #64748b;
    --gray-light: #f8fafc;
    --white: #ffffff;
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(22,163,74,0.10);
    --shadow-lg: 0 12px 48px rgba(22,163,74,0.16);
    --navbar-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }
a{
    text-decoration: none;
}
/* ── NAVBAR ── */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s ease;
}
#navbar.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    padding: 12px 0;
}
.nav-logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span { color: var(--green); }
.navbar-nav .nav-link {
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--charcoal) !important;
    margin: 0 10px;
    font-size: 0.92rem;
    transition: color 0.2s;
}
.navbar-nav .nav-link:hover { color: var(--green) !important; }
.btn-demo {
    background: var(--green);
    color: white !important;
    border-radius: 50px;
    padding: 10px 24px !important;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}
.btn-demo:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(22,163,74,0.4);
}
label.error {
    color:red!important;
    font-size: 13px;
    font-weight: 400 !important;
    margin-top: 5px;
}
/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}
#hero .container{
    z-index: 1;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
    /* animation: blobMove 8s ease-in-out infinite; */
}
.blob-1 { width: 500px; height: 500px; background: #86efac; top: -100px; right: -100px; }
.blob-2 { width: 300px; height: 300px; background: #4ade80; bottom: 50px; left: -80px; animation-delay: -4s; }
/* @keyframes blobMove {
    0%,100% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.08) translate(20px, 20px); }
} */
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-100); color: var(--green-dark);
    border-radius: 50px; padding: 6px 16px;
    font-size: 0.82rem; font-weight: 700;
    font-family: var(--font-head);
    margin-bottom: 24px;
    border: 1px solid var(--green-200);
}
.hero-tag span { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(30px); }
.hero-title .green { color: var(--green); }
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.btn-primary-green {
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(22,163,74,0.35);
}
.btn-primary-green:hover { background: #15803d; color: white; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(22,163,74,0.4); }
.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 600;
    font-family: var(--font-head);
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.hero-img-wrap {
    position: relative;
}
.hero-img-wrap img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.15);
    object-fit: cover;
    height: 420px;
}

/* .floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 12px;
    min-width: 180px;
    font-family: var(--font-head);
}
.floating-card .icon { width: 40px; height: 40px; border-radius: 12px; display:flex;align-items:center;justify-content:center; font-size: 1.1rem; }
.floating-card .val { font-size: 1.2rem; font-weight: 800; color: var(--charcoal); line-height: 1; }
.floating-card .lbl { font-size: 0.72rem; color: var(--gray); font-weight: 500; }
.fc-1 { top: -24px; right: -20px; animation: floatAnim 4s ease-in-out infinite; }
.fc-2 { bottom: 40px; left: -24px; animation: floatAnim 4s ease-in-out infinite 2s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} } */

/* ── SECTIONS GENERAL ── */
section { padding: 96px 0; }
.section-tag {
    display: inline-block;
    background: var(--green-100); color: var(--green-dark);
    border-radius: 50px; padding: 5px 16px;
    font-size: 0.78rem; font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
    color: var(--charcoal);
}
.section-sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── STATS ── */
#stats {
    background: var(--charcoal);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
#stats::before {
    content:''; position:absolute; inset:0;
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1400&auto=format&fit=crop') center/cover;
    opacity: 0.06;
}
.stat-card {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
}
.stat-number {
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    margin: auto;
}

/* ── FEATURES ── */
#features { background: var(--gray-light); }
.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content:'';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--green-50) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.feature-card:hover::before { opacity: 1; }

.feat-img-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 20px;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 24px; */
    margin-bottom: 20px;
    overflow: hidden;
    transition: all .3s;
}

.feat-img-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform .3s;
}

/* .feature-card:hover .feat-img-wrap {
    background: linear-gradient(135deg, var(--accent-color, #58b749), #8bd87f);
    border-color: var(--accent-color, #58b749);
} */

.feature-card:hover .feat-img-wrap img {
    transform: scale(1.1);
}
.feat-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.feat-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }

/*  WHO WE SERVE SECTION */

#who-we-serve {
    background: var(--gray-light, #f8fafc);
    padding: 96px 0 36px 0;
}

.wws-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all .35s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 2px 16px rgba(0,0,0,.04);
}

.wws-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(22,163,74,.13);
    border-color: var(--green-200, #bbf7d0);
}

.wws-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.wws-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.wws-card:hover .wws-img-wrap img {
    transform: scale(1.06);
}

.wws-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.08) 0%, rgba(15,23,42,.55) 100%);
    transition: opacity .3s;
}

.wws-card:hover .wws-overlay {
    background: linear-gradient(180deg, rgba(22,163,74,.12) 0%, rgba(15,23,42,.65) 100%);
}

.wws-body {
    padding: 36px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wws-title {
    font-family: var(--font-head, 'Plus Jakarta Sans', sans-serif);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--charcoal, #0f172a);
    letter-spacing: -.4px;
    margin-bottom: 10px;
    transition: color .2s;
}

.wws-card:hover .wws-title {
    color: var(--green, #16a34a);
}

.wws-desc {
    font-size: .87rem;
    color: var(--gray, #64748b);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

.wws-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head, 'Plus Jakarta Sans', sans-serif);
    font-weight: 700;
    font-size: .82rem;
    color: var(--green, #16a34a);
    transition: gap .25s;
}

.wws-card:hover .wws-link {
    gap: 10px;
}

.wws-link i {
    font-size: .75rem;
    transition: transform .25s;
}

.wws-card:hover .wws-link i {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    #who-we-serve { padding: 64px 0; }
    .wws-img-wrap { height: 180px; }
}

/* ── HOW IT WORKS ── */
#how { background: white; }
.step-wrap {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}
.step-num {
    width: 64px; height: 64px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(22,163,74,0.35);
    position: relative;
    z-index: 1;
}
.step-connector {
    position: absolute;
    top: 32px; left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-200));
    z-index: 0;
}
.step-title { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.step-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }
.step-img {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: scale(0.96);
}
.step-img img { width: 100%; height: 360px; object-fit: cover; display: block; }

/* ── PRICING ── */
#pricing { background: var(--gray-light); }
.pricing-toggle {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 48px;
}
.toggle-label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--gray); }
.switch {
    position: relative; display: inline-block;
    width: 52px; height: 28px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; inset: 0;
    background: #cbd5e1; border-radius: 50px;
    transition: .3s;
}
.slider:before {
    content:''; position: absolute;
    height: 20px; width: 20px;
    left: 4px; bottom: 4px;
    background: white; border-radius: 50%;
    transition: .3s;
}
input:checked + .slider { background: var(--green); }
input:checked + .slider:before { transform: translateX(24px); }
.badge-save {
    background: var(--green-100); color: var(--green-dark);
    font-size: 0.72rem; font-weight: 700;
    border-radius: 50px; padding: 3px 10px;
    font-family: var(--font-head);
}
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    border: 2px solid #f1f5f9;
    height: 100%;
    transition: all 0.35s;
    position: relative;
    opacity: 0; transform: translateY(40px);
}
.pricing-card.popular {
    border-color: var(--green);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    opacity: 0;
}
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: white;
    font-family: var(--font-head); font-weight: 700;
    font-size: 0.75rem; letter-spacing: 1px;
    padding: 5px 20px; border-radius: 50px;
    white-space: nowrap;
}
.plan-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.plan-price { font-family: var(--font-head); font-weight: 900; font-size: 2.8rem; color: var(--charcoal); line-height: 1; }
.plan-price .currency { font-size: 1.4rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-price .period { font-size: 0.85rem; font-weight: 500; color: var(--gray); }
.plan-desc { font-size: 0.85rem; color: var(--gray); margin: 12px 0 24px; }
.plan-features { list-style: none; padding: 0; margin-bottom: 32px; }
.plan-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--charcoal);
    padding: 7px 0; border-bottom: 1px solid #f8fafc;
}
.plan-features li i { color: var(--green); font-size: 0.9rem; }
.btn-plan {
    width: 100%; padding: 14px; border-radius: 50px;
    font-family: var(--font-head); font-weight: 700;
    font-size: 0.9rem; border: none; cursor: pointer;
    transition: all 0.3s; text-decoration: none;
    display: block; text-align: center;
}
.btn-plan-green { background: var(--green); color: white; box-shadow: 0 6px 20px rgba(22,163,74,0.3); }
.btn-plan-green:hover { background: #15803d; transform: translateY(-1px); color: white; }
.btn-plan-outline { background: transparent; color: var(--green); border: 2px solid var(--green-200); }
.btn-plan-outline:hover { background: var(--green-50); }

/* ── TESTIMONIALS ── */
#testimonials { background: white; }
.testi-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #f1f5f9;
    height: 100%;
    opacity: 0; transform: translateY(30px);
    transition: all 0.35s;
}
.testi-card:hover { box-shadow: var(--shadow); border-color: var(--green-200); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 20px; }
.testi-text { font-size: 0.95rem; color: var(--charcoal-soft); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-200); }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; }
.testi-role { font-size: 0.78rem; color: var(--gray); }
.testimonialsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}
.testimonialsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.testi-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 260px; /* adjust if needed */
}

/* ── FAQ ── */
#faq { background: var(--gray-light); }
.accordion-item { border: 1px solid #e2e8f0 !important; border-radius: var(--radius) !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button {
    font-family: var(--font-head); font-weight: 600;
    font-size: 0.95rem; color: var(--charcoal) !important;
    background: white !important; padding: 20px 24px;
}
.accordion-button:not(.collapsed) { color: var(--green) !important; box-shadow: none !important; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: invert(40%) sepia(100%) saturate(500%) hue-rotate(100deg); }
.accordion-body { background: white; color: var(--gray); font-size: 0.9rem; line-height: 1.8; padding: 0 24px 20px; }

/* ── CONTACT ── */
#contact { background: white; }
.contact-img-side img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 20px;
    min-height: 400px;
}
.form-label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid #e2e8f0; border-radius: 12px;
    padding: 12px 16px; font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
    outline: none;
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.trust-badge {
    display: flex; align-items: center; gap: 8px;
    background: var(--green-50); border-radius: 50px;
    padding: 8px 16px; font-size: 0.8rem;
    font-weight: 600; font-family: var(--font-head);
    color: var(--green-dark);
}
.contact-form-wrap {
    opacity: 0; transform: translateX(40px);
}
.contact-img-side {
    opacity: 0; transform: translateX(-40px);
}
.form-success {
    display: none;
    text-align: center; padding: 60px 20px;
}
.form-success i { font-size: 4rem; color: var(--green); margin-bottom: 16px; display: block; }

/* ── FOOTER ── */
footer {
    background: var(--charcoal);
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.7);
}
.footer-logo { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--green-light); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-heading { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.social-icon:hover { background: var(--green); color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px; margin-top: 48px;
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.divider-wave {
    line-height: 0; overflow: hidden;
}
.divider-wave svg { display: block; }

/* ── MISC UTILS ── */
.green-text { color: var(--green); }
.highlight-line {
    display: inline-block;
    position: relative;
}
.highlight-line::after {
    content: '';
    position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 4px;
    background: var(--green-light);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .fc-1, .fc-2 { display: none; }
    .step-connector { display: none; }
    section { padding: 64px 0; }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--green);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

#scrollTopBtn svg {
    position: absolute;
    transform: rotate(-90deg);
}

#progressCircle {
    fill: none;
    stroke: var(--green-light);
    stroke-width: 6;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.2s linear;
}

/* inner pages */
.page-hero {
    background: url('../images/page-banner.jpg') center / cover no-repeat;
    min-height: 260px;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
    padding-top: var(--navbar-h, 80px);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 63, 101, .78) 0%, rgba(25, 89, 139, .62) 100%);
}
.page-hero::after {
    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='%23ffffff' fill-opacity='0.03'%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");
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero .hero-content {
    text-align: center;
    padding: 48px 0 40px;
}
.page-hero .hero-title {
    font-family: var(--font-head, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 1.15;
}
.page-hero .hero-subtitle {
    font-size: .97rem;
    color: rgba(255, 255, 255, .72);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.nb-page-wrapper {
    padding: 60px 0 80px;
    background: var(--gray-light, #f8fafc);
}
/* inner pages end */